From fceda85a06d75b54393827d940e514ced2decd75 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Wed, 13 Apr 2022 16:58:05 +0200 Subject: [PATCH 01/14] feat(eos_cli_config_gen): add SNMPv3 hashed user passphrases support * Can now use local engineID * Can use localized at the user level to indicate that the passphrases (auth and priv) have been hashed using the correct engineID * Behavioral question * Added tests to verify every single combination of noauth/auth/priv and localized or not * Fixed documentation Potential gap: * if using user.localized without setting an engineID, the config generation will silently generate the non localized version (expecting cleartext passphrases) - maybe could add a warning here. --- .../devices/snmp-server-traps.md | 6 +-- .../documentation/devices/snmp.md | 31 +++++++++----- .../intended/configs/snmp.cfg | 14 +++++-- .../inventory/host_vars/snmp.yml | 42 +++++++++++++++---- .../avd/roles/eos_cli_config_gen/README.md | 7 +++- .../templates/documentation/snmp-settings.j2 | 7 ++-- .../templates/eos/snmp-settings.j2 | 27 +++++++++--- 7 files changed, 99 insertions(+), 35 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md index 11675d4cf97..739f5d79497 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| DC1_OPS | DC1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index 9280a7b44b1..0f8ce773491 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| DC1_OPS | DC1 | All | Enabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| 424242424242424242 | DC1_OPS | DC1 | All | Enabled | ### SNMP ACLs | IP | ACL | VRF | @@ -87,9 +87,9 @@ interface Management1 | 10.6.75.121 | MGMT | SNMP-COMMUNITY-1 | - | - | 1 | | 10.6.75.121 | MGMT | SNMP-COMMUNITY-2 | - | - | 2c | | 10.6.75.122 | MGMT | SNMP-COMMUNITY-2 | - | - | 2c | -| 10.6.75.99 | MGMT | - | USER-READ | auth | 3 | +| 10.6.75.99 | MGMT | - | USER-READ-AUTH-NO-PRIV | auth | 3 | | 10.6.75.99 | MGMT | - | USER-WRITE | auth | 3 | -| 10.6.75.100 | MGMT | - | USER-READ | priv | 3 | +| 10.6.75.100 | MGMT | - | USER-READ-AUTH-PRIV | priv | 3 | ### SNMP Views Configuration @@ -117,13 +117,19 @@ interface Management1 | User | Group | Version | Authentication | Privacy | | ---- | ----- | ------- | -------------- | ------- | -| USER-READ | GRP-READ-ONLY | v3 | sha | aes | +| USER-READ-NO-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | - | - | +| USER-READ-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | sha | - | +| USER-READ-AUTH-PRIV | GRP-READ-ONLY | v3 | sha | aes | +| USER-READ-NO-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | - | - | +| USER-READ-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | sha | - | +| USER-READ-AUTH-PRIV-LOC | GRP-READ-ONLY | v3 | sha | aes | | USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | ### SNMP Device Configuration ```eos ! +snmp-server engineID local 424242424242424242 snmp-server contact DC1_OPS snmp-server location DC1 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT @@ -140,14 +146,19 @@ snmp-server community SNMP-COMMUNITY-2 view VW-READ rw ipv6 SNMP-MGMT SNMP-MGMT snmp-server community SNMP-COMMUNITY-3 ro snmp-server group GRP-READ-ONLY v3 priv read v3read snmp-server group GRP-READ-WRITE v3 auth read v3read write v3write -snmp-server user USER-READ GRP-READ-ONLY v3 auth sha 7a07246a6e3467909098d01619e076adb4e2fe08 priv aes 7a07246a6e3467909098d01619e076ad -snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha 7a07246a6e3467909098d01619e076adb4e2fe08 priv aes 7a07246a6e3467909098d01619e076ad +snmp-server user USER-READ-NO-AUTH-NO-PRIV GRP-READ-ONLY v3 +snmp-server user USER-READ-AUTH-NO-PRIV GRP-READ-ONLY v3 auth sha clearPassword +snmp-server user USER-READ-AUTH-PRIV GRP-READ-ONLY v3 auth sha clearPassword priv aes clearPassword +snmp-server user USER-READ-NO-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 +snmp-server user USER-READ-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a +snmp-server user USER-READ-AUTH-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a priv aes 8da526cd35b9ea9b42d819036f7fad05 +snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha clearPassword priv aes clearPassword snmp-server host 10.6.75.121 vrf MGMT version 1 SNMP-COMMUNITY-1 snmp-server host 10.6.75.121 vrf MGMT version 2c SNMP-COMMUNITY-2 snmp-server host 10.6.75.122 vrf MGMT version 2c SNMP-COMMUNITY-2 -snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-READ +snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-READ-AUTH-NO-PRIV snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-WRITE -snmp-server host 10.6.75.100 vrf MGMT version 3 priv USER-READ +snmp-server host 10.6.75.100 vrf MGMT version 3 priv USER-READ-AUTH-PRIV snmp-server enable traps no snmp-server vrf default snmp-server vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg index ca53b3f4600..d01f950944c 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg @@ -4,6 +4,7 @@ transceiver qsfp default-mode 4x10G ! hostname snmp ! +snmp-server engineID local 424242424242424242 snmp-server contact DC1_OPS snmp-server location DC1 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT @@ -20,14 +21,19 @@ snmp-server community SNMP-COMMUNITY-2 view VW-READ rw ipv6 SNMP-MGMT SNMP-MGMT snmp-server community SNMP-COMMUNITY-3 ro snmp-server group GRP-READ-ONLY v3 priv read v3read snmp-server group GRP-READ-WRITE v3 auth read v3read write v3write -snmp-server user USER-READ GRP-READ-ONLY v3 auth sha 7a07246a6e3467909098d01619e076adb4e2fe08 priv aes 7a07246a6e3467909098d01619e076ad -snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha 7a07246a6e3467909098d01619e076adb4e2fe08 priv aes 7a07246a6e3467909098d01619e076ad +snmp-server user USER-READ-NO-AUTH-NO-PRIV GRP-READ-ONLY v3 +snmp-server user USER-READ-AUTH-NO-PRIV GRP-READ-ONLY v3 auth sha clearPassword +snmp-server user USER-READ-AUTH-PRIV GRP-READ-ONLY v3 auth sha clearPassword priv aes clearPassword +snmp-server user USER-READ-NO-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 +snmp-server user USER-READ-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a +snmp-server user USER-READ-AUTH-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a priv aes 8da526cd35b9ea9b42d819036f7fad05 +snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha clearPassword priv aes clearPassword snmp-server host 10.6.75.121 vrf MGMT version 1 SNMP-COMMUNITY-1 snmp-server host 10.6.75.121 vrf MGMT version 2c SNMP-COMMUNITY-2 snmp-server host 10.6.75.122 vrf MGMT version 2c SNMP-COMMUNITY-2 -snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-READ +snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-READ-AUTH-NO-PRIV snmp-server host 10.6.75.99 vrf MGMT version 3 auth USER-WRITE -snmp-server host 10.6.75.100 vrf MGMT version 3 priv USER-READ +snmp-server host 10.6.75.100 vrf MGMT version 3 priv USER-READ-AUTH-PRIV snmp-server enable traps no snmp-server vrf default snmp-server vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml index c266b088d6e..1190c5faebe 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml @@ -1,5 +1,7 @@ ### Snmp Settings #### snmp_server: + engineid: + local: 424242424242424242 contact: DC1_OPS location: DC1 communities: @@ -47,20 +49,46 @@ snmp_server: read: v3read write: v3write users: - - name: USER-READ + - name: USER-READ-NO-AUTH-NO-PRIV + group: GRP-READ-ONLY + version: v3 + - name: USER-READ-AUTH-NO-PRIV + group: GRP-READ-ONLY + version: v3 + auth: sha + auth_passphrase: clearPassword + - name: USER-READ-AUTH-PRIV + group: GRP-READ-ONLY + version: v3 + auth: sha + auth_passphrase: clearPassword + priv: aes + priv_passphrase: clearPassword + - name: USER-READ-NO-AUTH-NO-PRIV-LOC + group: GRP-READ-ONLY + version: v3 + localized: true + - name: USER-READ-AUTH-NO-PRIV-LOC + group: GRP-READ-ONLY + version: v3 + auth: sha + auth_passphrase: 8da526cd35b9ea9b42d819036f7fad058576ea0a + localized: true + - name: USER-READ-AUTH-PRIV-LOC group: GRP-READ-ONLY version: v3 auth: sha - auth_passphrase: 7a07246a6e3467909098d01619e076adb4e2fe08 + auth_passphrase: 8da526cd35b9ea9b42d819036f7fad058576ea0a priv: aes - priv_passphrase: 7a07246a6e3467909098d01619e076ad + priv_passphrase: 8da526cd35b9ea9b42d819036f7fad05 + localized: true - name: USER-WRITE group: GRP-READ-WRITE version: v3 auth: sha - auth_passphrase: 7a07246a6e3467909098d01619e076adb4e2fe08 + auth_passphrase: clearPassword priv: aes - priv_passphrase: 7a07246a6e3467909098d01619e076ad + priv_passphrase: clearPassword hosts: - host: 10.6.75.121 vrf: MGMT @@ -78,7 +106,7 @@ snmp_server: vrf: MGMT version: 3 users: - - username: USER-READ + - username: USER-READ-AUTH-NO-PRIV authentication_level: auth - username: USER-WRITE authentication_level: auth @@ -86,7 +114,7 @@ snmp_server: vrf: MGMT #version: 3 should be autodetected based on users key. users: - - username: USER-READ + - username: USER-READ-AUTH-PRIV authentication_level: priv traps: enable: true diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index 1a2dc1101e2..006a5a3393f 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2318,6 +2318,8 @@ sflow: ```yaml snmp_server: + engineid: + local: contact: < contact_name > location: < location > communities: @@ -2371,10 +2373,11 @@ snmp_server: - name: < username > group: < group_name > version: < v1 | v2c | v3 > + localized: < true | false > auth: < hash_algorithm > - auth_passphrase: < encrypted_auth_passphrase > + auth_passphrase: < hashed_auth_passphrase if localized is true else cleartext auth_passphrase > priv: < encryption_algorithm > - priv_passphrase: < encrypted_priv_passphrase > + priv_passphrase: < hashed_priv_passphrase if localized is true else cleartext priv_passphrase > - name: < username > group: < group_name > version: < v1 | v2c | v3 > diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index a8c8d867f43..1c336e45249 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -4,8 +4,9 @@ ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +{% set row_engineid = snmp_server.engineid.local | arista.avd.default('Switch System Mac') %} {% set row_contact = snmp_server.contact | arista.avd.default('-') %} {% set row_location = snmp_server.location | arista.avd.default('-') %} {% if snmp_server.traps.enable is arista.avd.defined(true) %} @@ -13,7 +14,7 @@ {% else %} {% set row_state = 'Disabled' %} {% endif %} -| {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | +| {{row_engineid}} | {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | {% if snmp_server.traps.snmp_traps is arista.avd.defined %} {% set row_traps_disabled = snmp_server.traps.snmp_traps | selectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} {% set row_traps_enabled = snmp_server.traps.snmp_traps | rejectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 6c6ef9c718b..c8c4219d74a 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -1,6 +1,9 @@ {# eos - SNMP Settings#} {% if snmp_server is arista.avd.defined %} ! +{% if snmp_server.engineid.local is arista.avd.defined %} +snmp-server engineID local {{ snmp_server.engineid.local }} +{% endif %} {% if snmp_server.contact is arista.avd.defined %} snmp-server contact {{ snmp_server.contact }} {% endif %} @@ -105,15 +108,27 @@ snmp-server location {{ snmp_server.location }} {% if user.version is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.version %} {% endif %} -{% if user.auth is arista.avd.defined +{% if user.localized is arista.avd.defined + and snmp_server.engineid.local is arista.avd.defined + and user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} -{% endif %} -{% if user.priv is arista.avd.defined +{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} +{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} +{% if user.priv is arista.avd.defined + and user.version is arista.avd.defined('v3') + and user.priv_passphrase is arista.avd.defined %} +{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} +{% endif %} +{% elif user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') - and user.priv_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} + and user.auth_passphrase is arista.avd.defined %} +{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} +{% if user.priv is arista.avd.defined + and user.version is arista.avd.defined('v3') + and user.priv_passphrase is arista.avd.defined %} +{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} +{% endif %} {% endif %} {{ user_cli }} {% endfor %} From 796f415756ceaa4d7434db747e221e96167cd7bb Mon Sep 17 00:00:00 2001 From: gmuloc Date: Wed, 13 Apr 2022 17:45:36 +0200 Subject: [PATCH 02/14] Style: fix pre-commmit and j2lint issues --- .../arista/avd/roles/eos_cli_config_gen/README.md | 2 +- .../eos_cli_config_gen/templates/documentation/snmp-settings.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index 006a5a3393f..af169a3aaef 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2373,7 +2373,7 @@ snmp_server: - name: < username > group: < group_name > version: < v1 | v2c | v3 > - localized: < true | false > + localized: < true | false > auth: < hash_algorithm > auth_passphrase: < hashed_auth_passphrase if localized is true else cleartext auth_passphrase > priv: < encryption_algorithm > diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 1c336e45249..76b5207609c 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -14,7 +14,7 @@ {% else %} {% set row_state = 'Disabled' %} {% endif %} -| {{row_engineid}} | {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | +| {{ row_engineid }} | {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | {% if snmp_server.traps.snmp_traps is arista.avd.defined %} {% set row_traps_disabled = snmp_server.traps.snmp_traps | selectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} {% set row_traps_enabled = snmp_server.traps.snmp_traps | rejectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} From 042ec169bf966541191b10a4398b3549e508879d Mon Sep 17 00:00:00 2001 From: gmuloc Date: Wed, 13 Apr 2022 18:34:55 +0200 Subject: [PATCH 03/14] Style: fix more j2lint issues --- .../templates/eos/snmp-settings.j2 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index c8c4219d74a..ae32db72b14 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -113,22 +113,22 @@ snmp-server location {{ snmp_server.location }} and user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} -{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} -{% if user.priv is arista.avd.defined +{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} +{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} +{% if user.priv is arista.avd.defined and user.version is arista.avd.defined('v3') and user.priv_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} -{% endif %} +{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} +{% endif %} {% elif user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} -{% if user.priv is arista.avd.defined +{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} +{% if user.priv is arista.avd.defined and user.version is arista.avd.defined('v3') and user.priv_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} -{% endif %} +{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} +{% endif %} {% endif %} {{ user_cli }} {% endfor %} From 56a5b92a0821873da454c7c8325ff8ddf9500581 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Thu, 14 Apr 2022 09:15:07 +0200 Subject: [PATCH 04/14] Test: regenerate all documentation for all molecules after changes --- .../documentation/devices/snmp-server-traps.md | 6 +++--- .../eos_cli_config_gen_v4.0/documentation/devices/snmp.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF2B.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF2A.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF2B.md | 6 +++--- .../documentation/devices/DC1-POD1-SPINE1.md | 6 +++--- .../documentation/devices/DC1-POD1-SPINE2.md | 6 +++--- .../documentation/devices/DC1-POD2-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD2-SPINE1.md | 6 +++--- .../documentation/devices/DC1-POD2-SPINE2.md | 6 +++--- .../documentation/devices/DC1-RS1.md | 6 +++--- .../documentation/devices/DC1-RS2.md | 6 +++--- .../documentation/devices/DC1-SUPER-SPINE1.md | 6 +++--- .../documentation/devices/DC1-SUPER-SPINE2.md | 6 +++--- .../documentation/devices/DC2-POD1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC2-POD1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC2-POD1-LEAF1A.md | 6 +++--- .../documentation/devices/DC2-POD1-LEAF2A.md | 6 +++--- .../documentation/devices/DC2-POD1-SPINE1.md | 6 +++--- .../documentation/devices/DC2-POD1-SPINE2.md | 6 +++--- .../documentation/devices/DC2-RS1.md | 6 +++--- .../documentation/devices/DC2-RS2.md | 6 +++--- .../documentation/devices/DC2-SUPER-SPINE1.md | 6 +++--- .../documentation/devices/DC2-SUPER-SPINE2.md | 6 +++--- .../documentation/devices/DC1-BL1A.md | 6 +++--- .../documentation/devices/DC1-BL1B.md | 6 +++--- .../documentation/devices/DC1-BL2A.md | 6 +++--- .../documentation/devices/DC1-BL2B.md | 6 +++--- .../documentation/devices/DC1-CL1A.md | 6 +++--- .../documentation/devices/DC1-CL1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 +++--- .../documentation/devices/DC1-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-LEAF2A.md | 6 +++--- .../documentation/devices/DC1-LEAF2B.md | 6 +++--- .../documentation/devices/DC1-SPINE1.md | 6 +++--- .../documentation/devices/DC1-SPINE2.md | 6 +++--- .../documentation/devices/DC1-SPINE3.md | 6 +++--- .../documentation/devices/DC1-SPINE4.md | 6 +++--- .../documentation/devices/DC1-SVC3A.md | 6 +++--- .../documentation/devices/DC1-SVC3B.md | 6 +++--- .../documentation/devices/MH-L2LEAF1A.md | 6 +++--- .../documentation/devices/MH-LEAF1A.md | 6 +++--- .../documentation/devices/MH-LEAF1B.md | 6 +++--- .../documentation/devices/MH-LEAF2A.md | 6 +++--- .../documentation/devices/evpn_services_l2_only_false.md | 6 +++--- .../documentation/devices/evpn_services_l2_only_true.md | 6 +++--- .../documentation/devices/mgmt_interface_default.md | 6 +++--- .../documentation/devices/mgmt_interface_fabric.md | 6 +++--- .../documentation/devices/mgmt_interface_host.md | 6 +++--- .../documentation/devices/mgmt_interface_platform.md | 6 +++--- .../documentation/devices/DC1-BL1A.md | 6 +++--- .../documentation/devices/DC1-BL1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 +++--- .../documentation/devices/DC1-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-LEAF2A.md | 6 +++--- .../documentation/devices/DC1-LEAF2B.md | 6 +++--- .../documentation/devices/DC1-SPINE1.md | 6 +++--- .../documentation/devices/DC1-SPINE2.md | 6 +++--- .../documentation/devices/DC1-SPINE3.md | 6 +++--- .../documentation/devices/DC1-SPINE4.md | 6 +++--- .../documentation/devices/DC1-SVC3A.md | 6 +++--- .../documentation/devices/DC1-SVC3B.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC1-POD1-L2LEAF2B.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF2A.md | 6 +++--- .../documentation/devices/DC1-POD1-LEAF2B.md | 6 +++--- .../documentation/devices/DC1-POD1-SPINE1.md | 6 +++--- .../documentation/devices/DC1-POD1-SPINE2.md | 6 +++--- .../documentation/devices/DC1-POD2-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-POD2-SPINE1.md | 6 +++--- .../documentation/devices/DC1-POD2-SPINE2.md | 6 +++--- .../documentation/devices/DC1-RS1.md | 6 +++--- .../documentation/devices/DC1-RS2.md | 6 +++--- .../documentation/devices/DC1-SUPER-SPINE1.md | 6 +++--- .../documentation/devices/DC1-SUPER-SPINE2.md | 6 +++--- .../documentation/devices/DC2-POD1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC2-POD1-LEAF1A.md | 6 +++--- .../documentation/devices/DC2-POD1-SPINE1.md | 6 +++--- .../documentation/devices/DC2-POD1-SPINE2.md | 6 +++--- .../documentation/devices/DC2-RS1.md | 6 +++--- .../documentation/devices/DC2-RS2.md | 6 +++--- .../documentation/devices/DC2-SUPER-SPINE1.md | 6 +++--- .../documentation/devices/DC2-SUPER-SPINE2.md | 6 +++--- .../documentation/devices/DC1-BL1A.md | 6 +++--- .../documentation/devices/DC1-BL1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 +++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 +++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 +++--- .../documentation/devices/DC1-LEAF1A.md | 6 +++--- .../documentation/devices/DC1-LEAF2A.md | 6 +++--- .../documentation/devices/DC1-LEAF2B.md | 6 +++--- .../documentation/devices/DC1-SPINE1.md | 6 +++--- .../documentation/devices/DC1-SPINE2.md | 6 +++--- .../documentation/devices/DC1-SPINE3.md | 6 +++--- .../documentation/devices/DC1-SPINE4.md | 6 +++--- .../documentation/devices/DC1-SVC3A.md | 6 +++--- .../documentation/devices/DC1-SVC3B.md | 6 +++--- 112 files changed, 336 insertions(+), 336 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md index 11675d4cf97..739f5d79497 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| DC1_OPS | DC1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index 9280a7b44b1..a0663a2b30a 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| DC1_OPS | DC1 | All | Enabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | DC1_OPS | DC1 | All | Enabled | ### SNMP ACLs | IP | ACL | VRF | diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index a8d434010f9..50d22495c80 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index fada72bbcfa..50af2415213 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -116,9 +116,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index 5989e130e5a..371e51265a0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -124,9 +124,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 18d7d3d3877..7369edb34cf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -94,9 +94,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index 7590dedaa4d..dff06be7e30 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -115,9 +115,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index de2e40a39b8..0f8377bb0b0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -141,9 +141,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index 62451854c75..89625ec7752 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index f6a5305c6e0..a91044d912a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index 1e0f56756cc..8500bbd414f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -137,9 +137,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 5f2e2c51a91..58248be4d96 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index c6fc711f30e..ff9bbba1a37 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index c7d0ecce35c..3c3d3f56eed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index b2131cff1dd..5f86e9a94c9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index d4b6549a612..0b6e2be237b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -84,9 +84,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index 3f7a3931515..451786445d5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 7a3cbe332db..6258456e5cf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md index d267d136fa8..c38dc3a5a01 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index 8014d772997..c4705d4590a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -138,9 +138,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md index 069175492cf..155087413fd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md @@ -122,9 +122,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index e7510b04bf4..a48754776ef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index 83716e00861..d22d1babb0c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 9d178d05fd7..10814eb215d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 39bbf30d223..2989ae95ca5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index bfaa800a8bf..3f495a9139b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index aa3c853bbf4..6d84ce95eb6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md index 79ab80fcfe5..43271d9242d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md @@ -166,9 +166,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md index c80cd888591..1cfc79e776c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md index 0714a4c093b..c899520ff79 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md index 36451824f70..978cedde33e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md @@ -183,9 +183,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md index f5f2b5cb615..e6649a72993 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md index 54d1a236936..9aa14800c10 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md index 9946efc8032..d9ca83dfd5d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md index a8dd1442c2d..b45cfa8dd61 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md index c9628e018a6..15045d19a30 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md index 57059ed37d2..eee503f878d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md index 07218352ade..10137a954ad 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md index 5cce9541bf4..db5d8bde0c2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md @@ -183,9 +183,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md index 513484724e6..32df9f50bd3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md @@ -192,9 +192,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md index 8dbbacb636f..de074aead81 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md @@ -192,9 +192,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md index c1da4827b42..f800a91d51f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md index 998d832b5f5..92d09f8fce7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md @@ -181,9 +181,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md index 41c13a3b7d9..34614f7339e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md index 2bec9600dcd..5e526f91e02 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md index b0825cb1e2c..36910ce5abd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md index 20538a1187b..16adc5e044f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md index 91016982452..be258a9118f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md index 805d2973344..79813b0490c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md index 7818cb16930..46e7372b545 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md index 6e6fdf65b80..c689855a639 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md index fa65370d532..bc61895bed0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md @@ -154,9 +154,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md index 1548abaa909..306a9610e41 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md @@ -149,9 +149,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md index 92880f935f4..1a745603e85 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md @@ -170,9 +170,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md index c92b0971b5f..64eba2397ea 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md @@ -170,9 +170,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md index aa4666a6f2c..429af0abb7e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md index 82d1a14ce8f..e05b746675a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index 7eb1ac06cd7..fb60344a7e1 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index 08e00dab146..55e87a203d2 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -162,9 +162,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 12d29b3e926..30a30b2ddd3 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index af2b1861c08..9c1c4ee30ce 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index 9bd5d43687f..4ef407ba888 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index aa313b063ef..259c01e90c4 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index e19c0fb058f..c6693c10064 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -174,9 +174,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index a5c4bfcceb0..0f42e05510b 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -182,9 +182,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 9a83722efb3..4472624a944 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index c50d8d5ad7b..c2530944684 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index 8a3d11d26e7..f7e63322391 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index ed75017ad63..b88782a07a4 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index f0a51cae4f0..8ad90c1cdcf 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index e7aaf18848a..645855a090b 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 2dca4bf24f5..11125e758e0 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 28c0aa235c8..eb1c4423500 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index a8d434010f9..50d22495c80 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index 300302acc6f..2e6cc7977c9 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -116,9 +116,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index 0af8d96bfb1..8e92622b68a 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -124,9 +124,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index ae9473f1e08..915529841a2 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -94,9 +94,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index 89529b09535..060a4c2fb2a 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -97,9 +97,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index 68197459376..8ccf9c7d9a9 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -125,9 +125,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index 2ed5007fd5e..f17c79568c9 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index 8c4a2b2b03a..1eb9edf37b1 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index 40a2c011a7f..39559ed3635 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -121,9 +121,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 750959aab8b..0063034d887 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index 5100b68d65b..5370bfad563 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index 5068d237f69..e8fb048ab08 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index b2131cff1dd..5f86e9a94c9 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index 116d28f12aa..a96ba2b0aa8 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -84,9 +84,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index f1c899e38d1..22068da0f36 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 7a3cbe332db..6258456e5cf 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index 036a8b8f545..51efa8fe679 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -122,9 +122,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index 3bc49b99e82..a479a782882 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index 3604572e551..b91a560e63b 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 115f98b5940..638daf30b0e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 3919200257b..8babf79d723 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index 5af2fa87cf7..31ec8abaa66 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index c47c8f28cd0..3002ac89563 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index 165e121ce65..0b162d9850e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index f28193bb07c..9575dbfdfdd 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -162,9 +162,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 367cc13fb7c..6eb13245770 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index 4f2b846ff50..ce187624d91 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index 231146e8fe2..99c20a6a845 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index b59bc3673e0..d467709f301 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index 83d82c2e3ff..e2cc973ebf3 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -174,9 +174,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 15134bf409b..089570bc71c 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -182,9 +182,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index b775936144f..6d923695c92 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index c9ce97773dd..6f8328a04aa 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index b120b1d0c67..a8812e4785f 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index 76e9a13115e..b81baec3423 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 6979633a0f0..e2dee75fd8d 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 16871aa3835..278cf8563b6 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 69ab6c801f7..b9ee5be0bcc 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 53e0412f0f5..9d74d22ce10 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Contact | Location | SNMP Traps | State | -| ------- | -------- | ---------- | ----- | -| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Local Engine ID | Contact | Location | SNMP Traps | State | +| --------------- | ------- | -------- | ---------- | ----- | +| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration From 47ad0716fc7fbd358acc07eff7bfcf728ab9a535 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Tue, 19 Apr 2022 10:15:01 +0200 Subject: [PATCH 05/14] Docs(eos_cli_config_gen): fix documenation SNMP engineID default value * regenerate the outputs for molecule tests --- .../documentation/devices/snmp-server-traps.md | 2 +- .../documentation/devices/snmp-server-traps.md | 2 +- .../eos_cli_config_gen_v4.0/documentation/devices/snmp.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF1A.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF2A.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF2B.md | 2 +- .../documentation/devices/DC1-POD1-LEAF1A.md | 2 +- .../documentation/devices/DC1-POD1-LEAF2A.md | 2 +- .../documentation/devices/DC1-POD1-LEAF2B.md | 2 +- .../documentation/devices/DC1-POD1-SPINE1.md | 2 +- .../documentation/devices/DC1-POD1-SPINE2.md | 2 +- .../documentation/devices/DC1-POD2-LEAF1A.md | 2 +- .../documentation/devices/DC1-POD2-SPINE1.md | 2 +- .../documentation/devices/DC1-POD2-SPINE2.md | 2 +- .../documentation/devices/DC1-RS1.md | 2 +- .../documentation/devices/DC1-RS2.md | 2 +- .../documentation/devices/DC1-SUPER-SPINE1.md | 2 +- .../documentation/devices/DC1-SUPER-SPINE2.md | 2 +- .../documentation/devices/DC2-POD1-L2LEAF1A.md | 2 +- .../documentation/devices/DC2-POD1-L2LEAF2A.md | 2 +- .../documentation/devices/DC2-POD1-LEAF1A.md | 2 +- .../documentation/devices/DC2-POD1-LEAF2A.md | 2 +- .../documentation/devices/DC2-POD1-SPINE1.md | 2 +- .../documentation/devices/DC2-POD1-SPINE2.md | 2 +- .../documentation/devices/DC2-RS1.md | 2 +- .../documentation/devices/DC2-RS2.md | 2 +- .../documentation/devices/DC2-SUPER-SPINE1.md | 2 +- .../documentation/devices/DC2-SUPER-SPINE2.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-BL1A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-BL1B.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-BL2A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-BL2B.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-CL1A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-CL1B.md | 2 +- .../documentation/devices/DC1-L2LEAF1A.md | 2 +- .../documentation/devices/DC1-L2LEAF1B.md | 2 +- .../documentation/devices/DC1-L2LEAF2A.md | 2 +- .../documentation/devices/DC1-L2LEAF2B.md | 2 +- .../documentation/devices/DC1-L2LEAF3A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md | 2 +- .../eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md | 2 +- .../eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md | 2 +- .../eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md | 2 +- .../documentation/devices/evpn_services_l2_only_false.md | 2 +- .../documentation/devices/evpn_services_l2_only_true.md | 2 +- .../documentation/devices/mgmt_interface_default.md | 2 +- .../documentation/devices/mgmt_interface_fabric.md | 2 +- .../documentation/devices/mgmt_interface_host.md | 2 +- .../documentation/devices/mgmt_interface_platform.md | 2 +- .../documentation/devices/DC1-BL1A.md | 2 +- .../documentation/devices/DC1-BL1B.md | 2 +- .../documentation/devices/DC1-L2LEAF1A.md | 2 +- .../documentation/devices/DC1-L2LEAF1B.md | 2 +- .../documentation/devices/DC1-L2LEAF2A.md | 2 +- .../documentation/devices/DC1-L2LEAF2B.md | 2 +- .../documentation/devices/DC1-L2LEAF3A.md | 2 +- .../documentation/devices/DC1-LEAF1A.md | 2 +- .../documentation/devices/DC1-LEAF2A.md | 2 +- .../documentation/devices/DC1-LEAF2B.md | 2 +- .../documentation/devices/DC1-SPINE1.md | 2 +- .../documentation/devices/DC1-SPINE2.md | 2 +- .../documentation/devices/DC1-SPINE3.md | 2 +- .../documentation/devices/DC1-SPINE4.md | 2 +- .../documentation/devices/DC1-SVC3A.md | 2 +- .../documentation/devices/DC1-SVC3B.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF1A.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF2A.md | 2 +- .../documentation/devices/DC1-POD1-L2LEAF2B.md | 2 +- .../documentation/devices/DC1-POD1-LEAF1A.md | 2 +- .../documentation/devices/DC1-POD1-LEAF2A.md | 2 +- .../documentation/devices/DC1-POD1-LEAF2B.md | 2 +- .../documentation/devices/DC1-POD1-SPINE1.md | 2 +- .../documentation/devices/DC1-POD1-SPINE2.md | 2 +- .../documentation/devices/DC1-POD2-LEAF1A.md | 2 +- .../documentation/devices/DC1-POD2-SPINE1.md | 2 +- .../documentation/devices/DC1-POD2-SPINE2.md | 2 +- .../documentation/devices/DC1-RS1.md | 2 +- .../documentation/devices/DC1-RS2.md | 2 +- .../documentation/devices/DC1-SUPER-SPINE1.md | 2 +- .../documentation/devices/DC1-SUPER-SPINE2.md | 2 +- .../documentation/devices/DC2-POD1-L2LEAF1A.md | 2 +- .../documentation/devices/DC2-POD1-LEAF1A.md | 2 +- .../documentation/devices/DC2-POD1-SPINE1.md | 2 +- .../documentation/devices/DC2-POD1-SPINE2.md | 2 +- .../documentation/devices/DC2-RS1.md | 2 +- .../documentation/devices/DC2-RS2.md | 2 +- .../documentation/devices/DC2-SUPER-SPINE1.md | 2 +- .../documentation/devices/DC2-SUPER-SPINE2.md | 2 +- .../documentation/devices/DC1-BL1A.md | 2 +- .../documentation/devices/DC1-BL1B.md | 2 +- .../documentation/devices/DC1-L2LEAF1A.md | 2 +- .../documentation/devices/DC1-L2LEAF1B.md | 2 +- .../documentation/devices/DC1-L2LEAF2A.md | 2 +- .../documentation/devices/DC1-L2LEAF2B.md | 2 +- .../documentation/devices/DC1-L2LEAF3A.md | 2 +- .../documentation/devices/DC1-LEAF1A.md | 2 +- .../documentation/devices/DC1-LEAF2A.md | 2 +- .../documentation/devices/DC1-LEAF2B.md | 2 +- .../documentation/devices/DC1-SPINE1.md | 2 +- .../documentation/devices/DC1-SPINE2.md | 2 +- .../documentation/devices/DC1-SPINE3.md | 2 +- .../documentation/devices/DC1-SPINE4.md | 2 +- .../documentation/devices/DC1-SVC3A.md | 2 +- .../documentation/devices/DC1-SVC3B.md | 2 +- .../eos_cli_config_gen/templates/documentation/snmp-settings.j2 | 2 +- 114 files changed, 114 insertions(+), 114 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md index 739f5d79497..eabd7f1d1ec 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md @@ -55,7 +55,7 @@ interface Management1 | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | DC1_OPS | DC1 | All | Disabled | +| - | DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md index 739f5d79497..eabd7f1d1ec 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md @@ -55,7 +55,7 @@ interface Management1 | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | DC1_OPS | DC1 | All | Disabled | +| - | DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index a0663a2b30a..238ceafd091 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -55,7 +55,7 @@ interface Management1 | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | DC1_OPS | DC1 | All | Enabled | +| - | DC1_OPS | DC1 | All | Enabled | ### SNMP ACLs | IP | ACL | VRF | diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index 50d22495c80..09f496c6086 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index 50af2415213..85c29698523 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -118,7 +118,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index 371e51265a0..b23727fc4f9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -126,7 +126,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 7369edb34cf..49010d2ef6c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -96,7 +96,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index dff06be7e30..dca83f2526b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -117,7 +117,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index 0f8377bb0b0..f2ecc9d1254 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -143,7 +143,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index 89625ec7752..369babfb113 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -88,7 +88,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index a91044d912a..db4b92e7c6d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index 8500bbd414f..cbd08862ec8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -139,7 +139,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 58248be4d96..224a0df9791 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index ff9bbba1a37..d48cf1118e4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index 3c3d3f56eed..5059c222c22 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -88,7 +88,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index 5f86e9a94c9..04ff5d92445 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index 0b6e2be237b..41ea40ea88f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -86,7 +86,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index 451786445d5..bb92e9899bf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 6258456e5cf..3c9dee99654 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -122,7 +122,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md index c38dc3a5a01..92240df602e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md @@ -122,7 +122,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index c4705d4590a..76d6a342a32 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -140,7 +140,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md index 155087413fd..50252b68659 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md @@ -124,7 +124,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index a48754776ef..2e0cf8d0b66 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index d22d1babb0c..984d753fae3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 10814eb215d..b756d9d30ed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 2989ae95ca5..04b32cf5e0e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index 3f495a9139b..ea5a51e08bc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index 6d84ce95eb6..30d78de5459 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md index 43271d9242d..8fb75ecaeae 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md @@ -168,7 +168,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md index 1cfc79e776c..52b1492c071 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md @@ -166,7 +166,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md index c899520ff79..93922ce1ec1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md @@ -190,7 +190,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md index 978cedde33e..ac4d07ec8e6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md @@ -185,7 +185,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md index e6649a72993..3df823ff82f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md index 9aa14800c10..d5ab70995cb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md index d9ca83dfd5d..9fdbf2ae29c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md @@ -181,7 +181,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md index b45cfa8dd61..047b9483cd5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md @@ -181,7 +181,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md index 15045d19a30..129ee684187 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md @@ -181,7 +181,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md index eee503f878d..be512eb2777 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md @@ -181,7 +181,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md index 10137a954ad..82a9a6e2454 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md index db5d8bde0c2..c4cc9d59c35 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md @@ -185,7 +185,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md index 32df9f50bd3..bcf62eadeea 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md @@ -194,7 +194,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md index de074aead81..f658a3a2d5f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md @@ -194,7 +194,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md index f800a91d51f..3acc3b463d5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md @@ -178,7 +178,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md index 92d09f8fce7..ad56c177b48 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md @@ -183,7 +183,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md index 34614f7339e..934e9da9480 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md @@ -178,7 +178,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md index 5e526f91e02..2b848744ea9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md @@ -178,7 +178,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md index 36910ce5abd..1b2bf77bad4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md index 16adc5e044f..8bb4ab7e802 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md index be258a9118f..a4549675954 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md @@ -178,7 +178,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md index 79813b0490c..982bf453605 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md @@ -190,7 +190,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md index 46e7372b545..3b2702783b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md @@ -190,7 +190,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | +| - | example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md index c689855a639..c1b7c011048 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md @@ -190,7 +190,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md index bc61895bed0..631c00b5a1b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md @@ -156,7 +156,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | +| - | example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md index 306a9610e41..565cda3224e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md @@ -151,7 +151,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | +| - | example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md index 1a745603e85..9a8c141f7db 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md @@ -172,7 +172,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | +| - | example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md index 64eba2397ea..24cf44e1002 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md @@ -172,7 +172,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | +| - | example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md index 429af0abb7e..9e52c951882 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | +| - | example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md index e05b746675a..05abfef3abc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | +| - | example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index fb60344a7e1..7650242c0ad 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -166,7 +166,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index 55e87a203d2..af25e817b7a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -164,7 +164,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 30a30b2ddd3..49662f6af4e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index 9c1c4ee30ce..3059077dfb8 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index 4ef407ba888..f7cdc58ed4a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index 259c01e90c4..2ba000c4292 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index c6693c10064..7784068ecd7 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -176,7 +176,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 0f42e05510b..350dd085fcd 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -184,7 +184,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 4472624a944..5475e6df8f6 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index c2530944684..a9a685ca086 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index f7e63322391..ecf9c4f7127 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index b88782a07a4..58b45a5273b 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 8ad90c1cdcf..0b00eb0cc8f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 645855a090b..3a99a1bf3dc 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 11125e758e0..917cfef9faa 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -191,7 +191,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index eb1c4423500..db330db97cb 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -191,7 +191,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index 50d22495c80..09f496c6086 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index 2e6cc7977c9..47317dc54d7 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -118,7 +118,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index 8e92622b68a..e06b6581d66 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -126,7 +126,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 915529841a2..4d952684be6 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -96,7 +96,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index 060a4c2fb2a..5bfb2a8e7e5 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -99,7 +99,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index 8ccf9c7d9a9..86009e62d00 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -127,7 +127,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index f17c79568c9..df7e8abadd0 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -88,7 +88,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index 1eb9edf37b1..86f80c0cbbe 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index 39559ed3635..b21b7743477 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -123,7 +123,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 0063034d887..31c6ecc7afe 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index 5370bfad563..ef913852cf5 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index e8fb048ab08..c254ebe9c6e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -88,7 +88,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index 5f86e9a94c9..04ff5d92445 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index a96ba2b0aa8..815f71fd15c 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -86,7 +86,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index 22068da0f36..52eeccd5c8e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 6258456e5cf..3c9dee99654 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -122,7 +122,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index 51efa8fe679..e3fc740ad71 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -124,7 +124,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index a479a782882..6c282988414 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index b91a560e63b..91f85177f16 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 638daf30b0e..40f62432aa0 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 8babf79d723..3f3e8407421 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index 31ec8abaa66..e72fbb30123 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -116,7 +116,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index 3002ac89563..3de49170bf6 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -114,7 +114,7 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index 0b162d9850e..07781b36224 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -166,7 +166,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index 9575dbfdfdd..6247c928629 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -164,7 +164,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 6eb13245770..66c1d00e3f8 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index ce187624d91..97856b4c1f4 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index 99c20a6a845..a091dbb7439 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index d467709f301..56e0a55d985 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -180,7 +180,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index e2cc973ebf3..ce02e702578 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -176,7 +176,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 089570bc71c..7b61698685d 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -184,7 +184,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 6d923695c92..345b7e07a95 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index 6f8328a04aa..45304b836e4 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -193,7 +193,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index a8812e4785f..faf34f9db96 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index b81baec3423..352e0475b21 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index e2dee75fd8d..04f680af2dd 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 278cf8563b6..bf83cd94514 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -177,7 +177,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index b9ee5be0bcc..64690aef4e7 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -191,7 +191,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 9d74d22ce10..6f91d037748 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -191,7 +191,7 @@ daemon TerminAttr | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -| Switch System Mac | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 76b5207609c..497b51e6c83 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -6,7 +6,7 @@ | Local Engine ID | Contact | Location | SNMP Traps | State | | --------------- | ------- | -------- | ---------- | ----- | -{% set row_engineid = snmp_server.engineid.local | arista.avd.default('Switch System Mac') %} +{% set row_engineid = snmp_server.engineid.local | arista.avd.default('-') %} {% set row_contact = snmp_server.contact | arista.avd.default('-') %} {% set row_location = snmp_server.location | arista.avd.default('-') %} {% if snmp_server.traps.enable is arista.avd.defined(true) %} From 7a5c01c8a47274fb06627283a92539f7d3983015 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Tue, 19 Apr 2022 14:00:27 +0200 Subject: [PATCH 06/14] Fix(eos_cli_config_gen): reorganize the logic for adding localized keyword --- .../templates/eos/snmp-settings.j2 | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index ae32db72b14..d00840dcb15 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -108,21 +108,13 @@ snmp-server location {{ snmp_server.location }} {% if user.version is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.version %} {% endif %} -{% if user.localized is arista.avd.defined - and snmp_server.engineid.local is arista.avd.defined - and user.auth is arista.avd.defined +{% if user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} -{% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} -{% if user.priv is arista.avd.defined - and user.version is arista.avd.defined('v3') - and user.priv_passphrase is arista.avd.defined %} -{% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} +{% if user.localized is arista.avd.defined(true) + and snmp_server.engineid.local is arista.avd.defined %} +{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} {% endif %} -{% elif user.auth is arista.avd.defined - and user.version is arista.avd.defined('v3') - and user.auth_passphrase is arista.avd.defined %} {% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} {% if user.priv is arista.avd.defined and user.version is arista.avd.defined('v3') From 2e4d3c28203c28fc5977525d67f137a20f6d6873 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Tue, 19 Apr 2022 16:29:30 +0200 Subject: [PATCH 07/14] fix(eos_cli_config_gen): change engineid to engine_ids * add remote engine IDs support * update documentation * update tests Caveat: does not add support for remote users --- .../devices/snmp-server-traps.md | 6 ++--- .../documentation/devices/snmp.md | 18 ++++++++++--- .../intended/configs/snmp.cfg | 2 ++ .../inventory/host_vars/snmp.yml | 10 ++++++- .../devices/snmp-server-traps.md | 6 ++--- .../documentation/devices/snmp.md | 7 ++--- .../devices/DC1-POD1-L2LEAF1A.md | 6 ++--- .../devices/DC1-POD1-L2LEAF2A.md | 6 ++--- .../devices/DC1-POD1-L2LEAF2B.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF2A.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF2B.md | 6 ++--- .../documentation/devices/DC1-POD1-SPINE1.md | 6 ++--- .../documentation/devices/DC1-POD1-SPINE2.md | 6 ++--- .../documentation/devices/DC1-POD2-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-POD2-SPINE1.md | 6 ++--- .../documentation/devices/DC1-POD2-SPINE2.md | 6 ++--- .../documentation/devices/DC1-RS1.md | 6 ++--- .../documentation/devices/DC1-RS2.md | 6 ++--- .../documentation/devices/DC1-SUPER-SPINE1.md | 6 ++--- .../documentation/devices/DC1-SUPER-SPINE2.md | 6 ++--- .../devices/DC2-POD1-L2LEAF1A.md | 6 ++--- .../devices/DC2-POD1-L2LEAF2A.md | 6 ++--- .../documentation/devices/DC2-POD1-LEAF1A.md | 6 ++--- .../documentation/devices/DC2-POD1-LEAF2A.md | 6 ++--- .../documentation/devices/DC2-POD1-SPINE1.md | 6 ++--- .../documentation/devices/DC2-POD1-SPINE2.md | 6 ++--- .../documentation/devices/DC2-RS1.md | 6 ++--- .../documentation/devices/DC2-RS2.md | 6 ++--- .../documentation/devices/DC2-SUPER-SPINE1.md | 6 ++--- .../documentation/devices/DC2-SUPER-SPINE2.md | 6 ++--- .../documentation/devices/DC1-BL1A.md | 6 ++--- .../documentation/devices/DC1-BL1B.md | 6 ++--- .../documentation/devices/DC1-BL2A.md | 6 ++--- .../documentation/devices/DC1-BL2B.md | 6 ++--- .../documentation/devices/DC1-CL1A.md | 6 ++--- .../documentation/devices/DC1-CL1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 ++--- .../documentation/devices/DC1-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-LEAF2A.md | 6 ++--- .../documentation/devices/DC1-LEAF2B.md | 6 ++--- .../documentation/devices/DC1-SPINE1.md | 6 ++--- .../documentation/devices/DC1-SPINE2.md | 6 ++--- .../documentation/devices/DC1-SPINE3.md | 6 ++--- .../documentation/devices/DC1-SPINE4.md | 6 ++--- .../documentation/devices/DC1-SVC3A.md | 6 ++--- .../documentation/devices/DC1-SVC3B.md | 6 ++--- .../documentation/devices/MH-L2LEAF1A.md | 6 ++--- .../documentation/devices/MH-LEAF1A.md | 6 ++--- .../documentation/devices/MH-LEAF1B.md | 6 ++--- .../documentation/devices/MH-LEAF2A.md | 6 ++--- .../devices/evpn_services_l2_only_false.md | 6 ++--- .../devices/evpn_services_l2_only_true.md | 6 ++--- .../devices/mgmt_interface_default.md | 6 ++--- .../devices/mgmt_interface_fabric.md | 6 ++--- .../devices/mgmt_interface_host.md | 6 ++--- .../devices/mgmt_interface_platform.md | 6 ++--- .../documentation/devices/DC1-BL1A.md | 6 ++--- .../documentation/devices/DC1-BL1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 ++--- .../documentation/devices/DC1-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-LEAF2A.md | 6 ++--- .../documentation/devices/DC1-LEAF2B.md | 6 ++--- .../documentation/devices/DC1-SPINE1.md | 6 ++--- .../documentation/devices/DC1-SPINE2.md | 6 ++--- .../documentation/devices/DC1-SPINE3.md | 6 ++--- .../documentation/devices/DC1-SPINE4.md | 6 ++--- .../documentation/devices/DC1-SVC3A.md | 6 ++--- .../documentation/devices/DC1-SVC3B.md | 6 ++--- .../devices/DC1-POD1-L2LEAF1A.md | 6 ++--- .../devices/DC1-POD1-L2LEAF2A.md | 6 ++--- .../devices/DC1-POD1-L2LEAF2B.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF2A.md | 6 ++--- .../documentation/devices/DC1-POD1-LEAF2B.md | 6 ++--- .../documentation/devices/DC1-POD1-SPINE1.md | 6 ++--- .../documentation/devices/DC1-POD1-SPINE2.md | 6 ++--- .../documentation/devices/DC1-POD2-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-POD2-SPINE1.md | 6 ++--- .../documentation/devices/DC1-POD2-SPINE2.md | 6 ++--- .../documentation/devices/DC1-RS1.md | 6 ++--- .../documentation/devices/DC1-RS2.md | 6 ++--- .../documentation/devices/DC1-SUPER-SPINE1.md | 6 ++--- .../documentation/devices/DC1-SUPER-SPINE2.md | 6 ++--- .../devices/DC2-POD1-L2LEAF1A.md | 6 ++--- .../documentation/devices/DC2-POD1-LEAF1A.md | 6 ++--- .../documentation/devices/DC2-POD1-SPINE1.md | 6 ++--- .../documentation/devices/DC2-POD1-SPINE2.md | 6 ++--- .../documentation/devices/DC2-RS1.md | 6 ++--- .../documentation/devices/DC2-RS2.md | 6 ++--- .../documentation/devices/DC2-SUPER-SPINE1.md | 6 ++--- .../documentation/devices/DC2-SUPER-SPINE2.md | 6 ++--- .../documentation/devices/DC1-BL1A.md | 6 ++--- .../documentation/devices/DC1-BL1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF1B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2A.md | 6 ++--- .../documentation/devices/DC1-L2LEAF2B.md | 6 ++--- .../documentation/devices/DC1-L2LEAF3A.md | 6 ++--- .../documentation/devices/DC1-LEAF1A.md | 6 ++--- .../documentation/devices/DC1-LEAF2A.md | 6 ++--- .../documentation/devices/DC1-LEAF2B.md | 6 ++--- .../documentation/devices/DC1-SPINE1.md | 6 ++--- .../documentation/devices/DC1-SPINE2.md | 6 ++--- .../documentation/devices/DC1-SPINE3.md | 6 ++--- .../documentation/devices/DC1-SPINE4.md | 6 ++--- .../documentation/devices/DC1-SVC3A.md | 6 ++--- .../documentation/devices/DC1-SVC3B.md | 6 ++--- .../avd/roles/eos_cli_config_gen/README.md | 8 ++++-- .../templates/documentation/snmp-settings.j2 | 27 ++++++++++++++++--- .../templates/eos/snmp-settings.j2 | 20 +++++++++++--- 119 files changed, 411 insertions(+), 353 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md index eabd7f1d1ec..11675d4cf97 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp-server-traps.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | DC1_OPS | DC1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index 0f8ce773491..fce18cc0d0c 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -53,9 +53,19 @@ interface Management1 ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| 424242424242424242 | DC1_OPS | DC1 | All | Enabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| DC1_OPS | DC1 | All | Enabled | + + +### SNMP EngineID Configuration + +| Type | Name (Hex) | IP | Port | +| ---- | ---------- | -- | ---- | +| local | 424242424242424242 | - | - | +| remote | 6172697374615F6970 | 1.1.1.1 | - | +| remote | DEADBEEFCAFE123456 | 2.2.2.2 | 1337 | + ### SNMP ACLs | IP | ACL | VRF | @@ -130,6 +140,8 @@ interface Management1 ```eos ! snmp-server engineID local 424242424242424242 +snmp-server engineID remote 1.1.1.1 6172697374615F6970 +snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server contact DC1_OPS snmp-server location DC1 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg index d01f950944c..b1b7783b466 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg @@ -5,6 +5,8 @@ transceiver qsfp default-mode 4x10G hostname snmp ! snmp-server engineID local 424242424242424242 +snmp-server engineID remote 1.1.1.1 6172697374615F6970 +snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server contact DC1_OPS snmp-server location DC1 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml index 1190c5faebe..0e3c4af196c 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml @@ -1,7 +1,15 @@ ### Snmp Settings #### snmp_server: - engineid: + engine_ids: local: 424242424242424242 + remote: + # First one without IP should not be rendered + - name: 1234567890ABCDEF12 + - name: 6172697374615F6970 + ip: 1.1.1.1 + - name: DEADBEEFCAFE123456 + ip: 2.2.2.2 + port: 1337 contact: DC1_OPS location: DC1 communities: diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md index eabd7f1d1ec..11675d4cf97 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp-server-traps.md @@ -53,9 +53,9 @@ interface Management1 ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | DC1_OPS | DC1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| DC1_OPS | DC1 | All | Disabled | | DC1_OPS | DC1 | bgp, bridge, lldp, mpls, msdp backward-transition, msdp established, snmp link-down, snmpConfigManEvent | Enabled | | DC1_OPS | DC1 | bgp arista-backward-transition, bridge arista-mac-age | Disabled | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index 238ceafd091..5877d2aa842 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -53,9 +53,10 @@ interface Management1 ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | DC1_OPS | DC1 | All | Enabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| DC1_OPS | DC1 | All | Enabled | + ### SNMP ACLs | IP | ACL | VRF | diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index 09f496c6086..a8d434010f9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index 85c29698523..fada72bbcfa 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -116,9 +116,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index b23727fc4f9..5989e130e5a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -124,9 +124,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 49010d2ef6c..18d7d3d3877 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -94,9 +94,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index dca83f2526b..7590dedaa4d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -115,9 +115,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index f2ecc9d1254..de2e40a39b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -141,9 +141,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index 369babfb113..62451854c75 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index db4b92e7c6d..f6a5305c6e0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index cbd08862ec8..1e0f56756cc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -137,9 +137,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 224a0df9791..5f2e2c51a91 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index d48cf1118e4..c6fc711f30e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index 5059c222c22..c7d0ecce35c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index 04ff5d92445..b2131cff1dd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index 41ea40ea88f..d4b6549a612 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -84,9 +84,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index bb92e9899bf..3f7a3931515 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 3c9dee99654..7a3cbe332db 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md index 92240df602e..d267d136fa8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF2A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index 76d6a342a32..8014d772997 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -138,9 +138,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md index 50252b68659..069175492cf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md @@ -122,9 +122,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index 2e0cf8d0b66..e7510b04bf4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index 984d753fae3..83716e00861 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index b756d9d30ed..9d178d05fd7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 04b32cf5e0e..39bbf30d223 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index ea5a51e08bc..bfaa800a8bf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index 30d78de5459..aa3c853bbf4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md index 8fb75ecaeae..79ab80fcfe5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1A.md @@ -166,9 +166,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md index 52b1492c071..c80cd888591 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL1B.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md index 93922ce1ec1..0714a4c093b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md index ac4d07ec8e6..36451824f70 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-BL2B.md @@ -183,9 +183,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md index 3df823ff82f..f5f2b5cb615 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-CL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md index d5ab70995cb..54d1a236936 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-CL1B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-CL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md index 9fdbf2ae29c..9946efc8032 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1A.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md index 047b9483cd5..a8dd1442c2d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF1B.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md index 129ee684187..c9628e018a6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2A.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md index be512eb2777..57059ed37d2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF2B.md @@ -179,9 +179,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md index 82a9a6e2454..07218352ade 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-L2LEAF3A.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md index c4cc9d59c35..5cce9541bf4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF1A.md @@ -183,9 +183,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md index bcf62eadeea..513484724e6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2A.md @@ -192,9 +192,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md index f658a3a2d5f..8dbbacb636f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-LEAF2B.md @@ -192,9 +192,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md index 3acc3b463d5..c1da4827b42 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE1.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md index ad56c177b48..998d832b5f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE2.md @@ -181,9 +181,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md index 934e9da9480..41c13a3b7d9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE3.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md index 2b848744ea9..2bec9600dcd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SPINE4.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md index 1b2bf77bad4..b0825cb1e2c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md index 8bb4ab7e802..20538a1187b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/DC1-SVC3B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md index a4549675954..91016982452 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-L2LEAF1A.md @@ -176,9 +176,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC MH-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md index 982bf453605..805d2973344 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC MH-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md index 3b2702783b8..7818cb16930 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF1B.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC MH-LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md index c1b7c011048..6e6fdf65b80 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/MH-LEAF2A.md @@ -188,9 +188,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC MH-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md index 631c00b5a1b..fa65370d532 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_false.md @@ -154,9 +154,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC evpn_services_l2_only_false | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md index 565cda3224e..1548abaa909 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/evpn_services_l2_only_true.md @@ -149,9 +149,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC evpn_services_l2_only_true | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md index 9a8c141f7db..92880f935f4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_default.md @@ -170,9 +170,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC mgmt_interface_default | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md index 24cf44e1002..c92b0971b5f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_fabric.md @@ -170,9 +170,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC mgmt_interface_fabric | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md index 9e52c951882..aa4666a6f2c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_host.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC mgmt_interface_host | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md index 05abfef3abc..82d1a14ce8f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/documentation/devices/mgmt_interface_platform.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC mgmt_interface_platform | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index 7650242c0ad..7eb1ac06cd7 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index af25e817b7a..08e00dab146 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -162,9 +162,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 49662f6af4e..12d29b3e926 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index 3059077dfb8..af2b1861c08 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index f7cdc58ed4a..9bd5d43687f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index 2ba000c4292..aa313b063ef 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index 7784068ecd7..e19c0fb058f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -174,9 +174,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 350dd085fcd..a5c4bfcceb0 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -182,9 +182,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 5475e6df8f6..9a83722efb3 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index a9a685ca086..c50d8d5ad7b 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index ecf9c4f7127..8a3d11d26e7 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index 58b45a5273b..ed75017ad63 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 0b00eb0cc8f..f0a51cae4f0 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 3a99a1bf3dc..e7aaf18848a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 917cfef9faa..2dca4bf24f5 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index db330db97cb..28c0aa235c8 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md index 09f496c6086..a8d434010f9 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF1A.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md index 47317dc54d7..300302acc6f 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2A.md @@ -116,9 +116,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md index e06b6581d66..0af8d96bfb1 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-L2LEAF2B.md @@ -124,9 +124,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 4d952684be6..ae9473f1e08 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -94,9 +94,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md index 5bfb2a8e7e5..89529b09535 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2A.md @@ -97,9 +97,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index 86009e62d00..68197459376 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -125,9 +125,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index df7e8abadd0..2ed5007fd5e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index 86f80c0cbbe..8c4a2b2b03a 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD1 DC1-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index b21b7743477..40a2c011a7f 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -121,9 +121,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 31c6ecc7afe..750959aab8b 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index ef913852cf5..5100b68d65b 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1_POD2 DC1-POD2-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index c254ebe9c6e..5068d237f69 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -86,9 +86,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index 04ff5d92445..b2131cff1dd 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index 815f71fd15c..116d28f12aa 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -84,9 +84,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index 52eeccd5c8e..f1c899e38d1 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC1 DC1-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md index 3c9dee99654..7a3cbe332db 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-L2LEAF1A.md @@ -120,9 +120,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index e3fc740ad71..036a8b8f545 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -122,9 +122,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index 6c282988414..3bc49b99e82 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index 91f85177f16..3604572e551 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2_POD1 DC2-POD1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 40f62432aa0..115f98b5940 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-RS1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 3f3e8407421..3919200257b 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-RS2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index e72fbb30123..5af2fa87cf7 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -114,9 +114,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index 3de49170bf6..c47c8f28cd0 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -112,9 +112,9 @@ username admin privilege 15 role network-admin secret sha512 $6$eJ5TvI8oru5i9e8G ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| - | TWODC_5STAGE_CLOS DC2 DC2-SUPER-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md index 07781b36224..165e121ce65 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -164,9 +164,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md index 6247c928629..f28193bb07c 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -162,9 +162,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-BL1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md index 66c1d00e3f8..367cc13fb7c 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md index 97856b4c1f4..4f2b846ff50 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF1B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF1B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md index a091dbb7439..231146e8fe2 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2A.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md index 56e0a55d985..b59bc3673e0 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF2B.md @@ -178,9 +178,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md index ce02e702578..83d82c2e3ff 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-L2LEAF3A.md @@ -174,9 +174,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackE DC1-L2LEAF3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 7b61698685d..15134bf409b 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -182,9 +182,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackA DC1-LEAF1A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 345b7e07a95..b775936144f 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackC DC1-LEAF2A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index 45304b836e4..c9ce97773dd 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -191,9 +191,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC rackD DC1-LEAF2B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index faf34f9db96..b120b1d0c67 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE1 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index 352e0475b21..76e9a13115e 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE2 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 04f680af2dd..6979633a0f0 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE3 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index bf83cd94514..16871aa3835 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -175,9 +175,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SPINE4 | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 64690aef4e7..69ab6c801f7 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3A | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 6f91d037748..53e0412f0f5 100644 --- a/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/upgrade_v2.x_to_v3.0_evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -189,9 +189,9 @@ daemon TerminAttr ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -| - | example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | +| example@example.com | DC1_FABRIC DC1-SVC3B | All | Disabled | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index af169a3aaef..4fa5363485f 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2318,8 +2318,12 @@ sflow: ```yaml snmp_server: - engineid: - local: + engine_ids: + local: < engine_name in hex > + remote: + - name: < engine_name in hex > + ip: < hostname | ip of remote engine > + port: < udp-port of remote engine > contact: < contact_name > location: < location > communities: diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 497b51e6c83..4d3aee76bf5 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -4,9 +4,8 @@ ### SNMP Configuration Summary -| Local Engine ID | Contact | Location | SNMP Traps | State | -| --------------- | ------- | -------- | ---------- | ----- | -{% set row_engineid = snmp_server.engineid.local | arista.avd.default('-') %} +| Contact | Location | SNMP Traps | State | +| ------- | -------- | ---------- | ----- | {% set row_contact = snmp_server.contact | arista.avd.default('-') %} {% set row_location = snmp_server.location | arista.avd.default('-') %} {% if snmp_server.traps.enable is arista.avd.defined(true) %} @@ -14,7 +13,7 @@ {% else %} {% set row_state = 'Disabled' %} {% endif %} -| {{ row_engineid }} | {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | +| {{ row_contact }} | {{ row_location }} | All | {{ row_state }} | {% if snmp_server.traps.snmp_traps is arista.avd.defined %} {% set row_traps_disabled = snmp_server.traps.snmp_traps | selectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} {% set row_traps_enabled = snmp_server.traps.snmp_traps | rejectattr('enabled','false') | map(attribute = 'name') | arista.avd.natural_sort | join(', ') %} @@ -25,8 +24,28 @@ | {{ row_contact }} | {{ row_location }} | {{ row_traps_disabled }} | Disabled | {% endif %} {% endif %} +{% if snmp_server.engine_ids is arista.avd.defined %} + + +### SNMP EngineID Configuration + +| Type | Name (Hex) | IP | Port | +| ---- | ---------- | -- | ---- | +{% if snmp_server.engine_ids.local is arista.avd.defined %} +| local | {{ snmp_server.engine_ids.local }} | - | - | +{% endif %} +{% for engine_id in snmp_server.engine_ids.remote %} +{% if engine_id.name is arista.avd.defined and engine_id.ip is arista.avd.defined %} +{% set row_name = engine_id.name | arista.avd.default('-') %} +{% set row_ip = engine_id.ip | arista.avd.default('-') %} +{% set row_port = engine_id.port | arista.avd.default('-') %} +| remote | {{ row_name }} | {{ row_ip }} | {{ row_port }} | +{% endif %} +{% endfor %} +{% endif %} {% if snmp_server.ipv4_acls is arista.avd.defined %} + ### SNMP ACLs | IP | ACL | VRF | | -- | --- | --- | diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index d00840dcb15..10cfdc86c7d 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -1,8 +1,20 @@ {# eos - SNMP Settings#} {% if snmp_server is arista.avd.defined %} ! -{% if snmp_server.engineid.local is arista.avd.defined %} -snmp-server engineID local {{ snmp_server.engineid.local }} +{% if snmp_server.engine_ids is arista.avd.defined %} +{% if snmp_server.engine_ids.local is arista.avd.defined %} +snmp-server engineID local {{ snmp_server.engine_ids.local }} +{% endif %} +{% for engine_id in snmp_server.engine_ids.remote %} +{% if engine_id.name is arista.avd.defined and engine_id.ip is arista.avd.defined %} +{% set remote_engine_ids_cli = "snmp-server engineID remote " ~ engine_id.ip %} +{% if engine_id.port is arista.avd.defined %} +{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " udp-port " ~ engine_id.port %} +{% endif %} +{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " " ~ engine_id.name %} +{{ remote_engine_ids_cli }} +{% endif %} +{% endfor %} {% endif %} {% if snmp_server.contact is arista.avd.defined %} snmp-server contact {{ snmp_server.contact }} @@ -112,8 +124,8 @@ snmp-server location {{ snmp_server.location }} and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} {% if user.localized is arista.avd.defined(true) - and snmp_server.engineid.local is arista.avd.defined %} -{% set user_cli = user_cli ~ " localized " ~ snmp_server.engineid.local %} + and snmp_server.engine_ids.local is arista.avd.defined %} +{% set user_cli = user_cli ~ " localized " ~ snmp_server.engine_ids.local %} {% endif %} {% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} {% if user.priv is arista.avd.defined From 81b3174e4fb500cc730f5e12ffa4b3af119e5170 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Wed, 20 Apr 2022 17:11:54 +0200 Subject: [PATCH 08/14] Feat(eos_cli_config_gen): add support for remote SNMPv3 users --- .../documentation/devices/snmp.md | 24 ++++++++++++------- .../intended/configs/snmp.cfg | 3 +++ .../inventory/host_vars/snmp.yml | 22 ++++++++++++++--- .../documentation/devices/snmp.md | 8 +++---- .../avd/roles/eos_cli_config_gen/README.md | 12 +++++++--- .../templates/documentation/snmp-settings.j2 | 9 ++++--- .../templates/eos/snmp-settings.j2 | 11 ++++++--- 7 files changed, 64 insertions(+), 25 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index fce18cc0d0c..adb66638814 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -125,15 +125,18 @@ interface Management1 ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | -| ---- | ----- | ------- | -------------- | ------- | -| USER-READ-NO-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | - | - | -| USER-READ-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | sha | - | -| USER-READ-AUTH-PRIV | GRP-READ-ONLY | v3 | sha | aes | -| USER-READ-NO-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | - | - | -| USER-READ-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | sha | - | -| USER-READ-AUTH-PRIV-LOC | GRP-READ-ONLY | v3 | sha | aes | -| USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | +| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | +| USER-READ-NO-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | - | - | - | - | - | +| USER-READ-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | sha | - | - | - | - | +| USER-READ-AUTH-PRIV | GRP-READ-ONLY | v3 | sha | aes | - | - | - | +| USER-READ-NO-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | - | - | - | - | 424242424242424242 | +| USER-READ-AUTH-NO-PRIV-LOC | GRP-READ-ONLY | v3 | sha | - | - | - | 424242424242424242 | +| USER-READ-AUTH-PRIV-LOC | GRP-READ-ONLY | v3 | sha | aes | - | - | 424242424242424242 | +| USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | - | - | - | +| REMOTE-USER-IP-ONLY | GRP-REMOTE | v3 | - | - | 42.42.42.42 | - | - | +| REMOTE-USER-IP-PORT | GRP-REMOTE | v3 | - | - | 42.42.42.42 | 666 | - | +| REMOTE-USER-IP-LOCALIZED | GRP-REMOTE | v3 | sha | - | 42.42.42.42 | - | DEADBEEFCAFE123456 | ### SNMP Device Configuration @@ -165,6 +168,9 @@ snmp-server user USER-READ-NO-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 snmp-server user USER-READ-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a snmp-server user USER-READ-AUTH-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a priv aes 8da526cd35b9ea9b42d819036f7fad05 snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha clearPassword priv aes clearPassword +snmp-server user REMOTE-USER-IP-ONLY GRP-REMOTE remote 42.42.42.42 v3 +snmp-server user REMOTE-USER-IP-PORT GRP-REMOTE remote 42.42.42.42 udp-port 666 v3 +snmp-server user REMOTE-USER-IP-LOCALIZED GRP-REMOTE remote 42.42.42.42 v3 localized DEADBEEFCAFE123456 auth sha ShouldBeEncryptedPassword snmp-server host 10.6.75.121 vrf MGMT version 1 SNMP-COMMUNITY-1 snmp-server host 10.6.75.121 vrf MGMT version 2c SNMP-COMMUNITY-2 snmp-server host 10.6.75.122 vrf MGMT version 2c SNMP-COMMUNITY-2 diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg index b1b7783b466..486d009cf54 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg @@ -30,6 +30,9 @@ snmp-server user USER-READ-NO-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 snmp-server user USER-READ-AUTH-NO-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a snmp-server user USER-READ-AUTH-PRIV-LOC GRP-READ-ONLY v3 localized 424242424242424242 auth sha 8da526cd35b9ea9b42d819036f7fad058576ea0a priv aes 8da526cd35b9ea9b42d819036f7fad05 snmp-server user USER-WRITE GRP-READ-WRITE v3 auth sha clearPassword priv aes clearPassword +snmp-server user REMOTE-USER-IP-ONLY GRP-REMOTE remote 42.42.42.42 v3 +snmp-server user REMOTE-USER-IP-PORT GRP-REMOTE remote 42.42.42.42 udp-port 666 v3 +snmp-server user REMOTE-USER-IP-LOCALIZED GRP-REMOTE remote 42.42.42.42 v3 localized DEADBEEFCAFE123456 auth sha ShouldBeEncryptedPassword snmp-server host 10.6.75.121 vrf MGMT version 1 SNMP-COMMUNITY-1 snmp-server host 10.6.75.121 vrf MGMT version 2c SNMP-COMMUNITY-2 snmp-server host 10.6.75.122 vrf MGMT version 2c SNMP-COMMUNITY-2 diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml index 0e3c4af196c..f2d46dcb687 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml @@ -75,13 +75,13 @@ snmp_server: - name: USER-READ-NO-AUTH-NO-PRIV-LOC group: GRP-READ-ONLY version: v3 - localized: true + localized: 424242424242424242 - name: USER-READ-AUTH-NO-PRIV-LOC group: GRP-READ-ONLY version: v3 auth: sha auth_passphrase: 8da526cd35b9ea9b42d819036f7fad058576ea0a - localized: true + localized: 424242424242424242 - name: USER-READ-AUTH-PRIV-LOC group: GRP-READ-ONLY version: v3 @@ -89,7 +89,7 @@ snmp_server: auth_passphrase: 8da526cd35b9ea9b42d819036f7fad058576ea0a priv: aes priv_passphrase: 8da526cd35b9ea9b42d819036f7fad05 - localized: true + localized: 424242424242424242 - name: USER-WRITE group: GRP-READ-WRITE version: v3 @@ -97,6 +97,22 @@ snmp_server: auth_passphrase: clearPassword priv: aes priv_passphrase: clearPassword + - name: REMOTE-USER-IP-ONLY + group: GRP-REMOTE + version: v3 + remote_ip: 42.42.42.42 + - name: REMOTE-USER-IP-PORT + group: GRP-REMOTE + version: v3 + remote_ip: 42.42.42.42 + udp_port: 666 + - name: REMOTE-USER-IP-LOCALIZED + group: GRP-REMOTE + version: v3 + remote_ip: 42.42.42.42 + localized: DEADBEEFCAFE123456 + auth: sha + auth_passphrase: ShouldBeEncryptedPassword hosts: - host: 10.6.75.121 vrf: MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index 5877d2aa842..18173c518d5 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -116,10 +116,10 @@ interface Management1 ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | -| ---- | ----- | ------- | -------------- | ------- | -| USER-READ | GRP-READ-ONLY | v3 | sha | aes | -| USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | +| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | +| USER-READ | GRP-READ-ONLY | v3 | sha | aes | - | - | - | +| USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | - | - | - | ### SNMP Device Configuration diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index 4fa5363485f..5de9431956c 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2376,12 +2376,18 @@ snmp_server: users: - name: < username > group: < group_name > + # remote_ip and udp_port are used for remote users + remote_ip: < ip_address > + # udp_port will not be used if no remote_ip is configured + udp_port: < udp_port > version: < v1 | v2c | v3 > - localized: < true | false > + # for a local user (i.e. no remote_ip) - the local engine ID should be + # used + localized: < engine_name in hex > auth: < hash_algorithm > - auth_passphrase: < hashed_auth_passphrase if localized is true else cleartext auth_passphrase > + auth_passphrase: < hashed_auth_passphrase if localized is used else cleartext auth_passphrase > priv: < encryption_algorithm > - priv_passphrase: < hashed_priv_passphrase if localized is true else cleartext priv_passphrase > + priv_passphrase: < hashed_priv_passphrase if localized is used else cleartext priv_passphrase > - name: < username > group: < group_name > version: < v1 | v2c | v3 > diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 4d3aee76bf5..68369581a57 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -159,15 +159,18 @@ ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | -| ---- | ----- | ------- | -------------- | ------- | +| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | {% for user in snmp_server.users %} {% set row_user = user.name | arista.avd.default('default') %} {% set row_group = user.group | arista.avd.default('-') %} {% set row_version = user.version | arista.avd.default('-') %} {% set row_auth = user.auth | arista.avd.default('-') %} {% set row_policy = user.priv | arista.avd.default('-') %} -| {{ row_user }} | {{ row_group }} | {{ row_version }} | {{ row_auth }} | {{ row_policy }} | +{% set row_remote_ip = user.remote_ip | arista.avd.default('-') %} +{% set row_udp_port = user.udp_port | arista.avd.default('-') %} +{% set row_engine_id = user.localized | arista.avd.default('-') %} +| {{ row_user }} | {{ row_group }} | {{ row_version }} | {{ row_auth }} | {{ row_policy }} | {{ row_remote_ip }} | {{ row_udp_port }} | {{ row_engine_id }} | {% endfor %} {% endif %} diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 10cfdc86c7d..89542b937d5 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -117,15 +117,20 @@ snmp-server location {{ snmp_server.location }} {% if user.group is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.group %} {% endif %} +{% if user.remote_ip is arista.avd.defined %} +{% set user_cli = user_cli ~ " remote " ~ user.remote_ip %} +{% if user.udp_port is arista.avd.defined %} +{% set user_cli = user_cli ~ " udp-port " ~ user.udp_port %} +{% endif %} +{% endif %} {% if user.version is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.version %} {% endif %} {% if user.auth is arista.avd.defined and user.version is arista.avd.defined('v3') and user.auth_passphrase is arista.avd.defined %} -{% if user.localized is arista.avd.defined(true) - and snmp_server.engine_ids.local is arista.avd.defined %} -{% set user_cli = user_cli ~ " localized " ~ snmp_server.engine_ids.local %} +{% if user.localized is arista.avd.defined %} +{% set user_cli = user_cli ~ " localized " ~ user.localized %} {% endif %} {% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} {% if user.priv is arista.avd.defined From f219642377968200c80f1a4beaa3e67a7ebffa91 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Thu, 21 Apr 2022 10:02:05 +0200 Subject: [PATCH 09/14] Refactor(eos_cli_config_gen): changes as per PR review * change engine_ids/remote to remotes * change engined_ids/remotes name to id * change engined_ids/remotes ip to address * changed snmp users/remote_ip to remote_address * fix comments in the eos_cli_config_gen/templates/eos/snmp-settings.j2 * update in the eos_cli_config_gen/templates/documentation/snmp-settings.j2 as per PR * update README * update molecule tests --- .../documentation/devices/snmp.md | 4 ++-- .../inventory/host_vars/snmp.yml | 18 +++++++++--------- .../documentation/devices/snmp.md | 4 ++-- .../avd/roles/eos_cli_config_gen/README.md | 18 +++++++++--------- .../templates/documentation/snmp-settings.j2 | 18 +++++++++--------- .../templates/eos/snmp-settings.j2 | 12 ++++++------ 6 files changed, 37 insertions(+), 37 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index adb66638814..3b68682a874 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -125,8 +125,8 @@ interface Management1 ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | -| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | +| User | Group | Version | Authentication | Privacy | Remote Address | Remote Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | -------------- | ----------- | --------- | | USER-READ-NO-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | - | - | - | - | - | | USER-READ-AUTH-NO-PRIV | GRP-READ-ONLY | v3 | sha | - | - | - | - | | USER-READ-AUTH-PRIV | GRP-READ-ONLY | v3 | sha | aes | - | - | - | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml index f2d46dcb687..84563fd7284 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml @@ -2,13 +2,13 @@ snmp_server: engine_ids: local: 424242424242424242 - remote: + remotes: # First one without IP should not be rendered - - name: 1234567890ABCDEF12 - - name: 6172697374615F6970 - ip: 1.1.1.1 - - name: DEADBEEFCAFE123456 - ip: 2.2.2.2 + - id: 1234567890ABCDEF12 + - id: 6172697374615F6970 + address: 1.1.1.1 + - id: DEADBEEFCAFE123456 + address: 2.2.2.2 port: 1337 contact: DC1_OPS location: DC1 @@ -100,16 +100,16 @@ snmp_server: - name: REMOTE-USER-IP-ONLY group: GRP-REMOTE version: v3 - remote_ip: 42.42.42.42 + remote_address: 42.42.42.42 - name: REMOTE-USER-IP-PORT group: GRP-REMOTE version: v3 - remote_ip: 42.42.42.42 + remote_address: 42.42.42.42 udp_port: 666 - name: REMOTE-USER-IP-LOCALIZED group: GRP-REMOTE version: v3 - remote_ip: 42.42.42.42 + remote_address: 42.42.42.42 localized: DEADBEEFCAFE123456 auth: sha auth_passphrase: ShouldBeEncryptedPassword diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index 18173c518d5..45b513be6ac 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -116,8 +116,8 @@ interface Management1 ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | -| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | +| User | Group | Version | Authentication | Privacy | Remote Address | Remote Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | -------------- | ----------- | --------- | | USER-READ | GRP-READ-ONLY | v3 | sha | aes | - | - | - | | USER-WRITE | GRP-READ-WRITE | v3 | sha | aes | - | - | - | diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index 5de9431956c..eab0ea16747 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2320,10 +2320,10 @@ sflow: snmp_server: engine_ids: local: < engine_name in hex > - remote: - - name: < engine_name in hex > - ip: < hostname | ip of remote engine > - port: < udp-port of remote engine > + remotes: + - id: < engine_name in hex > + address: < hostname_or_ip_of_remote_engine > + port: < udp_port > contact: < contact_name > location: < location > communities: @@ -2376,13 +2376,13 @@ snmp_server: users: - name: < username > group: < group_name > - # remote_ip and udp_port are used for remote users - remote_ip: < ip_address > - # udp_port will not be used if no remote_ip is configured + # remote_address and udp_port are used for remote users + remote_address: < hostname_or_ip_of_remote_engine > + # udp_port will not be used if no remote_address is configured udp_port: < udp_port > version: < v1 | v2c | v3 > - # for a local user (i.e. no remote_ip) - the local engine ID should be - # used + # For a local user (i.e. no remote_ip), use the local engine_id + # For a remote user, use the remote engine_id localized: < engine_name in hex > auth: < hash_algorithm > auth_passphrase: < hashed_auth_passphrase if localized is used else cleartext auth_passphrase > diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 68369581a57..2b40ef1e5f7 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -34,12 +34,12 @@ {% if snmp_server.engine_ids.local is arista.avd.defined %} | local | {{ snmp_server.engine_ids.local }} | - | - | {% endif %} -{% for engine_id in snmp_server.engine_ids.remote %} -{% if engine_id.name is arista.avd.defined and engine_id.ip is arista.avd.defined %} -{% set row_name = engine_id.name | arista.avd.default('-') %} -{% set row_ip = engine_id.ip | arista.avd.default('-') %} +{% for engine_id in snmp_server.engine_ids.remotes %} +{% if engine_id.id is arista.avd.defined and engine_id.address is arista.avd.defined %} +{% set row_id = engine_id.id | arista.avd.default('-') %} +{% set row_address = engine_id.address | arista.avd.default('-') %} {% set row_port = engine_id.port | arista.avd.default('-') %} -| remote | {{ row_name }} | {{ row_ip }} | {{ row_port }} | +| remote | {{ row_id }} | {{ row_address }} | {{ row_port }} | {% endif %} {% endfor %} {% endif %} @@ -159,18 +159,18 @@ ### SNMP Users Configuration -| User | Group | Version | Authentication | Privacy | Remote IP | UDP Port | Engine ID | -| ---- | ----- | ------- | -------------- | ------- | --------- | -------- | --------- | +| User | Group | Version | Authentication | Privacy | Remote Address | Remote Port | Engine ID | +| ---- | ----- | ------- | -------------- | ------- | -------------- | ----------- | --------- | {% for user in snmp_server.users %} {% set row_user = user.name | arista.avd.default('default') %} {% set row_group = user.group | arista.avd.default('-') %} {% set row_version = user.version | arista.avd.default('-') %} {% set row_auth = user.auth | arista.avd.default('-') %} {% set row_policy = user.priv | arista.avd.default('-') %} -{% set row_remote_ip = user.remote_ip | arista.avd.default('-') %} +{% set row_remote_address = user.remote_address | arista.avd.default('-') %} {% set row_udp_port = user.udp_port | arista.avd.default('-') %} {% set row_engine_id = user.localized | arista.avd.default('-') %} -| {{ row_user }} | {{ row_group }} | {{ row_version }} | {{ row_auth }} | {{ row_policy }} | {{ row_remote_ip }} | {{ row_udp_port }} | {{ row_engine_id }} | +| {{ row_user }} | {{ row_group }} | {{ row_version }} | {{ row_auth }} | {{ row_policy }} | {{ row_remote_address }} | {{ row_udp_port }} | {{ row_engine_id }} | {% endfor %} {% endif %} diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 89542b937d5..9d705065066 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -5,13 +5,13 @@ {% if snmp_server.engine_ids.local is arista.avd.defined %} snmp-server engineID local {{ snmp_server.engine_ids.local }} {% endif %} -{% for engine_id in snmp_server.engine_ids.remote %} -{% if engine_id.name is arista.avd.defined and engine_id.ip is arista.avd.defined %} -{% set remote_engine_ids_cli = "snmp-server engineID remote " ~ engine_id.ip %} +{% for engine_id in snmp_server.engine_ids.remotes %} +{% if engine_id.id is arista.avd.defined and engine_id.address is arista.avd.defined %} +{% set remote_engine_ids_cli = "snmp-server engineID remote " ~ engine_id.address %} {% if engine_id.port is arista.avd.defined %} {% set remote_engine_ids_cli = remote_engine_ids_cli ~ " udp-port " ~ engine_id.port %} {% endif %} -{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " " ~ engine_id.name %} +{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " " ~ engine_id.id %} {{ remote_engine_ids_cli }} {% endif %} {% endfor %} @@ -117,8 +117,8 @@ snmp-server location {{ snmp_server.location }} {% if user.group is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.group %} {% endif %} -{% if user.remote_ip is arista.avd.defined %} -{% set user_cli = user_cli ~ " remote " ~ user.remote_ip %} +{% if user.remote_address is arista.avd.defined %} +{% set user_cli = user_cli ~ " remote " ~ user.remote_address %} {% if user.udp_port is arista.avd.defined %} {% set user_cli = user_cli ~ " udp-port " ~ user.udp_port %} {% endif %} From 81d0d634c9fc0ab8de34b3c1a218a8c3808f41fb Mon Sep 17 00:00:00 2001 From: gmuloc Date: Thu, 21 Apr 2022 15:03:01 +0200 Subject: [PATCH 10/14] Refactor(eos_cli_config_gen): address PR comments * remove redundant check in templates/eos/snmp-settings.j2 * remove extra blank lines in templates/documentation/snmp-settings.j2 --- .../molecule/eos_cli_config_gen/documentation/devices/snmp.md | 2 -- .../eos_cli_config_gen_v4.0/documentation/devices/snmp.md | 1 - .../eos_cli_config_gen/templates/documentation/snmp-settings.j2 | 2 -- .../avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 | 1 - 4 files changed, 6 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index 3b68682a874..3b2f2e8b14e 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -57,7 +57,6 @@ interface Management1 | ------- | -------- | ---------- | ----- | | DC1_OPS | DC1 | All | Enabled | - ### SNMP EngineID Configuration | Type | Name (Hex) | IP | Port | @@ -66,7 +65,6 @@ interface Management1 | remote | 6172697374615F6970 | 1.1.1.1 | - | | remote | DEADBEEFCAFE123456 | 2.2.2.2 | 1337 | - ### SNMP ACLs | IP | ACL | VRF | | -- | --- | --- | diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md index 45b513be6ac..48f73de65d8 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen_v4.0/documentation/devices/snmp.md @@ -57,7 +57,6 @@ interface Management1 | ------- | -------- | ---------- | ----- | | DC1_OPS | DC1 | All | Enabled | - ### SNMP ACLs | IP | ACL | VRF | | -- | --- | --- | diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index 2b40ef1e5f7..b8f10735e58 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -26,7 +26,6 @@ {% endif %} {% if snmp_server.engine_ids is arista.avd.defined %} - ### SNMP EngineID Configuration | Type | Name (Hex) | IP | Port | @@ -45,7 +44,6 @@ {% endif %} {% if snmp_server.ipv4_acls is arista.avd.defined %} - ### SNMP ACLs | IP | ACL | VRF | | -- | --- | --- | diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 9d705065066..378731fee8e 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -134,7 +134,6 @@ snmp-server location {{ snmp_server.location }} {% endif %} {% set user_cli = user_cli ~ " auth " ~ user.auth ~ " " ~ user.auth_passphrase %} {% if user.priv is arista.avd.defined - and user.version is arista.avd.defined('v3') and user.priv_passphrase is arista.avd.defined %} {% set user_cli = user_cli ~ " priv " ~ user.priv ~ " " ~ user.priv_passphrase %} {% endif %} From bf59785c1679df5abb587b24de7f59b1d5e55a25 Mon Sep 17 00:00:00 2001 From: Guillaume Mulocher Date: Tue, 26 Apr 2022 09:17:58 +0200 Subject: [PATCH 11/14] Apply suggestions from code review Co-authored-by: Claus Holbech --- .../templates/documentation/snmp-settings.j2 | 4 ++-- .../roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index b8f10735e58..bf0c8a31e1a 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -28,10 +28,10 @@ ### SNMP EngineID Configuration -| Type | Name (Hex) | IP | Port | +| Type | EngineID (Hex) | IP | Port | | ---- | ---------- | -- | ---- | {% if snmp_server.engine_ids.local is arista.avd.defined %} -| local | {{ snmp_server.engine_ids.local }} | - | - | +| local | {{ snmp_server.engine_ids.local }} | - | - | {% endif %} {% for engine_id in snmp_server.engine_ids.remotes %} {% if engine_id.id is arista.avd.defined and engine_id.address is arista.avd.defined %} diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 378731fee8e..1136c84cf7b 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -117,7 +117,7 @@ snmp-server location {{ snmp_server.location }} {% if user.group is arista.avd.defined %} {% set user_cli = user_cli ~ " " ~ user.group %} {% endif %} -{% if user.remote_address is arista.avd.defined %} +{% if user.remote_address is arista.avd.defined and user.version is arista.avd.defined('v3') %} {% set user_cli = user_cli ~ " remote " ~ user.remote_address %} {% if user.udp_port is arista.avd.defined %} {% set user_cli = user_cli ~ " udp-port " ~ user.udp_port %} From e801bd4a9c2fbb09b0009566fd6771a6bf4947e1 Mon Sep 17 00:00:00 2001 From: gmuloc Date: Tue, 26 Apr 2022 10:39:45 +0200 Subject: [PATCH 12/14] Refactor(eos_cli_config_gen): update the tests --- .../molecule/eos_cli_config_gen/documentation/devices/snmp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index 3b2f2e8b14e..6f6fa94a97c 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -59,9 +59,9 @@ interface Management1 ### SNMP EngineID Configuration -| Type | Name (Hex) | IP | Port | +| Type | EngineID (Hex) | IP | Port | | ---- | ---------- | -- | ---- | -| local | 424242424242424242 | - | - | +| local | 424242424242424242 | - | - | | remote | 6172697374615F6970 | 1.1.1.1 | - | | remote | DEADBEEFCAFE123456 | 2.2.2.2 | 1337 | From c61a518b14280bf691f6d981df7f2e82174bf60d Mon Sep 17 00:00:00 2001 From: gmuloc Date: Thu, 5 May 2022 10:48:58 +0200 Subject: [PATCH 13/14] Refactor(eos_cli_config_gen): address PR comments * Rename port to udp_port * Fix engine_id description (engine_name -> engine_id) * Move remote engineIDs after contact and location to match CLI * Move the * Simplify documentation/snmp-settings.j2 as per PR * Fix documentation/snmp-settings.j2 engineIDs table * Fix the test input variables to accommodate the changes * Run the test suite to update the expected output Did not: * update udp port descirption * change the README.md info for remote engineIDs address --- .../documentation/devices/snmp.md | 6 ++--- .../intended/configs/snmp.cfg | 4 ++-- .../inventory/host_vars/snmp.yml | 2 +- .../avd/roles/eos_cli_config_gen/README.md | 8 +++---- .../templates/documentation/snmp-settings.j2 | 10 ++++----- .../templates/eos/snmp-settings.j2 | 22 +++++++++---------- 6 files changed, 25 insertions(+), 27 deletions(-) diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md index 6f6fa94a97c..a7785a23943 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/snmp.md @@ -60,7 +60,7 @@ interface Management1 ### SNMP EngineID Configuration | Type | EngineID (Hex) | IP | Port | -| ---- | ---------- | -- | ---- | +| ---- | -------------- | -- | ---- | | local | 424242424242424242 | - | - | | remote | 6172697374615F6970 | 1.1.1.1 | - | | remote | DEADBEEFCAFE123456 | 2.2.2.2 | 1337 | @@ -141,10 +141,10 @@ interface Management1 ```eos ! snmp-server engineID local 424242424242424242 -snmp-server engineID remote 1.1.1.1 6172697374615F6970 -snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server contact DC1_OPS snmp-server location DC1 +snmp-server engineID remote 1.1.1.1 6172697374615F6970 +snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT snmp-server ipv4 access-list onur snmp-server ipv6 access-list SNMP-MGMT vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg index 486d009cf54..c3db1f52c45 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/snmp.cfg @@ -5,10 +5,10 @@ transceiver qsfp default-mode 4x10G hostname snmp ! snmp-server engineID local 424242424242424242 -snmp-server engineID remote 1.1.1.1 6172697374615F6970 -snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server contact DC1_OPS snmp-server location DC1 +snmp-server engineID remote 1.1.1.1 6172697374615F6970 +snmp-server engineID remote 2.2.2.2 udp-port 1337 DEADBEEFCAFE123456 snmp-server ipv4 access-list SNMP-MGMT vrf MGMT snmp-server ipv4 access-list onur snmp-server ipv6 access-list SNMP-MGMT vrf MGMT diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml index 84563fd7284..5f5f089f47e 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/inventory/host_vars/snmp.yml @@ -9,7 +9,7 @@ snmp_server: address: 1.1.1.1 - id: DEADBEEFCAFE123456 address: 2.2.2.2 - port: 1337 + udp_port: 1337 contact: DC1_OPS location: DC1 communities: diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index eab0ea16747..86ac08f4c38 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2319,11 +2319,11 @@ sflow: ```yaml snmp_server: engine_ids: - local: < engine_name in hex > + local: < engine_id in hex > remotes: - - id: < engine_name in hex > + - id: < engine_id in hex > address: < hostname_or_ip_of_remote_engine > - port: < udp_port > + udp_port: < udp_port > contact: < contact_name > location: < location > communities: @@ -2383,7 +2383,7 @@ snmp_server: version: < v1 | v2c | v3 > # For a local user (i.e. no remote_ip), use the local engine_id # For a remote user, use the remote engine_id - localized: < engine_name in hex > + localized: < engine_id in hex > auth: < hash_algorithm > auth_passphrase: < hashed_auth_passphrase if localized is used else cleartext auth_passphrase > priv: < encryption_algorithm > diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 index bf0c8a31e1a..2fffdd7ec0e 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/documentation/snmp-settings.j2 @@ -29,16 +29,14 @@ ### SNMP EngineID Configuration | Type | EngineID (Hex) | IP | Port | -| ---- | ---------- | -- | ---- | +| ---- | -------------- | -- | ---- | {% if snmp_server.engine_ids.local is arista.avd.defined %} | local | {{ snmp_server.engine_ids.local }} | - | - | {% endif %} -{% for engine_id in snmp_server.engine_ids.remotes %} +{% for engine_id in snmp_server.engine_ids.remotes | arista.avd.default([]) %} {% if engine_id.id is arista.avd.defined and engine_id.address is arista.avd.defined %} -{% set row_id = engine_id.id | arista.avd.default('-') %} -{% set row_address = engine_id.address | arista.avd.default('-') %} -{% set row_port = engine_id.port | arista.avd.default('-') %} -| remote | {{ row_id }} | {{ row_address }} | {{ row_port }} | +{% set row_udp_port = engine_id.udp_port | arista.avd.default('-') %} +| remote | {{ engine_id.id }} | {{ engine_id.address }} | {{ row_udp_port }} | {% endif %} {% endfor %} {% endif %} diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 index 1136c84cf7b..cb3e4b7fd56 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/templates/eos/snmp-settings.j2 @@ -1,27 +1,27 @@ {# eos - SNMP Settings#} {% if snmp_server is arista.avd.defined %} ! -{% if snmp_server.engine_ids is arista.avd.defined %} -{% if snmp_server.engine_ids.local is arista.avd.defined %} +{% if snmp_server.engine_ids.local is arista.avd.defined %} snmp-server engineID local {{ snmp_server.engine_ids.local }} -{% endif %} +{% endif %} +{% if snmp_server.contact is arista.avd.defined %} +snmp-server contact {{ snmp_server.contact }} +{% endif %} +{% if snmp_server.location is arista.avd.defined %} +snmp-server location {{ snmp_server.location }} +{% endif %} +{% if snmp_server.engine_ids.remotes is arista.avd.defined %} {% for engine_id in snmp_server.engine_ids.remotes %} {% if engine_id.id is arista.avd.defined and engine_id.address is arista.avd.defined %} {% set remote_engine_ids_cli = "snmp-server engineID remote " ~ engine_id.address %} -{% if engine_id.port is arista.avd.defined %} -{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " udp-port " ~ engine_id.port %} +{% if engine_id.udp_port is arista.avd.defined %} +{% set remote_engine_ids_cli = remote_engine_ids_cli ~ " udp-port " ~ engine_id.udp_port %} {% endif %} {% set remote_engine_ids_cli = remote_engine_ids_cli ~ " " ~ engine_id.id %} {{ remote_engine_ids_cli }} {% endif %} {% endfor %} {% endif %} -{% if snmp_server.contact is arista.avd.defined %} -snmp-server contact {{ snmp_server.contact }} -{% endif %} -{% if snmp_server.location is arista.avd.defined %} -snmp-server location {{ snmp_server.location }} -{% endif %} {% if snmp_server.ipv4_acls is arista.avd.defined %} {% for acl in snmp_server.ipv4_acls %} {% set acl_cli = "snmp-server ipv4 access-list " ~ acl.name %} From 82f1c1d3e5d1737d349e8cfa25862b17e5f665bb Mon Sep 17 00:00:00 2001 From: gmuloc Date: Thu, 5 May 2022 13:48:26 +0200 Subject: [PATCH 14/14] Refactor(eos_cli_config_gen): fix engineID fields description in README --- .../arista/avd/roles/eos_cli_config_gen/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md index 86ac08f4c38..ed998778cc2 100644 --- a/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md +++ b/ansible_collections/arista/avd/roles/eos_cli_config_gen/README.md @@ -2319,9 +2319,9 @@ sflow: ```yaml snmp_server: engine_ids: - local: < engine_id in hex > + local: < engine_id_in_hex > remotes: - - id: < engine_id in hex > + - id: < engine_id_in_hex > address: < hostname_or_ip_of_remote_engine > udp_port: < udp_port > contact: < contact_name > @@ -2383,7 +2383,7 @@ snmp_server: version: < v1 | v2c | v3 > # For a local user (i.e. no remote_ip), use the local engine_id # For a remote user, use the remote engine_id - localized: < engine_id in hex > + localized: < engine_id_in_hex > auth: < hash_algorithm > auth_passphrase: < hashed_auth_passphrase if localized is used else cleartext auth_passphrase > priv: < encryption_algorithm >