vyos / vyos.vyos

Ansible Network Collection for VyOS
GNU General Public License v3.0
70 stars 64 forks source link

Support VyOS 1.4 in vyos_bgp_global #192

Open FilipK-CZ opened 3 years ago

FilipK-CZ commented 3 years ago
SUMMARY

Add support for VyOS 1.4 BGP configuration

VyOS 1.3 (Equuleus) example:

set protocols bgp 65534 neighbor 192.168.0.2 ebgp-multihop '2'
set protocols bgp 65534 neighbor 192.168.0.2 remote-as '65535'
set protocols bgp 65534 neighbor 192.168.0.2 update-source '192.168.0.1'
set protocols bgp 65534 address-family ipv4-unicast network '172.16.0.0/16'
set protocols bgp 65534 parameters router-id '192.168.0.1'

VyOS 1.4 (sagitta) example:

set protocols bgp local-as 65534
set protocols bgp neighbor 192.168.0.2 ebgp-multihop '2'
set protocols bgp neighbor 192.168.0.2 remote-as '65535'
set protocols bgp neighbor 192.168.0.2 update-source '192.168.0.1'
set protocols bgp address-family ipv4-unicast network '172.16.0.0/16'
set protocols bgp parameters router-id '192.168.0.1'
ISSUE TYPE
COMPONENT NAME

vyos_bgp_global

ADDITIONAL INFORMATION
strifel commented 2 years ago

vyos_bgp_address_family seems to have the same problem.

FilipK-CZ commented 1 year ago

Any update?