Remove-2FAExcludeIPList

NAME

Remove-2FAExcludeIPList

SYNOPSIS

Removes an entry from the IP filter.

SYNTAX

Remove-2FAExcludeIPList -IP <string> -IPType <IPVersion> {Version4 | Version6 | BothVersions} [<CommonParameters>]

DESCRIPTION

Removes an entry from the IP filter. The type of the IP is distinguished by the IPType flag.

PARAMETERS


-IP <string>
Value that represents the IP

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-IPType <IPVersion>
Represents the type of IP

Possible values: Version4, Version6, BothVersions

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters documentation. 

INPUTS

-none-

OUTPUTS

-none-

EXAMPLES


---------- EXAMPLE 1 ----------

Remove-2FAExcludeIPList -IPType Version4 -IP 1.1.1.1-2.2.2.2

Removes an entry from the IPv4 list of excluded client IPs.

---------- EXAMPLE 2 ----------

Remove-2FAExcludeIPList -IPType Version6 -IP fd22:da63:bd1a:f3e2:0:0:0:0-fd22:da63:bd1a:f3e2:ffff:ffff:ffff:ffff

Removes an entry from the IPv6 list of excluded client IPs.

RELATED LINKS