aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ipv6-ula-generator/index.ts
blob: 24efaeba9c3659650418fc952f16e35c3225287e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { BuildingFactory } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'IPv6 ULA generator',
  path: '/ipv6-ula-generator',
  description: 'Generate your own local, non-routable IP addresses on your network according to RFC4193.',
  keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'],
  component: () => import('./ipv6-ula-generator.vue'),
  icon: BuildingFactory,
  createdAt: new Date('2023-04-09'),
});