In Junos quando si utilizza a show route
, vengono visualizzate le tabelle di routing, a partire da inet.0 (tabella di routing globale) e quindi elencando ogni VRF in ordine alfabetico.
Sto seguendo un comando simile, per il seguente motivo, la nuova distribuzione WAN: ingegnere remoto per verificare la connettività VRF senza collegare la LAN, quindi desidero elencare i percorsi obbligatori che sono obbligatori in ciascun VRF (ad es. 0/0).
So di poterlo fare con, show ip bgp vpnv4 all
ma questo non mostra la tabella di routing globale e che è attualmente utilizzato per la gestione.
in Junos avrei eseguito show route 0/0
che mostrerebbe tutte le occorrenze del percorso specificato in ogni VRF sul dispositivo incluso inet.0
iank@r1> show route 0/0 exact terse
vrf1.inet.0: 99 destinations, 105 routes (99 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
A Destination P Prf Metric 1 Metric 2 Next hop AS path
* 0.0.0.0/0 B 170 100 0 >172.31.30.2 64512 I
vrf2.inet.0: 362 destinations, 408 routes (362 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
A Destination P Prf Metric 1 Metric 2 Next hop AS path
* 0.0.0.0/0 B 170 100 >172.31.7.2 64999 I
vrf3.inet.0: 658 destinations, 711 routes (658 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
A Destination P Prf Metric 1 Metric 2 Next hop AS path
* 0.0.0.0/0 B 170 100 >172.31.12.2 64999 I
vrf4.inet.0: 377 destinations, 423 routes (377 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
A Destination P Prf Metric 1 Metric 2 Next hop AS path
* 0.0.0.0/0 B 170 100 >172.31.3.2 64999 I
mi sto perdendo un modo davvero ovvio per raggiungere questo obiettivo?