I just wanted to give an update on where I'm at with this and the steps I took to get there. This is what it looks like now.
filer a (VMware & NFS Traffic)
e0a e0b
\ /
vif0a
____|____
| |
vif0a-90 vif0a-101 vlans 90 and 101
|________|
|
Port 23 Port 24
|________|
|
LACP Trunk on the switch -----> vlan 90 TAGGED
-----> vlan 101 TAGGED
-----> All other vlans NO
filer b (CIFS)
e0a e0b
\ /
vif0b
____|____
| |
vif0b-90 vif0b-101 vlans 90 and 101 (vlan 101 is there just in case of a takover)
|________|
|
Port 21 Port 22
|________|
|
LACP Trunk -----> vlan 90 TAGGED
-----> vlan 101 TAGGED
-----> All other vlans NO
Commands to get to this point:
From BMC
bring down all nics - ifconfig e0a down / ifconfig e0b down
vif create lacp vif0a -b ip e0a e0b
vlan create vif0a 90 101
ifconfig vif0a-90 10.x.x.x netmask 255.255.255.0 (fill in actual IP address and correct netmask)
ifconfig vif0a-101 10.x.x.x netmask 255.255.255.0 (fill in actual IP address and correct netmask)
Repeat for controller b
From BMC
bring down all nics - ifconfig e0a down / ifconfig e0b down
vif create lacp vif0b -b ip e0a e0b
vlan create vif0b 90 101
ifconfig vif0b-90 10.x.x.x netmask 255.255.255.0 (fill in actual IP address and correct netmask)
ifconfig vif0b-101 10.x.x.x netmask 255.255.255.0 (fill in actual IP address and correct netmask)
vlans and network configuration seem to be working correctly on the netapp side of things. Now it's on to VMware virtual networking and vlans. Thanks for the help. Do I seem to be missing anything?