Evil_TTL> show | s

EIGRP Distribute Lists

Category:Cisco Systems -> Routing and Switching

Diagram:

EIGRP-10.jpg

Output:

R5#sh ip route
Codesconnected- static, RIPmobileBGP
       D 
EIGRPEX EIGRP externalOSPFIA OSPF inter area
       N1 
OSPF NSSA external type 1N2 OSPF NSSA external type 2
       E1 
OSPF external type 1E2 OSPF external type 2
       i 
IS-ISsu IS-IS summaryL1 IS-IS level-1L2 IS-IS level-2
       ia 
IS-IS inter area, * - candidate default, per-user static route
       o 
ODRperiodic downloaded static route

Gateway of last resort is 10.1.0.2 to network 0.0.0.0

     8.0.0.0
/32 is subnetted1 subnets
D       8.8.8.8 [90
/158720] via 10.1.0.200:01:10Vlan600
C    192.168.4.0
/24 is directly connectedLoopback4
     10.0.0.0
/30 is subnetted2 subnets
C       10.1.0.0 is directly connected
Vlan600
D       10.1.0.4 [90
/30720] via 10.1.0.200:01:13Vlan600
C    192.168.0.0
/24 is directly connectedLoopback0
     192.168.1.0
/30 is subnetted1 subnets
C       192.168.1.0 is directly connected
Loopback1
C    192.168.3.0
/24 is directly connectedLoopback3
D
*   0.0.0.0/0 [90/30720] via 10.1.0.200:01:11Vlan600
D    192.168.0.0
/22 is a summary00:04:49Null0
R5
#

R3#sh run | s eigrp
router eigrp 100
 passive
-interface default
 
no passive-interface Vlan600
 no passive
-interface Vlan700
 network 0.0.0.0
 distribute
-list DIST-OUT out vlan 600
R3
#sh ip access-lists
Standard IP access list DIST-OUT
    10 deny   8.8.8.8 
(3 matches)
    
20 permit any (10 matches)
 
If 
you try to use extended ACL in distribute list:
R3(config-router)#distribute-list DIST-OUT-EXT out
This command only accepts named standard IP access-lists.

R5#sh ip route
Codesconnected- static, RIPmobileBGP
       D 
EIGRPEX EIGRP externalOSPFIA OSPF inter area
       N1 
OSPF NSSA external type 1N2 OSPF NSSA external type 2
       E1 
OSPF external type 1E2 OSPF external type 2
       i 
IS-ISsu IS-IS summaryL1 IS-IS level-1L2 IS-IS level-2
       ia 
IS-IS inter area, * - candidate default, per-user static route
       o 
ODRperiodic downloaded static route

Gateway of last resort is 10.1.0.2 to network 0.0.0.0

C    192.168.4.0
/24 is directly connectedLoopback4
     10.0.0.0
/30 is subnetted2 subnets
C       10.1.0.0 is directly connected
Vlan600
D       10.1.0.4 [90
/30720] via 10.1.0.200:03:05Vlan600
C    192.168.0.0
/24 is directly connectedLoopback0
     192.168.1.0
/30 is subnetted1 subnets
C       192.168.1.0 is directly connected
Loopback1
C    192.168.3.0
/24 is directly connectedLoopback3
D
*   0.0.0.0/0 [90/30720] via 10.1.0.200:03:02Vlan600
D    192.168.0.0
/22 is a summary00:06:41Null0 
By privilege15