問題
- 以下の出力を得られるよう、RT1 に static route を追加で1つだけ設定しなさい
RT1#traceroute 10.1.2.4 source loopback 0
Type escape sequence to abort.
Tracing the route to 10.1.2.4
VRF info: (vrf in name/id, vrf out name/id)
1 10.1.1.2 1 msec 1 msec 0 msec
2 10.1.2.4 1 msec 1 msec *
RT1#traceroute 10.1.4.4 source loopback 0
Type escape sequence to abort.
Tracing the route to 10.1.4.4
VRF info: (vrf in name/id, vrf out name/id)
1 10.1.3.3 1 msec 0 msec 0 msec
2 10.1.4.4 1 msec 1 msec *
構成図

初期 Config
RT1
conf t
!
hostname RT1
!
interface Loopback0
ip address 192.0.2.1 255.255.255.255
!
interface Ethernet0/0
ip address 10.1.1.1 255.255.255.0
no shutdown
!
interface Ethernet0/1
ip address 10.1.3.1 255.255.255.0
no shutdown
!
ip route 0.0.0.0 0.0.0.0 Ethernet0/0 10.1.1.2
!
logging console
!
end
RT2
conf t
!
hostname RT2
!
interface Ethernet0/0
ip address 10.1.1.2 255.255.255.0
no shutdown
!
interface Ethernet0/1
ip address 10.1.2.2 255.255.255.0
no shutdown
!
ip route 10.1.4.0 255.255.255.0 Ethernet0/1 10.1.2.4
ip route 192.0.2.1 255.255.255.255 Ethernet0/0 10.1.1.1
!
logging console
!
end
RT3
conf t
!
hostname RT3
!
interface Ethernet0/0
ip address 10.1.3.3 255.255.255.0
no shutdown
!
interface Ethernet0/1
ip address 10.1.4.3 255.255.255.0
no shutdown
!
ip route 10.1.2.0 255.255.255.0 Ethernet0/1 10.1.4.4
ip route 192.0.2.1 255.255.255.255 Ethernet0/0 10.1.3.1
!
logging console
!
end
RT4
conf t
!
hostname RT4
!
interface Ethernet0/0
ip address 10.1.2.4 255.255.255.0
no shutdown
!
interface Ethernet0/1
ip address 10.1.4.4 255.255.255.0
no shutdown
!
ip route 10.1.1.0 255.255.255.0 Ethernet0/0 10.1.2.2
ip route 192.0.2.1 255.255.255.255 Ethernet0/0 10.1.2.2
!
logging console
!
end