From 66890a5d294ac5cdbcb473e1ad00bdc5036817df Mon Sep 17 00:00:00 2001 From: jdubois Date: Tue, 23 Jun 2020 09:46:02 +0200 Subject: [PATCH] =?UTF-8?q?V=C3=A9rifier=20le=20statut=20des=20routes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoROA.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/HowtoROA.md b/HowtoROA.md index ac263f2e..164b76a3 100644 --- a/HowtoROA.md +++ b/HowtoROA.md @@ -61,4 +61,24 @@ Dans la configuration de BGP, on inclut ce fichier et on indique que faire avec ~~~ include "/var/db/rpki-client/openbgpd" deny quick from ebgp ovs invalid +~~~ + +### Vérifications + +Une fois configuré et exécuté une première fois, le statut des routes peut être vérifié depuis le routeur : + +* Voir les routes reçues ayant un statut invalide, valide, ou inconnu : + +~~~ +bgpctl show rib ovs invalid +bgpctl show rib ovs valid +bgpctl show rib ovs not-found +~~~ + +* Voir les routes reçues et utilisées ayant un statut invalide, valide, ou inconnu : + +~~~ +bgpctl show rib selected ovs invalid +bgpctl show rib selected ovs valid +bgpctl show rib selected ovs not-found ~~~ \ No newline at end of file