在Junos中,当您使用show route时,它将显示路由表,该表从inet.0(全局路由表)开始,然后按字母顺序列出每个VRF。
原因,新的WAN部署:远程工程师无需插入LAN即可验证VRF连接,因此我想列出每个VRF中的强制路由(例如0/0)。

我知道我可以使用show ip bgp vpnv4 all实现此功能,但不会显示全局路由表,该表目前用于管理。在Junos中,我将运行show route 0/0,它将在所有VRF中显示指定路由的所有出现情况该设备包括inet.0

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

#1 楼

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

Routing entry for 0.0.0.0/0, supernet
  Known via "static", distance 1, metric 0, candidate default path
  Tag 100
  Routing Descriptor Blocks:
  * 192.0.2.2
      Route metric is 0, traffic share count is 1
      Route tag 100

Routing entry for 0.0.0.0/0, supernet
  Known via "static", distance 1, metric 0, candidate default path
  Tag 200
  Routing Descriptor Blocks:
  * 192.0.2.2
      Route metric is 0, traffic share count is 1
      Route tag 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
13年7月5日在7:51

#2 楼

用于IPv4 FIB的show ip route

用于IPv6 FIB的show ipv6 route

VRF路由:当然
,*显示所有VRF。

评论


“显示ip路由”实际上不显示任何VRF路由

– DrBru
13年7月4日在22:46

嗯,他想要VRF路线。我会更新。

–奥利普
13年7月4日在22:53