Skip to content

Commit 9108df8

Browse files
authored
Docs: Subnet calculator (BornToBeRoot#2233)
* Docs: Subnet calculator * Docs: BornToBeRoot#2233
1 parent 82b777b commit 9108df8

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

docs/Changelog/next-release.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ Deprecated
3535
- Code cleanup [#2100](https://github.com/BornToBeRoot/NETworkManager/pull/2100){:target="\_blank"} [#2172](https://github.com/BornToBeRoot/NETworkManager/pull/2172){:target="\_blank"}
3636
- Language files updated [#transifex](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Ftransifex-integration){:target="\_blank"}
3737
- Dependencies updated [#dependencies](https://github.com/BornToBeRoot/NETworkManager/pulls?q=author%3Aapp%2Fdependabot){:target="\_blank"}
38+
- Add documentation for:
39+
- Application > Subnet Calculator [#2233](https://github.com/BornToBeRoot/NETworkManager/pull/2233)

docs/Documentation/01_Application/04_IPScanner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permalink: /Documentation/Application/IPScanner
1212

1313
With the **IP Scanner** you can scan for active devices in subnets or IP ranges that are reachable via icmp or have a common tcp port open.
1414

15-
Possible inputs are:
15+
Possible inputs:
1616

1717
| Input | Description |
1818
| --------------------------- | ----------------------------------------------------------------------------------------- |

docs/Documentation/01_Application/20_SubnetCalculator.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,52 @@ title: Subnet Calculator
44
parent: Application
55
grand_parent: Documentation
66
nav_order: 20
7-
description: ""
7+
description: "Documentation of the Subnet Calculator"
88
permalink: /Documentation/Application/SubnetCalculator
99
---
1010

1111
# Subnet Calculator
1212

13+
With the **Subnet Calculator** you can [calculate a subnet](#calculator), [split subnets](#subnetting) and create a [wide subnet](#wide-subnet). Both IPv4 and IPv6 are supported.
14+
1315
## Calculator
1416

17+
On the **Calculator** tab, you can calculate a subnet by entering the IP address and the subnet mask. The subnet mask can be entered in CIDR notation.
18+
19+
Possible inputs:
20+
21+
- `10.0.0.0/16`
22+
- `192.168.0.0/255.255.255.0`
23+
- `2001:db8::/32`
24+
1525
![SubnetCalculator_Calculator](20_SubnetCalculator_Calculator.png)
1626

1727
## Subnetting
1828

29+
On the **Subnetting** tab, you can split a subnet into smaller subnets. The subnet mask can be entered in CIDR notation.
30+
31+
Possible inputs:
32+
33+
| Subnet | New subnet mask |
34+
| --------------------------- | ----------------- |
35+
| `10.0.0.0/16` | `/18` |
36+
| `192.168.0.0/255.255.255.0` | `255.255.255.128` |
37+
| `2001:db8::/32` | `/48` |
38+
1939
![SubnetCalculator_Subnetting](20_SubnetCalculator_Subnetting.png)
2040

2141
## Wide Subnet
2242

43+
On the **Wide Subnet** tab, you can create a wide subnet that includes both given subnets. The subnet mask can be entered in CIDR notation.
44+
45+
Possible inputs:
46+
47+
| Subnet 1 | Subnet 2 |
48+
| --------------------------- | ---------------- |
49+
| `10.0.0.0/16` | `10.2.0.0/16` |
50+
| `192.168.0.0/255.255.255.0` | `192.168.4.0/23` |
51+
52+
{: .note}
53+
IPv6 is not supported.
54+
2355
![SubnetCalculator_WideSubnet](20_SubnetCalculator_WideSubnet.png)

0 commit comments

Comments
 (0)