思科-使用单个命令显示所有路由


17

在Junos中,当您使用a时,show route它将显示路由表,从inet.0(全局路由表)开始,然后按字母顺序列出每个VRF。

由于以下原因,我正在执行类似的命令,原因如下:新的WAN部署:远程工程师无需插入LAN即可验证VRF连接,因此,我想列出每个VRF中必需的强制路由(例如0/0)。

我知道我可以用实现此目的,show ip bgp vpnv4 all但是这不会显示全局路由表,该表目前用于管理。

在Junos中,我将运行show route 0/0该命令,以显示设备中每个VRF中所有出现的指定路由,包括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

我是否错过了实现这一目标的明显方法?

Answers:


16

show ip route vrf * 显示全局路由表以及所有VRF实例。

sh ip route vrf * 0.0.0.0 显示每个VRF的默认路由。

这显示了每个VRF的默认路由,包括默认VRF。由于此IOS 12.4在显示匹配的路由时不会显示VRF名称,因此在静态路由上添加了路由标签以帮助识别其VRF。

r1#show ip route vrf * 0.0.0.0

超级网0.0.0.0/0的路由条目
  通过“静态”已知,距离1,度量0,候选默认路径
  标签100
  路由描述符块:
  * 192.0.2.2
      路由指标为0,流量共享计数为1
      路线标签100

超级网0.0.0.0/0的路由条目
  通过“静态”已知,距离1,度量0,候选默认路径
  标签200
  路由描述符块:
  * 192.0.2.2
      路由指标为0,流量共享计数为1
      路线标签200

在匹配的路由上显示更长的前缀将显示VRF名称。 `sh ip route vrf * 192.0.2.0较长前缀'。


在12.2(33)SRD和15.1(2)T中,VRF名称与路由一起显示,但省略了“默认”。不知道是什么时候添加的,但是我猜是12.2(33)SRA(大约8年前)。
ytti

3

show ip route 用于IPv4 FIB。

show ipv6 route 用于IPv6 FIB。

VRF路由:

show <ip/ipv6> route vrf <*/vrfName>

当然,*显示所有VRF。


“显示IP路由”实际上并未显示任何VRF路由
DrBru

嗯,他想要VRF路线。我会更新。
Olipro
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.