You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 well as IPv6, is written in C#, has a light and clean API, and is fully unit-tested.
@@ -34,7 +35,32 @@ IPNetwork utility classes take care of complex network, IP, IPv4, IPv6, netmask,
34
35
35
36
### Installation
36
37
38
+
#### CLI (Native AOT binary, no .NET runtime required)
39
+
40
+
**macOS / Linux (Homebrew)**
41
+
```bash
42
+
brew install lduchosal/ipnetwork/ipnetwork
43
+
```
44
+
45
+
**Windows (Chocolatey)**
46
+
```powershell
47
+
choco install ipnetwork
48
+
```
49
+
50
+
**Linux (manual)**
51
+
```bash
52
+
# x64
53
+
curl -sL https://github.com/lduchosal/ipnetwork/releases/latest/download/ipnetwork-linux-x64.tar.gz | tar xz -C /usr/local/bin
54
+
55
+
# ARM64
56
+
curl -sL https://github.com/lduchosal/ipnetwork/releases/latest/download/ipnetwork-linux-arm64.tar.gz | tar xz -C /usr/local/bin
0 commit comments