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
(08-05-2025, 01:13 PM)telthenipper Wrote: [ -> ]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
Just took a look at this one. The config they are showing as existing for the loopback interfaces is missing.
(01-29-2026, 01:39 AM)muddytechz Wrote: [ -> ] (08-05-2025, 01:13 PM)telthenipper Wrote: [ -> ]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
Just took a look at this one. The config they are showing as existing for the loopback interfaces is missing.
Just ran through entire config/task to check. If you configure the tunnel interfaces all is good.
Once you get to the crypto task on R20 the profile has a lower case s on the IPsec_Profile but R10 it is capitalized. Other than that it seemed to work as expected.
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.
The missing existing tunnel configs and IPSEC profile name issue have been resolved. You can download the lab again and try it. Thank you!
Thank you. I'll try it again later today.