mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
zerotier: interface names changed; fix no dhcp
Since ZT v1.2.8: ZT interface names are no longer named zt<sequence number>. Instead they are by default named zt<network hash>. https://www.zerotier.com/blog/2018-05-04-128.shtml
This commit is contained in:
parent
9ce041a8c7
commit
1327218d8a
|
@ -47,7 +47,7 @@ in
|
|||
};
|
||||
|
||||
# ZeroTier does not issue DHCP leases, but some strangers might...
|
||||
networking.dhcpcd.denyInterfaces = [ "zt0" ];
|
||||
networking.dhcpcd.denyInterfaces = [ "zt*" ];
|
||||
|
||||
# ZeroTier receives UDP transmissions on port 9993 by default
|
||||
networking.firewall.allowedUDPPorts = [ 9993 ];
|
||||
|
|
Loading…
Reference in a new issue