Passive-Interface Command on CISCO Router/Switch

Command Passive-Interface Default Use This command prevents EIGRP from forming adjacencies on specified interfaces on the router. Using no passive-interface default will allow EIGRP communication. Syntax Router(config-router)#passive-interface <interface> Example In this example, we will use passive-interface default to block all EIGRP adjacencies. Then we will allow communication through R2’s Fa0/0 R2(config)#do show …

Distance Command on CISCO Router/Switch

Command Distance Use This command allows your to change the administrative distance for select EIGRP routes. Syntax Router(config-router)#distance <AD> <source IP> <wildcard mask> <access-list> Options <Administrative Distance> Sets the administrative distance for the selected routes <source IP> Source IP the route is received from <wildcard mask> Specifies a …

Maximum-Paths Command on CISCO Router/Switch

Command Maximum-Paths Use Controls how many equal cost paths EIGRP will loadbalance with. EIGRP can now support up to 16 paths if desired. Syntax Router(config-router)#maximum-path <1-16> Example In this example we will change the number of EIGRP maximum paths to 6. R1(config)#router eigrp 100 R1(config-router)# maximum-paths 6

Variance (EIGRP) Command on CISCO Router/Switch

Command Variance (EIGRP) Use Allows EIGRP to install unequal load balancing to the routing table. Syntax Router(config-router)#variance Example In this example, we will configure R4 to utilize both links to reach R5’s loopback networks. Currently we have a basic EIGRP setup for this example R4 router eigrp 222 …

Eigrp Router-ID Command on CISCO Router/Switch

Command EIGRP Router-ID Use This command manually sets the router-id for EIGRP. This is used just for administrative purposes and doesn’t affect EIGRP’s operation, since EIGRP keeps track of neighbors by their IP addresses. Syntax Router(config-router)#eigrp router-id <ID> Example In this example, we will change EIGRP’s router-id on …

Network Command on CISCO Router/Switch

Command Network Use Specifies which interfaces will participate in the EIGRP process. Syntax Router(config-router)#network <ip address> OR Router(config-router)#network <ip address> <wildcard> Example In this example, we will configure EIGRP 100 on all routers in the topology. R1(config)#router eigrp 100 R1(config-router)#no auto R1(config-router)#network 10.4.4.4 R1(config-router)#network 1.1.1.1 R1(config-router)#do sh run | …

Distance Eigrp Command on CISCO Router/Switch

Command Distance EIGRP Use This command changes the administrative distance for EIGRP routes. Syntax Router(config-router)#distance eigrp <internal distance> <external distance> Example In this example, we will change the EIGRP administrative distance to 110. Currently, we see EIGRP is at its default administrative distance of 90. R1(config)#do show ip route eigrp …

Passive-Interface Default Command on CISCO Router/Switch

Command Passive-Interface Default Use This command prevents EIGRP from forming adjacencies on all interfaces on the router. Using no passive-interface default will allow EIGRP communication. Syntax Router(config-router)#passive-interface default Example In this example, we will use passive-interface default to block all EIGRP adjacencies. Afterwards, we will allow communication through R2’s fa0/0. R2(config)#do show …

Distribute-List Command on CISCO Router/Switch

Command Distribute-List Use Allows you to filter routes from the routing table. For CCNA purposes, this is usually done through access lists. Syntax Router(config-router)#distribute-list <list> <in/out> OR Router(config-router)#distribute-list <list> <in/out> <interface> Options <list> Access list <in/out> Whether the router is receiving or sending the route Example In this …

No Auto-Summary Command on CISCO Router/Switch

Command No Auto-Summary Use Disables EIGRP’s default behavior to advertise networks at their classful boundary. Syntax Router(config-router)#no auto-summary Example In this example, we will disable auto-summary in the EIGRP process and observe the difference. First we will enable EIGRP on all routers for all links. R1(config)#router eigrp 100 …