diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-10-06 09:44:14 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-10-06 09:44:14 +0000 |
commit | 14a682bc20346d7ea2cf97d0cd85ab2529bc6678 (patch) | |
tree | 63eadf8ca137c3f4f818891e35d4e862e2581c93 /usr.sbin/bgpd/bgpd.conf.5 | |
parent | 59a167a9fda55e56eb07cea2ecdcdd5bd2158cf8 (diff) |
Add config knobs to enable/disable individual BGP capabilities per neighbor.
e.g. announce refresh no. With this be more aggressive when announcing our
capabilities and enable all of them by default. If there are troubles with
some neighbors adding the following config lines should bring you back
to the old behaviour:
announce refresh yes # was already on by default
announce restart no
announce as-4byte no # was only set on sessions to peers with 4byte AS nums
OK henning and sthen
Diffstat (limited to 'usr.sbin/bgpd/bgpd.conf.5')
-rw-r--r-- | usr.sbin/bgpd/bgpd.conf.5 | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.conf.5 b/usr.sbin/bgpd/bgpd.conf.5 index 976beae44ba..476171ea7aa 100644 --- a/usr.sbin/bgpd/bgpd.conf.5 +++ b/usr.sbin/bgpd/bgpd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bgpd.conf.5,v 1.96 2009/09/28 08:25:25 sthen Exp $ +.\" $OpenBSD: bgpd.conf.5,v 1.97 2009/10/06 09:44:13 claudio Exp $ .\" .\" Copyright (c) 2004 Claudio Jeker <claudio@openbsd.org> .\" Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -16,7 +16,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: September 28 2009 $ +.Dd $Mdocdate: October 6 2009 $ .Dt BGPD.CONF 5 .Os .Sh NAME @@ -483,6 +483,17 @@ Only routes for that address family and subsequent address family will be announced and processed. .Pp .It Xo +.Ic announce as-4byte +.Pq Ic yes Ns \&| Ns Ic no +.Xc +If set to +.Ic no , +the 4-byte AS capability is not announced and so native 4-byte AS support is +disabled. +The default is +.Ic yes . +.Pp +.It Xo .Ic announce capabilities .Pq Ic yes Ns \&| Ns Ic no .Xc @@ -493,6 +504,29 @@ This can be helpful to connect to old or broken BGP implementations. The default is .Ic yes . .Pp +.It Xo +.Ic announce refresh +.Pq Ic yes Ns \&| Ns Ic no +.Xc +If set to +.Ic no , +the route refresh capability is not announced. +The default is +.Ic yes . +.Pp +.It Xo +.Ic announce restart +.Pq Ic yes Ns \&| Ns Ic no +.Xc +If set to +.Ic no , +the graceful restart capability is not announced. +Currently only the End-of-RIB marker is supported and announced by the +.Ic restart +capability. +The default is +.Ic yes . +.Pp .It Ic demote Ar group Increase the .Xr carp 4 |