mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 22:55:06 +03:00
fix for incorrect path to mesh.conf by default
This commit is contained in:
parent
177f5f24d8
commit
7213e61260
1 changed files with 5 additions and 5 deletions
|
@ -11,17 +11,17 @@ func getDefaults() platformDefaultParameters {
|
||||||
DefaultAdminListen: "tcp://localhost:9001",
|
DefaultAdminListen: "tcp://localhost:9001",
|
||||||
|
|
||||||
// Configuration (used for meshctl)
|
// Configuration (used for meshctl)
|
||||||
DefaultConfigFile: "C:\\Program Files\\RiV-mesh\\mesh.conf",
|
DefaultConfigFile: "C:\\ProgramData\\RiV-mesh\\mesh.conf",
|
||||||
|
|
||||||
// Multicast interfaces
|
// Multicast interfaces
|
||||||
DefaultMulticastInterfaces: []MulticastInterfaceConfig{
|
DefaultMulticastInterfaces: []MulticastInterfaceConfig{
|
||||||
{Regex: ".*", Beacon: true, Listen: true},
|
{Regex: ".*", Beacon: true, Listen: true},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Network domain
|
// Network domain
|
||||||
DefaultNetworkDomain: NetworkDomainConfig{
|
DefaultNetworkDomain: NetworkDomainConfig{
|
||||||
Prefix: [...]byte{0xfc},
|
Prefix: [...]byte{0xfc},
|
||||||
},
|
},
|
||||||
|
|
||||||
// TUN
|
// TUN
|
||||||
MaximumIfMTU: 65535,
|
MaximumIfMTU: 65535,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue