summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2018-11-04 14:34:01 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2018-11-04 14:34:01 +0000
commit6b1fd62d83841d1a71bb695ee05e41e671e265b8 (patch)
tree4bafc7b68e5fc58197a2867a2879bc94ddc42bcc /usr.sbin/bgpd
parent44fb71c3b91165d95078c3131401f2955039f074 (diff)
Graceful BGP Session Shutdown is a real RFC, add it to the list.
OK job@, benno@
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r--usr.sbin/bgpd/bgpd.815
-rw-r--r--usr.sbin/bgpd/bgpd.h4
2 files changed, 15 insertions, 4 deletions
diff --git a/usr.sbin/bgpd/bgpd.8 b/usr.sbin/bgpd/bgpd.8
index fe499cf46fb..c00836da9a4 100644
--- a/usr.sbin/bgpd/bgpd.8
+++ b/usr.sbin/bgpd/bgpd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bgpd.8,v 1.58 2018/06/13 09:33:51 claudio Exp $
+.\" $OpenBSD: bgpd.8,v 1.59 2018/11/04 14:34:00 claudio Exp $
.\"
.\" Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
.\"
@@ -14,7 +14,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: June 13 2018 $
+.Dd $Mdocdate: November 4 2018 $
.Dt BGPD 8
.Os
.Sh NAME
@@ -423,6 +423,17 @@ control socket
.%R RFC 8212
.%T Default External BGP (EBGP) Route Propagation Behavior without Policies
.Re
+.Pp
+.Rs
+.%A P. Francois
+.%A B. Decraene
+.%A C. Pelsser
+.%A K. Patel
+.%A C. Filsfils
+.%D March 2018
+.%R RFC 8326
+.%T Graceful BGP Session Shutdown
+.Re
.Sh HISTORY
The
.Nm
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h
index 06cc025f16e..bf4232212ff 100644
--- a/usr.sbin/bgpd/bgpd.h
+++ b/usr.sbin/bgpd/bgpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.h,v 1.351 2018/10/31 14:50:07 claudio Exp $ */
+/* $OpenBSD: bgpd.h,v 1.352 2018/11/04 14:34:00 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -834,7 +834,7 @@ struct filter_peers {
#define COMMUNITY_LOCAL_AS -4
#define COMMUNITY_UNSET -5
#define COMMUNITY_WELLKNOWN 0xffff
-#define COMMUNITY_GRACEFUL_SHUTDOWN 0x0000 /* draft-ietf-grow-bgp-gshut */
+#define COMMUNITY_GRACEFUL_SHUTDOWN 0x0000 /* RFC 8326 */
#define COMMUNITY_BLACKHOLE 0x029A /* RFC 7999 */
#define COMMUNITY_NO_EXPORT 0xff01
#define COMMUNITY_NO_ADVERTISE 0xff02