Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VLAN Mirror on an 8600

Status
Not open for further replies.

reubanks

Technical User
Aug 29, 2005
5
0
0
US
Has anybody tried this? Has anyone mirrored a VLAN on an 8600 to a single Gig port?
I don't have a spare or a lab to try this.
Thanks
 
This is a example about filtering mirror. You could do it using this example.

filter act 10 create
filter act 10 ip srcIp,dstIp
filter act 10 apply

filter acl 2 create inPort act 10 name "ACL-mirror"
filter acl 2 port add 2/1-2/30,9/1-9/23,9/25-9/48 # In this low you can add port or vlan
filter acl 2 ace 2 create name "mirror"
filter acl 2 ace 2 action permit
filter acl 2 ace 2 debug mirror enable
filter acl 2 ace 2 ip src-ip eq 10.11.0.1-10.11.254.254
filter acl 2 ace 2 ip dst-ip eq 0.0.0.1-255.255.255.255
filter acl 2 ace 2 enable

create in-port 9/1 out-port 9/24 mode rxFilter enable true
create in-port 9/25 out-port 9/24 mode rxFilter enable true
create in-port 2/1 out-port 9/24 mode rxFilter enable true
create in-port 2/11 out-port 9/24 mode rxFilter enable true
create in-port 2/21 out-port 9/24 mode rxFilter enable true
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top