brent saner 166fb3be23
v0.0.2
FIXED:
* Ooops, fix go mod
2025-03-10 10:07:51 -04:00
2025-03-10 10:07:51 -04:00
2025-03-10 09:57:25 -04:00
2025-03-10 10:07:51 -04:00
2025-03-10 10:07:51 -04:00
2025-01-31 17:07:49 -05:00

Subnetter

1. What is it?

A tool to assist in design of segregate/segment/split/subnet networks.

2. Output

  • PTP refers to "Peer-to-Peer" (e.g. RFC 3021).

  • 6rd refers to "IPv6 Rapid Deployment", a derivation of 6to4 (RFC 5569, RFC 5969).

  • LIR refers to "Local Internet Registry" (ARIN).

  • RIR refers to "Regional Internet Registry" (ARIN).

  • Unicast refers to "Global Unicast" (RFC 1122, RFC 4291 § 2.5.4, RFC 4632).

    • For IPv6 addresses, it will be true for ULA (Unique Local Addresses) (RFC 4193) also.

    • For IPv4 addresses, it will be true if the address is routable by external hosts (a unicast address), including private IP addresses (RFC 1918).

  • ILM refers to "Interface-Local Multicast" (RFC 4291 § 2.7, RFC 7346).

    • It will always be false for IPv4 addresses.

  • LLM refers to "Link-Local Multicast" (RFC 4291 § 2.7, RFC 7346).

    • For IPv4 addresses, it will be true if it is in the 224.0.0.0/4 range (RFC 5735).

  • LLU refers to "Link-Local Unicast" (RFC 4291 § 2.7, RFC 7346).

    • For IPv4 addresses, it will be true if it is an APIPA (Automatic Private IP Addressing) address (RFC 3927) (in the 169.254.0.0/16 range).

  • First and Last refer to the first and last "usable" ("host"/assignable) addresses in a subnet/network.

    • Note that for IPv6, the first address (x::) in a subnet may or may not be assignable/"usable". If it is assigned to a device, that device must be a router for anycast. See RFC 4291 § 2.6.1 for details. In the interest of convenience, subnetter will report this address as not usable/addressable in ranges for this reason as it is technically not a "host" address.

    • Note that for IPv6, some subnetting calculators erroneously report the last address for /64s (e.g. x:ffff:ffff:ffff:ffff/64) as usable. They are actually reserved in strictly RFC-compliant networks for EUI-64 reasons (per RFC 2526). For this reason, if and only if a prefix is a /64 exactly, subnetter will use x:ffff:ffff:ffff:fffe as the last host address.

    • There are additional restrictions for /64 subnets, but they fall earlier in the range. These are not explicitly excluded in the usable host range, nor are they excluded from the total host count.

  • Private networks (RFC 1918), ULA prefixes (RFC 4193), and documentation prefixes (RFC 3849, RFC 5737, RFC 9637) are treated as "normal" networks (in that it is allowed to subnet them).

  • Various other reserved IPv4 and IPv6 addresses/networks will print warnings with their corresponding RFC(s) (unless -R/--allow-reserved is specified) if they are specified as/included in the initial prefix/network. (RFC 6890 and its update via RFC 8190 are useful summaries.) Note that for checking to function, an Internet connection is required as it pulls it directly from IANA live to ensure the data is accurate to standards. This may be cached locally if -c/--cache-reservations is specified, in which case a locally-cached copy will be used if present and populated then used if not.

    • The cache directory may be specified by -C/--cache-dir (which can be specifically defaulted via the SBNTR_RSVCACHE_DIR environment variable). If it is not specified, the default (see below) will be used.

    • This directorys default location determined by the following, and will be created if it doesnt exist:

      • For non-Windows systems (macOS, Linux, etc.)…​

        • If the XDG_CACHE_HOME environment variable is present, it will be ${XDG_CACHE_HOME}/subnetter/. (If XDG base dirs are enabled, this is usually ~/.cache/subnetter/ or, explicitly, /home/<username>/.cache/subnetter/)

        • If the XDG_CACHE_HOME environment variable is not present…

          • On macOS, an explicit fallback of ~/Library/Caches/subnetter/ will be used. (To my knowledge/understanding, this is the standard user cache directory and cannot be changed.) This usually evaluates to /Users/<username>/Library/Caches/subnetter/.

          • On all others, an explicit fallback of ~/.cache/subnetter will be used.

            • On most non-macOS \*NIX-like systems , this is usually /home/<username>/.cache/subetter/, provided normal user homes. On Plan9 platforms (e.g. Plan 9 4th Ed., 9front, 9legacy), the /env/home environment variable ($home) will be used, the ./lib/ subdirectory under there (which typically/should already exist) will be appended to it, and that appended with ./cache/subnetter/ (this usually evaluates to /usr/<username>/lib/cache/subnetter/).

      • For Windows systems…

        • If the LOCALAPPDATA environment variable is present, it will be %LOCALAPPDATA%\Cache\subnetter\ (or ${env:LOCALAPPDATA}\Cache\subnetter\ in Powershell syntax). This usually evaluates to C:\Users\<username>\AppData\Local\Cache\subnetter\.

3. References

This program in general draws inspiration from ipcalc (0, 1, 2) and sipcalc.

The table subcommand is inspired by iptab from Perl Net-IP.

Additional notes for certain contexts are primarily taken from the Wikipedia article on Classless Inter-Domain Routing (as of Jan 28, 2025).

Description
Easily split networks into subnets.
https://pkg.go.dev/r00t2.io/subnetter
Readme BSD-3-Clause 109 KiB
Languages
Go 96.3%
Shell 2.7%
Smarty 1%