@@ -476,6 +476,109 @@ configure terminal
476476 area 1 virtual-link router_id_of_frontier_router
477477 exit
478478exit
479+ ```
480+
481+ ### EIGRP
482+
483+ #### Basic Configuration
484+
485+ ``` bash
486+ configure terminal
487+ router eigrp < as_number>
488+ # Explicit Router ID (recommended)
489+ eigrp router-id 1.1.1.1
490+
491+ # Advertise networks
492+ network < network_address> < wildcard_mask>
493+ # Example: network 192.168.1.0 0.0.0.255
494+
495+ # Disable auto-summary (recommended for classless routing)
496+ no auto-summary
497+
498+ # Passive interface (stop sending hellos on LAN-only links)
499+ passive-interface < interface_name>
500+ exit
501+ exit
502+
503+ # Verify
504+ show ip eigrp neighbors
505+ show ip eigrp topology
506+ show ip route eigrp
507+ ```
508+
509+ #### Authentication
510+
511+ ``` bash
512+ configure terminal
513+ # Create key chain
514+ key chain < chain_name>
515+ key 1
516+ key-string < password>
517+ exit
518+ exit
519+
520+ # Apply to interface
521+ interface < interface_name>
522+ ip authentication mode eigrp < as_number> md5
523+ ip authentication key-chain eigrp < as_number> < chain_name>
524+ exit
525+ exit
526+ ```
527+
528+ #### Redistribution
529+
530+ ##### Redistribute Static Routes into EIGRP
531+
532+ ``` bash
533+ configure terminal
534+ router eigrp < as_number>
535+ redistribute static
536+ exit
537+ exit
538+ ```
539+
540+ ##### Redistribute OSPF into EIGRP
541+
542+ ``` bash
543+ configure terminal
544+ router eigrp < as_number>
545+ redistribute ospf < ospf_process_id> metric < bandwidth> < delay> < reliability> < load> < mtu>
546+ # Example: redistribute ospf 1 metric 10000 100 255 1 1500
547+ exit
548+ exit
549+ ```
550+
551+ ##### Redistribute EIGRP into OSPF
552+
553+ ``` bash
554+ configure terminal
555+ router ospf < ospf_process_id>
556+ redistribute eigrp < as_number> subnets
557+ exit
558+ exit
559+ ```
560+
561+ ##### Redistribute RIP into EIGRP
562+
563+ ``` bash
564+ configure terminal
565+ router eigrp < as_number>
566+ redistribute rip metric < bandwidth> < delay> < reliability> < load> < mtu>
567+ # Example: redistribute rip metric 10000 100 255 1 1500
568+ exit
569+ exit
570+ ```
571+
572+ ##### Redistribute Default Route
573+
574+ ``` bash
575+ configure terminal
576+ router eigrp < as_number>
577+ redistribute static
578+ exit
579+ ip route 0.0.0.0 0.0.0.0 < next_hop_ip>
580+ exit
581+ ```
479582
480583#### Scenario: Multi-Router RIP Config (R1-R2-R3)
481584Example corrected configs for a 3-router chain.
0 commit comments