en-US/about_IP.Tools.help.txt
TOPIC
about_ip.tools SHORT DESCRIPTION PowerShell module for the analysis and manipulation of IP Address related information. LONG DESCRIPTION PowerShell module for the analysis and manipulation of IP Address related information. Created primarily to test whether specific IPs belong to a specific network, filter Bogons from a list of IPs, and some other ancillary function. None of the modules I found handled this in the way I needed it, so this module was born. EXAMPLES '''powershell Install-Module -Name "DnsClient" $Ip = Resolve-DnsName "www.google.com" $MyNetwork = New-IpNetwork "192.168.0.0/24" if (Test-IpInNetwork -Address $Ip -Network $MyNetwork) { Write-Output "There's something strange going on, Google is in your network" } else { Write-Output "Google is outside your network" } ''' NOTE This module was created for a specific purpose, with a view to extending it as required. If some IP-related function is missing, please make a suggestion. SEE ALSO Nothing yet |