Task #7303
closed
Change place5 coworking to IPv6 only
Added by Nico Schottelius about 5 years ago.
Updated about 5 years ago.
Description
- Currently NAT44 has an issue.
- Instead of fixing it, change the network to IPv6 only + NAT64
- 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;
#}
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
- Status changed from In Progress to Closed
Restarted dhcpd, reconnected with a client, all good.
Also available in: Atom
PDF