Description
"html": "
IPNetwork
\nIPNetwork is a handy little command line tool designed to simplify tricky network tasks like IP, netmask, subnet, and CIDR calculations. It’s all about IPv4 here and was built using C#. The interface is light and clean, plus it’s fully unit tested so you know it works well!
\n\nHow to Use IPNetwork
\nGetting started with IPNetwork is easy. Here’s the basic command format:
\nipnetwork [-inmcbflu] [-d cidr|-D] [-h|-s cidr|-S|-w|-W|-x|-C network|-o network] networks ...
Print Options
\n- \n
- -i: network \n
- -n: network address \n
- -m: netmask \n
- -c: CIDR notation \n
- -b: broadcast address \n
- -f: first usable IP address \n
- -l: last usable IP address \n
- -u: number of usable IP addresses \n
Parse Options
\n- \n
- -d cidr : use CIDR if not provided (default /32) \n
- -D : use default CIDR (ClassA/8, ClassB/16, ClassC/24) \n
Actions You Can Take
\n- \n
- -h : show help message \n
- -s cidr : split the network into CIDR subnets \n
- -w : supernet networks into smallest possible subnets \n
- -W : combine networks into one single subnet \n
- -x : list all IP addresses in the networks \n
- -C network: find out which networks contain others. \n
- -o network: check if networks overlap.
Examples of Using IPNetwork:
\nIf you want to see information for a specific network, just enter:
\nn<code>c:\\> ipnetwork 10.0.0.0/8</code>
\nnThis will give you details like:
\nn- \nn
- ID: 10.0.0.0/8
- Netmask: 255.0.0.0
li >\nn < li class='info'>Broadcast: 10.255.255.255
li >\nn < li class='info'>First Usable: 10.0.0.1
li >\nn < li class='
User Reviews for IPNetwork 1
-
IPNetwork is a fantastic tool for network calculations. Its clean API and unit testing make it a reliable choice.