i want to configure Ethernet Channel between SRX1400 and Cisco Switch 4500, i did the following configuration but still Ethernet Channel not working properly:
SRX1400:
chassis {
aggregated-devices {
ethernet {
device-count 5;
policies {
from-zone untrust to-zone trust10 {
policy untrust-to-trust10 {
match {
source-address any;
destination-address any;
application any;
}
then {
permit;
}
}
}
from-zone trust10 to-zone untrust {
policy trust10-to-untrust {
match {
source-address any;
destination-address any;
application any;
}
then {
permit;
}
}
}
}
zones {
security-zone trust10 {
host-inbound-traffic {
system-services {
all;
}
}
interfaces {
ge-0/0/6.2;
ge-0/0/6.10;
ge-0/0/6.8;
}
security-zone untrust {
interfaces {
ae0.2 {
host-inbound-traffic {
system-services {
all;
}
}
}
ae0.8 {
host-inbound-traffic {
system-services {
all;
}
}
}
ae0.10 {
host-inbound-traffic {
system-services {
all;
}
}
}
}
}
}
}
interfaces {
ge-0/0/2 {
gigether-options {
802.3ad ae0;
}
}
ge-0/0/3 {
gigether-options {
802.3ad ae0;
}
}
ge-0/0/4 {
gigether-options {
802.3ad ae0;
}
}
ge-0/0/5 {
gigether-options {
802.3ad ae0;
}
}
ge-0/0/6 {
vlan-tagging;
unit 2 {
family bridge {
interface-mode trunk;
vlan-id-list 2;
}
}
unit 8 {
family bridge {
interface-mode trunk;
vlan-id-list 8;
}
}
unit 10 {
family bridge {
interface-mode trunk;
vlan-id-list 10;
}
}
ae0 {
vlan-tagging;
aggregated-ether-options {
lacp {
active;
}
}
unit 2 {
family bridge {
interface-mode trunk;
vlan-id-list 2;
}
}
unit 8 {
family bridge {
interface-mode trunk;
vlan-id-list 8;
}
}
unit 10 {
family bridge {
interface-mode trunk;
vlan-id-list 10;
}
}
}
irb {
unit 2 {
family inet {
address 10.2.0.222/16;
unit 8 {
family inet {
address 10.8.0.10/16;
}
}
unit 10 {
family inet {
address 10.10.10.10/16;
}
}
bridge-domains {
vlan10 {
domain-type bridge;
vlan-id 10;
routing-interface irb.10;
}
vlan2 {
domain-type bridge;
vlan-id 2;
routing-interface irb.2;
}
}
vlan8 {
domain-type bridge;
vlan-id 8;
routing-interface irb.8;
}
vlan9 {
domain-type bridge;
vlan-id 9;
routing-interface irb.0;
}
Cisco 4500:
interface Port-channel1
switchport
switchport trunk encapsulation dot1q
switchport mode trunk
interface GigabitEthernet3/15
switchport trunk encapsulation dot1q
switchport mode trunk
duplex full
channel-protocol lacp
channel-group 1 mode active
!
interface GigabitEthernet3/16
switchport trunk encapsulation dot1q
switchport mode trunk
duplex full
channel-protocol lacp
channel-group 1 mode active
admin@CIG-HQ# run show lacp interfaces
Aggregated interface: ae0
LACP state: Role Exp Def Dist Col Syn Aggr Timeout Activity
ge-0/0/2 Actor No Yes No No No Yes Fast Active
ge-0/0/2 Partner No Yes No No No Yes Fast Passive
ge-0/0/3 Actor No Yes No No No Yes Fast Active
ge-0/0/3 Partner No Yes No No No Yes Fast Passive
ge-0/0/4 Actor No Yes No No No Yes Fast Active
ge-0/0/4 Partner No Yes No No No Yes Fast Passive
ge-0/0/5 Actor No Yes No No No Yes Fast Active
ge-0/0/5 Partner No Yes No No No Yes Fast Passive
LACP protocol: Receive State Transmit State Mux State
ge-0/0/2 Defaulted Fast periodic Detached
ge-0/0/3 Defaulted Fast periodic Detached
ge-0/0/4 Port disabled No periodic Detached
ge-0/0/5 Port disabled No periodic Detached
admin@CIG-HQ# run show lacp statistics interfaces ae0
Aggregated interface: ae0
LACP Statistics: LACP Rx LACP Tx Unknown Rx Illegal Rx
ge-0/0/2 0 5789 0 0
ge-0/0/3 0 3611 0 0
ge-0/0/4 0 0 0 0
ge-0/0/5 0 0 0 0
#SRX#ethernetchannel#LACP#cisco#SRX1400