グローバルルーティングテーブルとVRF間のスタティックルーティング |
Dynalconf HOME |
Dynamips/Dynagenを使用して、スタティックルートを用いてグローバルルーティングテーブルとVRF間のルーティングを行います。
ip route 192.168.23.0 255.255.255.0 FastEthernet0/1
ip route vrf V1 192.168.12.0 255.255.255.0 FastEthernet0/0 192.168.12.1上記のスタティックルートを以下のように出力インタフェースのみ指定して設定しようとすると 以下のメッセージが出力され設定できない。
R2(config)#ip route vrf V1 192.168.12.0 255.255.255.0 FastEthernet0/0 % For VPN or topology routes, must specify a next hop IP address if not a point-to-point interfaceR3からR2へのtracerouteは一旦、R1を経由する。
R3#traceroute 192.168.12.2 numeric Type escape sequence to abort. Tracing the route to 192.168.12.2 VRF info: (vrf in name/id, vrf out name/id) 1 192.168.23.2 12 msec 16 msec 16 msec 2 192.168.12.1 20 msec 32 msec 72 msec 3 192.168.12.2 104 msec * 80 msec
ip route 192.168.23.0 255.255.255.0 FastEthernet0/1 ip route vrf V1 192.168.12.0 255.255.255.0 Serial1/0
R3#traceroute 192.168.12.1 numeric Type escape sequence to abort. Tracing the route to 192.168.12.1 VRF info: (vrf in name/id, vrf out name/id) 1 192.168.23.2 16 msec 28 msec 16 msec 2 192.168.12.1 40 msec * 24 msec
(0) Dynagen .net file (1) R1 (2) R2 (3) R3
R1 : ping 192.168.23.3 R2 : sh ip route sh ip route vrf V1 R3 : ping 192.168.12.2 traceroute 192.168.12.2 (1) R1 (2) R2 (3) R3
Dynalconf HOME |