mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
Change network mask to limit number of peers to 65k (#339)
This commit is contained in:
@@ -33,7 +33,7 @@ type Network struct {
|
||||
func NewNetwork() *Network {
|
||||
return &Network{
|
||||
Id: xid.New().String(),
|
||||
Net: net.IPNet{IP: net.ParseIP("100.64.0.0"), Mask: net.IPMask{255, 192, 0, 0}},
|
||||
Net: net.IPNet{IP: net.ParseIP("100.64.0.0"), Mask: net.IPMask{255, 255, 0, 0}},
|
||||
Dns: "",
|
||||
Serial: 0}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user