Verify all LIFS are on home ports after ONTAP upgrade
Suggest changes
During the reboot that occurs as part of the ONTAP upgrade process, some LIFs might be migrated from their home ports to their assigned failover ports. After an upgrade, you need to enable and revert any LIFs that are not on their home ports.
Steps
-
Display the status of all LIFs:
network interface show -fields home-port,curr-port
If Status Admin is "down" or Is home is "false" for any LIFs, continue with the next step.
-
Enable the data LIFs:
network interface modify {-role data} -status-admin up
-
Revert LIFs to their home ports:
network interface revert *
-
Verify that all LIFs are in their home ports:
network interface show
This example shows that all LIFs for SVM vs0 are on their home ports.
cluster1::> network interface show -vserver vs0 Logical Status Network Current Current Is Vserver Interface Admin/Oper Address/Mask Node Port Home -------- ---------- ---------- --------------- -------- ------- ---- vs0 data001 up/up 192.0.2.120/24 node0 e0e true data002 up/up 192.0.2.121/24 node0 e0f true data003 up/up 192.0.2.122/24 node0 e2a true data004 up/up 192.0.2.123/24 node0 e2b true data005 up/up 192.0.2.124/24 node1 e0e true data006 up/up 192.0.2.125/24 node1 e0f true data007 up/up 192.0.2.126/24 node1 e2a true data008 up/up 192.0.2.127/24 node1 e2b true 8 entries were displayed.