My 2 cents: "EIGRP Filtering with Per Neighbor AD" change administrative distance for EIGRP internal routes that can be changed on a perprefix basis, but external EIGRP routes cannot.
You can filter internal route with something like that: router eigrp 15 distance 95 15.15.15.1 0.0.0.0 7 index 7 is acl Maybe you can use route-map based to metric route-map FILTER-METRIC match metric 400000 +- 200000 this string mean: metrics in the range are filtered out based on matching the value 400000 plus or less 200000, hence 600000 and 200000 are matched. Or distribute-list that matches prefix list: distribute-list prefix PERMIT_ALL gateway NOT_BB1 in ip prefix- list NOT_BB1 seq 1 deny 15.15.15.1/32 ip pref ix- list NOT_BB1 seq 2 permit 0.0.0.0/0 le 32 ip prefix-list PERMIT_ALL seq 5 permit 0.0.0.0/0 le 32 that string it does not install any updates received from BB1 on the segment 15.15.15.0/24 however allow all else neighbor to that segment. IGP distribute-list the "source" field in the ACL matches the update source of the route, and the "destination" field represents the network address so you can control which networks we are receiving and who we are receiving them from. I hope it help On Sun, Apr 7, 2013, at 12:01 PM, Ray Courtney wrote: > That was the "172.30.200.7 0.0.0.0" bit > > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: 07 April 2013 10:26 > To: Ray Courtney; [email protected]; > [email protected] > Subject: Re: [OSL | CCIE_RS] Changing the distance of EIGRP routes > > Is there an option in distance command under the EIGRP process to > specify the route source (maybe it is missing that is why it is not > working) I know under RIP process there is but in EIGRP not sure > > Regards > > -----Original Message----- > From: "Ray Courtney" <[email protected]> > Sender: [email protected] > Date: Sun, 7 Apr 2013 08:58:18 > To: <[email protected]> > Subject: [OSL | CCIE_RS] Changing the distance of EIGRP routes > > Hi Everyone, > > > > I have come across this problem (Vol 2 Lab 8): > > > > The requirement is to have certain routes showing up as AD 95. > > > > router eigrp 1 > > Distance 95 172.30.200.7 0.0.0.0 90 > > > > access-list 90 permit 10.7.1.0 > > access-list 90 permit 10.7.2.0 > > > > These were External routes at the time and this command did not work. > The only way to change the AD was to change the AD for all External > routes using: distance eigrp 90 95 > > > > Is this a "feature" of the IOS version. > > > > Ray Courtney > > > > _______________________________________________ > For more information regarding industry leading CCIE Lab training, > please visit www.ipexpert.com > > Are you a CCNP or CCIE and looking for a job? Check out > www.PlatinumPlacement.com > > http://onlinestudylist.com/mailman/listinfo/ccie_rs > _______________________________________________ > For more information regarding industry leading CCIE Lab training, please > visit www.ipexpert.com > > Are you a CCNP or CCIE and looking for a job? Check out > www.PlatinumPlacement.com > > http://onlinestudylist.com/mailman/listinfo/ccie_rs -- This message is intended for the individual(s) to whom it is addressed and may contain information that is privileged or confidential. If you are not the addressee you must not read,use or disclose the contents of this email. Whilst all reasonable care has been taken to avoid the transmission of viruses, the recipient should carry out virus and other checks, as they consider appropriate. Myself accepts no responsibility in this regard. _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com Are you a CCNP or CCIE and looking for a job? Check out www.PlatinumPlacement.com http://onlinestudylist.com/mailman/listinfo/ccie_rs
