Okay, so after a little more digging I have another question about this. The KB shows that this command is in support of MLAG ports (ie: the downstream connections to the MLAG pair) using LACP (like a switch with an LACP split between MLAG peers). In one of the KB docs, the command simply says "configure mlag peer mac " but in another (as above) it shows "lacp-mac" as the argument.
Since MLAG Peer (ISC) and MLAG Port (downstream LACP) don't seem related, I'm a little confused. Does this command get executed on each peer (naming the other) like other MLAG peer commands? The document references the LACP actor address, but I'm not fully understanding how these relate... Here's my config (two single units at core, stack of 2 remote switches):
SW1
en sharing 1:15 group 1:15,1:16 algorithm address-based L3_L4 lacp
create vlan v4001-isc
config vlan v4001-isc tag 4001
config vlan v4001-isc add port 1:15 tag
config vlan v4001-isc ipaddress 1.1.1.1/30
create mlag peer "core-sw2"
config mlag peer “core-sw2” ipaddress 1.1.1.2
config mlag peer "core-sw2" lacp_mac 02:04:96:a2:02:b4
SW2
en sharing 1:15 group 1:15,1:16 algorithm address-based L3_L4 lacp
create vlan v4001-isc
config vlan v4001-isc tag 4001
config vlan v4001-isc add port 1:15 tag
config vlan v4001-isc ipaddress 1.1.1.2/30
create mlag peer "core-sw1"
config mlag peer “core-sw1” ipaddress 1.1.1.1
config mlag peer "core-sw1" lacp_mac 02:04:96:a2:02:b4
LACP from remote switch to both core switches (both cores 1:1 remote 1:1/2:1)
REMOTE SW1
en sharing 1:1 group 1:1,2:1 algorithm address-based L3_L4 lacp
config vlan... port 1:1 tag
MLAG Port SW1
en mlag port 1:1 peer "core-sw2” id 1
MLAG Port SW2
en mlag port 1:1 peer "core-sw1" id 1
Is that it?