Step 1 indicates that the default GbE flow control value is Enabled . Step 2 indicates that the default AE flow control value is Disabled . Step 3 and 4 indicate that AE member link's flow control value inherits the characteristic from the AE Interface.
+------------+ +------------+ | | | | | |==|== ge-0/0/0========== ge-0/1/0==|==| | | | ae0 ae1 | | | |==|== ge-1/0/0========== ge-1/1/0==|==| | | | | | | GE intf |== ge-0/2/0================ ge-1/2/0==| GE intf | | | | | +------------+ +------------+
interfaces { ge-0/0/0 { description "member link of ae0"; gigether-options { 802.3ad ae0; }} ge-0/1/0 { description "member link of ae1"; gigether-options { 802.3ad ae1; } } ge-1/0/0 { description "member link of ae0"; gigether-options { 802.3ad ae0; } } ge-1/1/0 { description "member link of ae1"; gigether-options { 802.3ad ae1; } } ae0 { description "Aggregate interface ae0"; unit 0; } ae1 { description "Aggregate interface ae1"; unit 0; } ge-0/2/0 { description "GbE interface"; unit 0; } ge-1/2/0 { description "GbE interface"; unit 0; }}
# run show interfaces ge-0/2/0 |match Flow Flow control: Enabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^ # run show interfaces ge-1/2/0 |match Flow Flow control: Enabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^
# run show interfaces ae0 |match Flow Flow control: Disabled, Minimum links needed: 1, Minimum bandwidth needed: 0 ^^^^^^ # run show interfaces ge-0/0/0 |match Flow Flow control: Disabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^ # run show interfaces ge-1/0/0 |match Flow Flow control: Disabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^
# set interfaces ae0 aggregated-ether-options flow-control # show |compare [edit interfaces ae0] + aggregated-ether-options { + flow-control; + } # commit commit complete # run show interfaces ae0 |match Flow Flow control: Enabled, Minimum links needed: 1, Minimum bandwidth needed: 0 ^^^^^^ # run show interfaces ge-0/0/0 |match Flow Flow control: Enabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^ # run show interfaces ge-1/0/0 |match Flow Flow control: Enabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^
# delete interfaces ae0 aggregated-ether-options flow-control # show |compare [edit interfaces ae0] - aggregated-ether-options { - flow-control; - } # commit commit complete # run show interfaces ae0 |match Flow Flow control: Disabled, Minimum links needed: 1, Minimum bandwidth needed: 0 ^^^^^^ # run show interfaces ge-0/0/0 |match Flow Flow control: Disabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^ # run show interfaces ge-1/0/0 |match Flow Flow control: Disabled, Auto-negotiation: Enabled, Remote fault: Online ^^^^^^