Its Bug on BGP Vyos 1.4-rolling-202206051402?

123.drawio (1)

I have BGP topology like that,
This is bgp configuration on R1:
bgp {
address-family {
ipv4-unicast {
network 10.10.10.0/30 {
}
network 192.168.1.0/24 {
}
}
}
local-as 65432
neighbor 10.10.10.2 {
remote-as 65431
}
}

And this is in R2:
bgp {
address-family {
ipv4-unicast {
network 10.10.10.0/30 {
}
network 192.168.2.0/24 {
}
}
}
local-as 65431
neighbor 10.10.10.1 {
remote-as 65432
}
}

But when i run command show ip bgp summary i get print text like that:
% No BGP neighbors found in VRF default

Please help me, Is there any missing configuration?

You should add address-family for neighbors

1 Like

example command sir?

Mate, don’t make it so hard on yourself and check out the documentation :wink:

https://docs.vyos.io/en/latest/configuration/protocols/bgp.html#peer-parameters

3 Likes

@j.route1 @Viacheslav Thank you for the information uncle, I was very confused when using Vyos because this was my first time using it. Once again, thank you, now you can connect to BGP peering.

Haha, I’m glad I could help, but I must say, being called ‘uncle’ makes me feel wise beyond my years! Just remember, in the world of networking, there are no nieces or nephews, only peers - especially when it comes to BGP peering! Keep exploring VyOS; you’re doing great! :wink:

3 Likes

Also if you are still running 1.4-rolling-202206051402 I think its about time to update :slight_smile:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.