Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 615 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 615 Bytes

CJ NAT Addresses

List of CJ NAT addresses suitable for source IP whitelisting.

Usage

In the Shell

npx @cjdev/nataddr

will display the list of nat IP addresses in the format <Address Type> <Address>.

As a Library

Install into your project: npm i @cjdev/nataddr

import * as nat from '@cjdev/nataddr';

// All CIDR blocks, with IP type property
console.log("all:", JSON.stringify(nat.all()));

// IPv4 CIDR blocks only, as strings
console.log("IPv4:", JSON.stringify(nat.v4()));

// IPv6 CIDR blocks only, as strings
console.log("IPv6:", JSON.stringify(nat.v6()));