* feat(ipv6-ula-generator): new tool: generate ula based on timestamp and mac address This new tool generates a random unique ula based on the current timestamp and the provided mac address. An ULA is your "secondary" IPV6-Address only for internal use. It can also be used as a backup address if your provider gets offline and your Prefix-IPs are not longer valid.Also you can create the most of your internal firewall rules based on your ULAs. * feat(ipv6-ula-generator): changes requested by review * Update src/tools/ipv6-ula-generator/index.ts * Update src/tools/ipv6-ula-generator/ipv6-ula-generator.vue --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			490 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			490 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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'),
 | |
| });
 |