ONTAP 9.12.1 commands

50←PDF
  • ONTAP 9.12.1 commands(CA08871-263en.pdf)
  • network options port-health-monitor disable-monitors

    Disable one or more port health monitors

    Availability: This command is available to cluster administrators at the advanced privilege level.

    Description

    This command disables the given port health monitors for the given IPspaces in the cluster.

    Parameters

    -ipspace <IPspace> - IPspace Name

    The name of the IPspace for which the specified port health monitors are disabled.

    -health-monitors {l2-reachability|link-flapping|crc-errors|vswitch-link} - List of Port Health Monitors to Disable

    The port health monitors to disable.

    Examples

    The following example disables the "l2_reachability" health monitor for the "Default" IPspace.

    The status of the "link_flapping" monitor is unaffected by the command.
    cluster1::*> network options port-health-monitor show
    
    IPspace         Enabled Port Health Monitors
    -------------   ----------------------------
    Cluster         l2_reachability,
                    link_flapping
    Default         l2_reachability,
                    link_flapping
    2 entries were displayed.
    
    cluster1::*> network options port-health-monitor disableMonitors -ipspace Default -health-monitors l2_reachability
    
    cluster1::*> network options port-health-monitor show
    
    IPspace         Enabled Port Health Monitors
    -------------   ----------------------------
    Cluster         l2_reachability,
                    link_flapping
    Default         link_flapping
    2 entries were displayed.
    Top of Page