Skip to content

Commit

Permalink
Merge branch 'devel' into feat/eos_designs/ntp-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausHolbechArista authored Nov 8, 2023
2 parents e25331d + d8f83f3 commit 61d1beb
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ router bgp 65101
neighbor STARDARD-COMMUNITY send-community standard
neighbor 10.255.251.1 peer group MLAG-IPv4-UNDERLAY-PEER
neighbor 172.31.255.0 peer group IPv4-UNDERLAY-PEERS
neighbor 172.31.255.0 password 7 <removed>
neighbor 172.31.255.2 peer group IPv4-UNDERLAY-PEERS
neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ router bgp 65101
neighbor STARDARD-COMMUNITY send-community standard
neighbor 10.255.251.1 peer group MLAG-IPv4-UNDERLAY-PEER
neighbor 172.31.255.0 peer group IPv4-UNDERLAY-PEERS
neighbor 172.31.255.0 password 7 test1234
neighbor 172.31.255.2 peer group IPv4-UNDERLAY-PEERS
neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS
neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ router_bgp:
neighbors:
- ip_address: 172.31.255.0
peer_group: IPv4-UNDERLAY-PEERS
password: "test1234"
- ip_address: 172.31.255.2
peer_group: IPv4-UNDERLAY-PEERS
- ip_address: 192.168.255.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;prepend_own_disabled</samp>](## "router_bgp.neighbors.[].as_path.prepend_own_disabled") | Boolean | | | | Disable prepending own AS number to AS path |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;description</samp>](## "router_bgp.neighbors.[].description") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;route_reflector_client</samp>](## "router_bgp.neighbors.[].route_reflector_client") | Boolean | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;password</samp>](## "router_bgp.neighbors.[].password") | String | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;passive</samp>](## "router_bgp.neighbors.[].passive") | Boolean | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;shutdown</samp>](## "router_bgp.neighbors.[].shutdown") | Boolean | | | | |
| [<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;update_source</samp>](## "router_bgp.neighbors.[].update_source") | String | | | | Source Interface |
Expand Down Expand Up @@ -800,6 +801,7 @@
prepend_own_disabled: <bool>
description: <str>
route_reflector_client: <bool>
password: <str>
passive: <bool>
shutdown: <bool>
update_source: <str>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14597,6 +14597,10 @@
"type": "boolean",
"title": "Route Reflector Client"
},
"password": {
"type": "string",
"title": "Password"
},
"passive": {
"type": "boolean",
"title": "Passive"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8621,6 +8621,8 @@ keys:
type: str
route_reflector_client:
type: bool
password:
type: str
passive:
type: bool
shutdown:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,8 @@ keys:
type: str
route_reflector_client:
type: bool
password:
type: str
passive:
type: bool
shutdown:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ router bgp {{ router_bgp.as }}
{{ neighbor_rib_in_pre_policy_retain_cli }}
{% endif %}
{% if neighbor.password is arista.avd.defined %}
neighbor {{ neighbor.ip_address }} password 7 {{ neighbor.password | arista.avd.hide_passwords(hide_passwords) }}
neighbor {{ neighbor.ip_address }} password 7 {{ neighbor.password | arista.avd.hide_passwords(hide_passwords) }}
{% endif %}
{% if neighbor.passive is arista.avd.defined(true) %}
neighbor {{ neighbor.ip_address }} passive
Expand Down

0 comments on commit 61d1beb

Please sign in to comment.