Skip to content

piger/netmask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c80f302 · May 26, 2022

History

6 Commits
May 26, 2022
Mar 9, 2022
Mar 9, 2022
May 26, 2022
May 26, 2022

Repository files navigation

netmask

A very simple utility to work with CIDR ranges; it can list all IP addresses in a range or check if an address is part of a range.

Usage

To list all addresses in a range:

netmask 192.168.0.0/24

To check if an address is part of a range:

netmask 192.168.0.0/24 192.168.0.1

The exit code will be 0 if the address is part of the range and 1 if it isn't.