IPv6 Access-list on Cisco IOS

Laz,

Sure…I think CoPP is my issue, doing a lab out of a Tshoot WB…I just need to understand why EIGRP Neighborship works when the deny is in place…attaching configs for both routers and the topology.

IPv6%20ACL

##################################
############R2####################
##################################

   !
     hostname R2
     !
     boot-start-marker
     boot-end-marker
     !
     !
     vrf definition CustA
      rd 122.1.1.2:100
      route-target export 100:100
      route-target import 100:100
      route-target import 200:200
      !
      address-family ipv4
       export map vrfcusta
      exit-address-family
      !
      address-family ipv6
     exit-address-family
    !
     class-map match-all default
      match access-group name default
     !
     policy-map default
      class default
       police 8000 conform-action drop  exceed-action drop  violate-action drop
     !
     interface GigabitEthernet0/0.210
      encapsulation dot1Q 210
      vrf forwarding CustA
      ip address 10.245.2.4 255.255.255.254
      ipv6 address 2001:10:245:2::4/127
     !
     router eigrp CustA
      !
      address-family ipv6 unicast vrf CustA autonomous-system 925
       !
       af-interface default
        authentication mode hmac-sha-256 v6PASS!
       exit-af-interface
       !
       topology base
       exit-af-topology
      exit-address-family
     !
    ipv6 access-list default
    permit 88 any any
    control-plane host
     !
     !
     control-plane
     service-policy input default
     !

###############################
###########R10#################
###############################

!
interface GigabitEthernet0/0.210
 encapsulation dot1Q 210
 ip address 10.245.2.5 255.255.255.254
 ipv6 address 2001:10:245:2::5/127
!
router eigrp XXX_DOT_COM
 !
 address-family ipv6 unicast autonomous-system 925
  !
  af-interface default
   authentication mode hmac-sha-256 v6PASS!
  exit-af-interface
  !
  topology base
  exit-af-topology
 exit-address-family
!