Posts: 5
Threads: 1
Joined: May 2019
Reputation:
1
The existing configs in this sim don't appear to be existing on the R10 or R20 routers.
Should they already be there or do we have to configure this?
TIA
Terry
Posts: 12
Threads: 5
Joined: Jan 2026
Reputation:
0
First step is to create int tunn 0 on both R10 and R20.
R10:
interface tunnel0
vrf forwarding CORP
ip address 10.100.100.1 255.255.255.0
tunnel source Ethernet0/1
no shut
R20:
interface tunnel0
vrf forwarding CORP
ip address 10.100.100.2 255.255.255.0
tunnel source Ethernet0/2
no shut
Now you can do first task fo extending VRF
Source and VRF are already added with above from config. You will need to add the destinations.
R10:
int tunn 0
tunnel destination 10.10.2.1
R20:
int tunn 0
tunnel destination 10.10.1.1
Vrf ping should work now
For task 2 just make sure you check existing crypto ipsec profiles. There is a difference in captialization between R10 and R20.
Task 3 results on walkthrough look good. Could also add show ip route vrf CORP just for verification.
Posts: 240
Threads: 2
Joined: Jan 2023
Reputation:
14
The missing existing tunnel configs and IPSEC profile name issue have been resolved. You can download the lab again and try it. Thank you!
Posts: 12
Threads: 5
Joined: Jan 2026
Reputation:
0
Thank you. I'll try it again later today.