ipnetwork
ipnetwork copied to clipboard
IPNetwork command line and C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers. It works with IPv4 as...
I'm encountering some unexpected behaviour with these two IPv6 addresses: * 2a01:430:277::/64 * 2a01:430:277::10 1. When using `Equals()` and `Compare()` these two IP addresses are classed as equal. (The code...
Is there any way to define whether remote IPv6-address is in the same network? I have connected NetworkInterface object, but I didn't find any way to define this. I have...
Hello, Would it be possible to implement an "ipnetwork.Inverse" to get the inverse netmask? Let's say the netmask is 255.255.255.0, the inverse would be 0.0.0.255. Thanks.
Todo : - Remove dependance to cli arg parsing lib ? - Add tests for cli arg parsing lib ?
Todo : - Add XML Comment on public methods - Fix Warning about missing comments in compilation - Add rule to fail build in missing comment
I am writing an application that will allow end users to scan a network for devices. We have two requirements on how do to this: 1. allow the user to...
I have run into an issue where TryParse() does not throw an exception when given an invalid IPv6 address. Sample Code: `IPNetwork network; IPNetwork.TryParse("g001:02b8::/64", out network)` I have validated this...
Looking at the source code, I see a method called: `TrySubstractNetwork`. I attempted to use a slightly modified version of this function and it was extremely slow. I am trying...