mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
37 lines
923 B
PowerShell
37 lines
923 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Used to convert both IPv4 addresses and IPv6 addresses to binary.
|
|
.DESCRIPTION
|
|
ConvertTo-IcingaIPBinaryString returns a binary string based on the given IPv4 address or IPv6 address.
|
|
|
|
More Information on https://github.com/Icinga/icinga-powershell-framework
|
|
.FUNCTIONALITY
|
|
This module is intended to be used to convert an IPv4 address or IPv6 address to binary string.
|
|
.PARAMETER IP
|
|
Used to specify an IPv4 address or IPv6 address.
|
|
.INPUTS
|
|
System.String
|
|
.OUTPUTS
|
|
System.String
|
|
|
|
.LINK
|
|
https://github.com/Icinga/icinga-powershell-framework
|
|
.NOTES
|
|
#>
|
|
|
|
function ConvertTo-IcingaIPBinaryString()
|
|
{
|
|
param (
|
|
$IP
|
|
);
|
|
|
|
if ($IP -like '*.*') {
|
|
$IP = ConvertTo-IcingaIPv4BinaryString -IP $IP;
|
|
} elseif ($IP -like '*:*') {
|
|
$IP = ConvertTo-IcingaIPv6BinaryString -IP $IP;
|
|
} else {
|
|
return 'Invalid IP was provided!';
|
|
}
|
|
|
|
return $IP;
|
|
}
|