Create Date: Mar 7 2013 2:17PM
As far as I can tell, whatever ingresses the switch will be mirrored. If the traffic is dropped, it is dropped after it is duplicated and sent to the mirroring port.
Can you apply an ACL like this:
Switch# edit policy test.pol
type “I” for insert mode
type the following text…
entry AllowThisHostOnly {
if {
ethernet-destination-address XX:XX:XX:XX:XX:XX;
protocol tcp;
source-port ;
} then {
permit;
count counter1;
}
}
type “esc”, “:”, “wq” OR just “ZZ” to save and quit
Apply that access list to the ingress traffic in the port between SW4 and SW5. (configure access-list test port ingress). Run the traffic and look for the show access-list counter command output. Do you see that counter incrementing?
Another question, when you mirror the traffic, do you mirror on ports or VLANs? Have you tried rebooting SW4 or connecting SW5 to SW3 directly if possible? Can you share the packet capture with us?
(from ethernet)