Exclusively for TechExams members for Infosec Boot Camps starting before April 30, 2026
Deadmaster200 wrote: Well, going for BSCI on Tuesday. Just a quick question concerning simulation question. Let's say you have a simple 3 router scenario and you are told to redistribute between EIGRP and ISIS or whatever. The question does not specifically say to redistribute connected routes. It just has some specifics like the metric for EIGRP and level 1 routes only from ISIS. Should I go ahead and red connected or not? Is it just common sense that you need to red connected for everything to work properly? Or, should I just follow the exact directions of the question? Thanks
>enable Password: #config t (config)#int fa0/0 (config-if)#ip address 172.16.0.1 255.255.0.0 (config-if)#no shut (config-if)#exit (config)#int fa0/1 (config-if)#ip address 192.168.1.1 255.255.255.0 (config-if)#no shut (config-if)#exit (config)#router rip (config-router)#network 192.168.1.0 (config-router)#exit (config)#exit #
#config t (config)#router rip (config-router)#network 172.16.0.0 (config-router)#exit (config)#exit #
#config t (config)#router rip (config-router)#no network 172.16.0.0 (config-router)#exit (config)#router ospf 2 (config-router)#network 172.16.0.0 0.0.255.255 area 0 (config-router)#exit (config)#exit #
------------- R1 ----------------- R2 ---------------- R3 ---------------- 10.1.1.0/24 10.1.2.0/24 10.1.3./24 10.1.4.0/24
Hostname R1 ! Interface eth0/0 ip address 10.1.1.1 255.255.255.0 ! Interface eth0/1 ip address 10.1.2.1 255.255.255.0 ! router ospf 1 network 10.1.1.1 0.0.0.0 area 0 network 10.1.2.1 0.0.0.0 area 0 =========== Hostname R2 ! interface eth0/0 ip address 10.1.2.2 255.255.255.0 ! interface eth0/1 ip address 10.1.3.1 255.255.255.0 ! router ospf 1 network 10.1.2.2 0.0.0.0 area 0 ! router eigrp 100 network 10.1.3.1 0.0.0.0 area 0 =============== Hostname R3 ! interface eth0/0 ip address 10.1.3.2 255.255.255.0 ! interface eth0/1 ip address 10.1.4.1 255.255.255.0 ! router eigrp 100 network 10.1.3.2 0.0.0.0 network 10.1.4.1 0.0.0.0
R2 ========= router ospf 1 redistribute eigrp 100 subnets ! router eigrp 100 redistribute ospf 1 metric 1500 1500 255 1 1500
Exclusively for TechExam members. Applies to boot camps starting before April 30, 2026.