ok further question on this - if i let rockstor come up - then implement the team interface and then delete the “Wired connection x” - is there then a way to tell rockstor to use the new interface through a script?
if i let rockstor come up and then execute the following
nmcli connection delete “Wired connection 1”
nmcli connection delete “Wired connection 2”
then create /etc/teamd/team0.conf
{
"device": "team0",
"runner": {
"name": "lacp",
"active": true,
"fast_rate": true,
"tx_hash": ["layer2", "layer3", "layer4"]
},
"link_watch": {"name": "ethtool"},
"ports": {
"eth0": {},
"eth1": {}
}
}
and then execute
ip link set down eth0
ip link set down eth1
teamd -g -d -f /etc/teamd/team0.conf
ip addr add 192.168.1.2/24 dev team0
ip link set up team0
ip link set mtu 9000 dev team0
then the team0 interface comes up just fine and i can access the Rockstor management GUI on 192.168.1.2 - all good
but the network management screen in rockstor shows up like this - it shows the team0 link as unmanaged but still seems to use it
do i even need to attempt to make the team0 interface “managed”?