Actions
Task #7303
closedChange place5 coworking to IPv6 only
Start date:
11/07/2019
Due date:
% Done:
0%
Estimated time:
PM Check date:
Description
- Currently NAT44 has an issue.
- Instead of fixing it, change the network to IPv6 only + NAT64
Updated by Nico Schottelius about 5 years ago
- Status changed from New to In Progress
Commented out the dhcp / ipv4 network:
[11:51:59] router1.place5:~# cat /etc/dhcp/dhcpd.conf option domain-name "place5.ungleich.ch"; default-lease-time 600; max-lease-time 7200; ddns-update-style none; authoritative; if exists user-class and option user-class = "iPXE" { filename "http://10.0.0.1/ipxescript"; } else { filename "undionly.kpxe"; } # Internal subnet 10.0.0.0 netmask 255.255.252.0 { range 10.0.1.0 10.0.3.254; option routers 10.0.0.1; option bootfile-name "undionly.kpxe"; next-server 10.0.0.1; option domain-name-servers 10.0.0.3, 10.0.0.4; } # Co-working #subnet 10.0.8.0 netmask 255.255.252.0 { # range 10.0.9.0 10.0.11.254; # option routers 10.0.8.1; # option domain-name-servers 10.0.8.3, 10.0.8.4; #}
Updated by Nico Schottelius about 5 years ago
Added coworking IPv6 network to dns64 translations
# Place5 dns64 2a0a:e5c0:0:1::/96 { clients { 2a0a:e5c0:0:0::/64; 2a0a:e5c0:0:4::/64; 2a0a:e5c0:0:5::/64; 2a0a:e5c0:0:6::/64; }; };
- Updating dns servers with cdist
Updated by Nico Schottelius about 5 years ago
- Status changed from In Progress to Closed
Restarted dhcpd, reconnected with a client, all good.
Actions