Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| mikrotik:ipv6 [2026-05-29 10:14] – weichbr | mikrotik:ipv6 [2026-06-02 12:57] (current) – [Delegate other /57] weichbr | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== IPv6 via DTAG ====== | ====== IPv6 via DTAG ====== | ||
| + | ===== Goal ===== | ||
| + | |||
| + | * Get /56 from DTAG ('' | ||
| + | * Use one /57 to carve out /64s for local interfaces ('' | ||
| + | * Delegate the other /57 to another router ('' | ||
| + | |||
| + | ===== Prerequisites ===== | ||
| + | |||
| + | * PPPoE configured, interface name '' | ||
| + | * Delegation for /57 on '' | ||
| + | |||
| + | ===== Set up DHCPv6 client ===== | ||
| + | |||
| + | /ipv6 dhcp-client add allow-reconfigure=yes default-route-tables=main interface=pppoe-dsl pool-name=telekom-v6-dyn pool-prefix-length=57 prefix-hint=::/ | ||
| + | |||
| + | |||
| + | Do **NOT** set '' | ||
| + | |||
| + | ===== Set up local /57 pool ===== | ||
| + | |||
| + | /ipv6 pool add from-pool=telekom-v6-dyn name=local prefix=0: | ||
| + | |||
| + | ===== Delegate other /57 ===== | ||
| + | |||
| + | /ipv6 dhcp-server add address-pool=telekom-v6-dyn interface=ether1 lease-time=20m name=router prefix-pool=telekom-v6-dyn | ||
| + | |||
| + | |||
| + | ===== Assign prefix to interface ===== | ||
| + | |||
| + | Just assign an address from the pool, this will start RAs for that prefix on that interface | ||
| + | |||
| + | /ipv6 address add address=:: | ||
| + | |||
| + | This will assign '' | ||