Create Date: Feb 26 2012 12:03AM
Hello, friends!
 I have some problem with configure my ex670 (EXOS12.6.1.3, Advanced Edge)... I need mirror, separate and filter traffic from some VLANs between two ports. I create 2 policy files,
 P-FLOW1.pol
 entry FLOW-TCP-SYN-1 {
 if {
 source-address 0.0.0.0/0;
 protocol tcp;
 source-port <= 16384;
 TCP-flags SYN;
 } then {
 permit;
 }
 }
 entry FLOW-TCP-SYN-2 {
 if {
 source-address 0.0.0.0/0;
 protocol tcp;
 destination-port <= 16384;
 TCP-flags SYN;
 } then {
 permit;
 }
 }
 entry FLOW-ALL-1 {
 if {
 source-address 0.0.0.0/0;
 } then {
 deny;
 }
 }
 
 P-FLOW2.pol
 entry FLOW-UDP-PORTS-1 {
 if {
 source-address 0.0.0.0/0;
 protocol udp;
 destination-port 9995 - 9997;
 } then {
 deny;
 }
 }
 entry FLOW-UDP-PORTS-2 {
 if {
 source-address 0.0.0.0/0;
 protocol udp;
 source-port 9995 - 9997;
 } then {
 deny;
 }
 }
 entry FLOW-ALL-2 {
 if {
 source-address 0.0.0.0/0;
 } then {
 permit;
 }
 }
 In config:
 enable mirroring to port-list 2, 6 loopback-port 11
 configure mirroring add vlan VLAN11
 configure mirroring add vlan VLAN12
 
 Mirror traffic across P-FLOW1 must follow to port 2, mirror traffic across P-FLOW2 must follow to port 6. I make
 configure access-list P-FLOW1 port 2 egress
 but switch get Error: ACL install operation failed - conditions specified in rule "FLOW-TCP-SYN-1" cannot be satisfied by hardware on vlan *, port 2
 I need help!... Maybe there is another way to solve the problem?
  (from Denis_A.P.)