Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
calculate-subnets
Advanced tools
Split a CIDR into the largest possible subnet CIDRs. Uses cidr-calc
for IP ranges.
$ npx calculate-subnets --needed-subnets=9 --cidr='10.113.0.0/16'
Network IP range: 10.113.0.0 - 10.113.255.255
Total IPs in network: 65,536
Theoretical max IPs per subnet: 7,281
Subnets' optimal CIDR number: /20
Max IPs per subnet: 4,096
Subnet CIDR blocks:
Subnet 1: 10.113.0.0/20 (IP range: 10.113.0.0 - 10.113.15.255)
Subnet 2: 10.113.16.0/20 (IP range: 10.113.16.0 - 10.113.31.255)
Subnet 3: 10.113.32.0/20 (IP range: 10.113.32.0 - 10.113.47.255)
Subnet 4: 10.113.48.0/20 (IP range: 10.113.48.0 - 10.113.63.255)
Subnet 5: 10.113.64.0/20 (IP range: 10.113.64.0 - 10.113.79.255)
Subnet 6: 10.113.80.0/20 (IP range: 10.113.80.0 - 10.113.95.255)
Subnet 7: 10.113.96.0/20 (IP range: 10.113.96.0 - 10.113.111.255)
Subnet 8: 10.113.112.0/20 (IP range: 10.113.112.0 - 10.113.127.255)
Subnet 9: 10.113.128.0/20 (IP range: 10.113.128.0 - 10.113.143.255)
Unused IP range: 10.113.144.0 - 10.113.255.255
Number of unused IPs: 28,672
Number of used IPs: 36,864 (56.25%)
import { uniformlyDistributedSubnets } from 'calculate-subnets';
const { subnetCidrs } = uniformlyDistributedSubnets({
neededSubnets: 9,
cidr: '10.113.0.0/16',
});
for (const subnetCidr of subnetCidrs) {
console.log(subnetCidr.toString());
}
FAQs
TODO
We found that calculate-subnets demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.