From 1104e362fe1de74bb06d69d2ed0e1c1c11ac6cc2 Mon Sep 17 00:00:00 2001 From: Lars Krahl <57526005+mmslkr@users.noreply.github.com> Date: Fri, 13 Jan 2023 11:51:46 +0100 Subject: [PATCH] Add minimum paths for MetroCluster IP fabric MetroCluster configuration type when using IP fabric does not match the current cases for setting paths threshold, and the fallback 4 is not enough. Also see https://kb.netapp.com/Advice_and_Troubleshooting/Data_Protection_and_Security/MetroCluster/Is_it_expected_to_see_8_instead_of_4_paths_to_the_remote_disks_of_a_MetroCluster_IP%3F why 8 are correct. --- check_cdot_multipath.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/check_cdot_multipath.pl b/check_cdot_multipath.pl index e9abcf3..067dd81 100755 --- a/check_cdot_multipath.pl +++ b/check_cdot_multipath.pl @@ -67,6 +67,8 @@ sub Error { $must_paths = 2; } elsif($type eq "fabric") { $must_paths = 8; + } elsif($type eq "ip_fabric") { + $must_paths = 8; } else { $must_paths = 4; }