Hi, Just been building a copy of our production system in vagrant to test upgrading to the latest version, in order to resolve an issue we were having.
In our current config we have: group "core" { local-address $localaddr remote-as xxxxxx announce all neighbor x.x.x.x { descr "router-a" } neighbor x.x.x.x { descr "router-b" } } >From the upgrade guide it says: In OpenBSD 6.4, the announce keyword was deprecated in bgpd.conf(5). It has now been removed and must be replaced with export. We also have another group with announce none Is it fair to suggest that removing the announce all will be the same as not having it in >= 6.4, and that we replace announce none with export none. Probably a stupid question, but I only touch BGP occasionally, and was just hoping to understand in more detail. The group core is our own internal bgp speakers, each of these also have transit connections too. All our config is templated using ansible, so we can easily adjust the config based on the actual version. Probably worth saying we are running on 6.6 with patches applied, in the test environment. Thanks Richard