flags.go 742 B

12345678910111213141516171819202122232425262728
  1. package node
  2. var (
  3. networkInterface string
  4. natEnabled bool
  5. failover bool
  6. networkName string
  7. nodeDefinitionFilePath string
  8. endpoint string
  9. listenPort int
  10. address string
  11. address6 string
  12. localAddress string
  13. name string
  14. postUp string
  15. postDown string
  16. allowedIPs string
  17. keepAlive int
  18. relayAddrs string
  19. egressGatewayRanges string
  20. localRange string
  21. mtu int
  22. expirationDateTime int
  23. defaultACL bool
  24. dnsOn bool
  25. disconnect bool
  26. networkHub bool
  27. )