aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ipv4-range-expander/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ipv4-range-expander/index.ts')
-rw-r--r--src/tools/ipv4-range-expander/index.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/ipv4-range-expander/index.ts b/src/tools/ipv4-range-expander/index.ts
new file mode 100644
index 0000000..233f7cc
--- /dev/null
+++ b/src/tools/ipv4-range-expander/index.ts
@@ -0,0 +1,13 @@
+import { UnfoldMoreOutlined } from '@vicons/material';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'IPv4 range expander',
+ path: '/ipv4-range-expander',
+ description:
+ 'Given a start and an end IPv4 address this tool calculates a valid IPv4 network with its CIDR notation.',
+ keywords: ['ipv4', 'range', 'expander', 'subnet', 'creator', 'cidr'],
+ component: () => import('./ipv4-range-expander.vue'),
+ icon: UnfoldMoreOutlined,
+ createdAt: new Date('2023-04-19'),
+});