mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
feat(new-tool): IPv4 subnet calculator
This commit is contained in:
parent
47948dd343
commit
c339ab3551
7 changed files with 1828 additions and 1608 deletions
11
src/tools/ipv4-subnet-calculator/index.ts
Normal file
11
src/tools/ipv4-subnet-calculator/index.ts
Normal file
|
@ -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,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue