mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-10 13:57:48 +08:00
* revert relays * initial relay commit * get relayed allowed ips * add more relay validation checks, peer logic cleanup * rm relayed nodes from relay node when relayed node is deleted * fix egress updates for relayed nodes * rm unused func * remove debug logs * avoid adding egress ranges on the relayed gw node --------- Co-authored-by: Matthew R Kasun <mkasun@nusak.ca>
21 lines
533 B
Go
21 lines
533 B
Go
package node
|
|
|
|
var (
|
|
natEnabled bool
|
|
failover bool
|
|
networkName string
|
|
nodeDefinitionFilePath string
|
|
address string
|
|
address6 string
|
|
localAddress string
|
|
name string
|
|
postUp string
|
|
postDown string
|
|
keepAlive int
|
|
relayedNodes string
|
|
egressGatewayRanges string
|
|
expirationDateTime int
|
|
defaultACL bool
|
|
dnsOn bool
|
|
disconnect bool
|
|
)
|