Skip to content

Commit

Permalink
Improve coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxmikant Chintakindi authored and Laxmikant Chintakindi committed Aug 5, 2024
1 parent 72aaa8b commit 0f31dae
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ sFlow is disabled.
| Ethernet68 | Custom_Transceiver_Frequency | access | - | - | - | - |
| Ethernet69 | IP NAT service-profile | access | - | - | - | - |
| Ethernet70 | dot1x_aaa_unresponsive | access | - | - | - | - |
| Ethernet71 | dot1x_aaa_unresponsive1 | access | - | - | - | - |
| Ethernet72 | dot1x_aaa_unresponsive2 | access | - | - | - | - |

*Inherited from Port-Channel Interface

Expand Down Expand Up @@ -1027,6 +1029,23 @@ interface Ethernet70
dot1x aaa unresponsive action traffic allow vlan 10 access-list acl1
dot1x aaa unresponsive eap response success
dot1x mac based access-list
!
interface Ethernet71
description dot1x_aaa_unresponsive1
no shutdown
switchport
dot1x aaa unresponsive phone action apply cached-results timeout 10 hours
dot1x aaa unresponsive action traffic allow vlan 10 access-list acl1
dot1x aaa unresponsive eap response success
dot1x mac based access-list
!
interface Ethernet72
description dot1x_aaa_unresponsive2
no shutdown
switchport
dot1x aaa unresponsive action traffic allow vlan 10 access-list acl1
dot1x aaa unresponsive eap response success
dot1x mac based access-list
```

## BFD
Expand Down Expand Up @@ -1082,6 +1101,8 @@ interface Ethernet70
| Ethernet44 | - | - | - | - | - | - | - | - |
| Ethernet45 | authenticator | auto | - | True | allow vlan 800 | multi-host | True | True |
| Ethernet70 | - | - | - | - | - | - | - | - |
| Ethernet71 | - | - | - | - | - | - | - | - |
| Ethernet72 | - | - | - | - | - | - | - | - |

## Power Over Ethernet (PoE)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,23 @@ interface Ethernet70
dot1x aaa unresponsive eap response success
dot1x mac based access-list
!
interface Ethernet71
description dot1x_aaa_unresponsive1
no shutdown
switchport
dot1x aaa unresponsive phone action apply cached-results timeout 10 hours
dot1x aaa unresponsive action traffic allow vlan 10 access-list acl1
dot1x aaa unresponsive eap response success
dot1x mac based access-list
!
interface Ethernet72
description dot1x_aaa_unresponsive2
no shutdown
switchport
dot1x aaa unresponsive action traffic allow vlan 10 access-list acl1
dot1x aaa unresponsive eap response success
dot1x mac based access-list
!
interface Management1
description oob_management
vrf MGMT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1041,3 +1041,30 @@ ethernet_interfaces:
traffic_allow: true
apply_alternate: true
mac_based_access_list: true
- name: Ethernet71
description: dot1x_aaa_unresponsive1
shutdown: false
dot1x:
aaa:
unresponsive:
eap_response: success
action:
traffic_allow_vlan: 10
traffic_allow_access_list: acl1
phone_action:
apply_cached_results: true
cached_results_timeout:
time_duration: 10
time_duration_unit: hours
mac_based_access_list: true
- name: Ethernet72
description: dot1x_aaa_unresponsive2
shutdown: false
dot1x:
aaa:
unresponsive:
eap_response: success
action:
traffic_allow_vlan: 10
traffic_allow_access_list: acl1
mac_based_access_list: true

0 comments on commit 0f31dae

Please sign in to comment.