Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(eos_cli_config_gen): Add set_overload_bit and authentication to router_isis #3578

Merged
Expand Up @@ -279,12 +279,20 @@ router isis EVPN_UNDERLAY
log-adjacency-changes
mpls ldp sync default
timers local-convergence-delay 15000 protected-prefixes
set-overload-bit on-startup wait-for-bgp timeout 10
advertise passive-only
spf-interval 250 10
authentication mode md5 level-1
authentication mode sha key-id 2 level-2
graceful-restart
graceful-restart t2 level-1 10
graceful-restart t2 level-2 20
graceful-restart restart-hold-time 10
authentication key-id 2 algorithm sha-512 key 0 password
authentication key-id 1 algorithm sha-1 rfc-5310 key 0 password level-1
authentication key-id 1 algorithm sha-1 rfc-5310 key 0 password level-2
authentication key 0 password level-1
authentication key 0 password level-2
!
address-family ipv4 unicast
maximum-paths 4
Expand Down
Expand Up @@ -321,6 +321,8 @@ router isis EVPN_UNDERLAY
mpls ldp sync default
timers local-convergence-delay 15000 protected-prefixes
advertise passive-only
authentication mode sha key-id 4
authentication key 0 password
!
address-family ipv4 unicast
maximum-paths 2
Expand Down
Expand Up @@ -77,12 +77,20 @@ router isis EVPN_UNDERLAY
log-adjacency-changes
mpls ldp sync default
timers local-convergence-delay 15000 protected-prefixes
set-overload-bit on-startup wait-for-bgp timeout 10
advertise passive-only
spf-interval 250 10
authentication mode md5 level-1
authentication mode sha key-id 2 level-2
graceful-restart
graceful-restart t2 level-1 10
graceful-restart t2 level-2 20
graceful-restart restart-hold-time 10
authentication key-id 2 algorithm sha-512 key 0 password
authentication key-id 1 algorithm sha-1 rfc-5310 key 0 password level-1
authentication key-id 1 algorithm sha-1 rfc-5310 key 0 password level-2
authentication key 0 password level-1
authentication key 0 password level-2
!
address-family ipv4 unicast
maximum-paths 4
Expand Down
Expand Up @@ -114,6 +114,8 @@ router isis EVPN_UNDERLAY
mpls ldp sync default
timers local-convergence-delay 15000 protected-prefixes
advertise passive-only
authentication mode sha key-id 4
authentication key 0 password
!
address-family ipv4 unicast
maximum-paths 2
Expand Down
Expand Up @@ -62,6 +62,52 @@ router_isis:
index: 211
- prefix: 2001:cafe:155::/64
index: 6211
set_overload_bit:
on_startup:
wait_for_bgp:
enabled: true
timeout: 10
authentication:
both:
key_id:
- id: 2
algorithm: sha-512
key_type: 0
key: password
rfc_5310: false
level_1:
key_type: 0
key: password
mode: md5
rx_disabled: true
emilarista marked this conversation as resolved.
Show resolved Hide resolved
key_id:
- id: 1
algorithm: sha-1
key_type: 0
key: password
rfc_5310: true
- id: 2
algorithm: sha-1
key_type: 0
key: password
rfc_5310: true
level_2:
key_type: 0
key: password
mode: sha
sha:
key_id: 2
key_id:
- id: 1
algorithm: sha-1
key_type: 0
key: password
rfc_5310: true
- id: 2
algorithm: sha-1
key_type: 0
key: password
rfc_5310: true

### Ethernet Interfaces ###
ethernet_interfaces:
Expand Down
Expand Up @@ -16,6 +16,24 @@ router_isis:
maximum_paths: 2
segment_routing_mpls:
enabled: true
authentication:
both:
key_type: 0
key: password
mode: sha
sha:
key_id: 4
level_1:
key_type: 0
key: password
mode: md5
rx_disabled: true
level_2:
key_type: 0
key: password
mode: sha
sha:
key_id: 2

### Ethernet Interfaces ###
ethernet_interfaces:
Expand Down

Large diffs are not rendered by default.