-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(new tool): IPv4/6/CIDR/Range in CIDR/IP Range #993
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
8f64d7d
to
c6b1fc0
Compare
c6b1fc0
to
9501a60
Compare
|
…ge (CIDR, range, mask)
@sharevb is attempting to deploy a commit to the Corentin Thomasset's Team Team on Vercel. A member of the Team first needs to authorize it. |
|
A tool to see if a given IP address resides within a given CIDR block. Also a tool to see if a given CIDR blocks resides within a given CIDR block.
IP in CIDR example:
Does IP address 192.168.0.1 reside in CIDR 192.168.0.0/16 = yes
Does IP address 192.168.0.10 reside in CIDR 192.168.1.0/24 = no
CIDR in CIDR example:
Does CIDR 192.168.0.0/28 reside in CIDR 192.168.0.0/24 = yes
Does CIDR 192.168.1.0/28 reside in CIDR 192.168.20.0/24 = no
Fix #1415