diff options
author | 2023-03-28 23:31:11 +0200 | |
---|---|---|
committer | 2023-03-28 23:49:54 +0200 | |
commit | c339ab3551a93bc1c2f5c59575f691fbf4fa2dbb (patch) | |
tree | f4012250ca3c7bafc0b1f9bbd3cb2a2995c89ab1 /src/tools/ipv4-subnet-calculator/index.ts | |
parent | 47948dd343777fd2d517466a3a19b0f23545f86c (diff) | |
download | it-tools-c339ab3551a93bc1c2f5c59575f691fbf4fa2dbb.tar.gz it-tools-c339ab3551a93bc1c2f5c59575f691fbf4fa2dbb.tar.zst it-tools-c339ab3551a93bc1c2f5c59575f691fbf4fa2dbb.zip |
feat(new-tool): IPv4 subnet calculator
Diffstat (limited to 'src/tools/ipv4-subnet-calculator/index.ts')
-rw-r--r-- | src/tools/ipv4-subnet-calculator/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/ipv4-subnet-calculator/index.ts b/src/tools/ipv4-subnet-calculator/index.ts new file mode 100644 index 0000000..fb4bfb4 --- /dev/null +++ b/src/tools/ipv4-subnet-calculator/index.ts @@ -0,0 +1,11 @@ +import { RouterOutlined } from '@vicons/material'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'IPv4 subnet calculator', + path: '/ipv4-subnet-calculator', + description: 'Parse your IPv4 CIDR blocks and get all the info you need about your sub network.', + keywords: ['ipv4', 'subnet', 'calculator', 'mask', 'network', 'cidr', 'netmask', 'bitmask', 'broadcast', 'address'], + component: () => import('./ipv4-subnet-calculator.vue'), + icon: RouterOutlined, +}); |