config.yml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. # This is the nebula example configuration file. You must edit, at a minimum, the static_host_map, lighthouse, and firewall sections
  2. # Some options in this file are HUPable, including the pki section. (A HUP will reload credentials from disk without affecting existing tunnels)
  3. # PKI defines the location of credentials for this node. Each of these can also be inlined by using the yaml ": |" syntax.
  4. pki:
  5. # The CAs that are accepted by this node. Must contain one or more certificates created by 'nebula-cert ca'
  6. ca: /etc/nebula/ca.crt
  7. cert: /etc/nebula/host.crt
  8. key: /etc/nebula/host.key
  9. #blacklist is a list of certificate fingerprints that we will refuse to talk to
  10. #blacklist:
  11. # - c99d4e650533b92061b09918e838a5a0a6aaee21eed1d12fd937682865936c72
  12. # The static host map defines a set of hosts with fixed IP addresses on the internet (or any network).
  13. # A host can have multiple fixed IP addresses defined here, and nebula will try each when establishing a tunnel.
  14. # The syntax is:
  15. # "{nebula ip}": ["{routable ip/dns name}:{routable port}"]
  16. # Example, if your lighthouse has the nebula IP of 192.168.100.1 and has the real ip address of 100.64.22.11 and runs on port 4242:
  17. static_host_map:
  18. "192.168.100.1": ["100.64.22.11:4242"]
  19. lighthouse:
  20. # am_lighthouse is used to enable lighthouse functionality for a node. This should ONLY be true on nodes
  21. # you have configured to be lighthouses in your network
  22. am_lighthouse: false
  23. # serve_dns optionally starts a dns listener that responds to various queries and can even be
  24. # delegated to for resolution
  25. #serve_dns: false
  26. #dns:
  27. # The DNS host defines the IP to bind the dns listener to. This also allows binding to the nebula node IP.
  28. #host: 0.0.0.0
  29. #port: 53
  30. # interval is the number of seconds between updates from this node to a lighthouse.
  31. # during updates, a node sends information about its current IP addresses to each node.
  32. interval: 60
  33. # hosts is a list of lighthouse hosts this node should report to and query from
  34. # IMPORTANT: THIS SHOULD BE EMPTY ON LIGHTHOUSE NODES
  35. # IMPORTANT2: THIS SHOULD BE LIGHTHOUSES' NEBULA IPs, NOT LIGHTHOUSES' REAL ROUTABLE IPs
  36. hosts:
  37. - "192.168.100.1"
  38. # Port Nebula will be listening on. The default here is 4242. For a lighthouse node, the port should be defined,
  39. # however using port 0 will dynamically assign a port and is recommended for roaming nodes.
  40. listen:
  41. host: 0.0.0.0
  42. port: 4242
  43. # Sets the max number of packets to pull from the kernel for each syscall (under systems that support recvmmsg)
  44. # default is 64, does not support reload
  45. #batch: 64
  46. # Configure socket buffers for the udp side (outside), leave unset to use the system defaults. Values will be doubled by the kernel
  47. # Default is net.core.rmem_default and net.core.wmem_default (/proc/sys/net/core/rmem_default and /proc/sys/net/core/rmem_default)
  48. # Maximum is limited by memory in the system, SO_RCVBUFFORCE and SO_SNDBUFFORCE is used to avoid having to raise the system wide
  49. # max, net.core.rmem_max and net.core.wmem_max
  50. #read_buffer: 10485760
  51. #write_buffer: 10485760
  52. punchy:
  53. # Continues to punch inbound/outbound at a regular interval to avoid expiration of firewall nat mappings
  54. punch: true
  55. # respond means that a node you are trying to reach will connect back out to you if your hole punching fails
  56. # this is extremely useful if one node is behind a difficult nat, such as a symmetric NAT
  57. # Default is false
  58. #respond: true
  59. # delays a punch response for misbehaving NATs, default is 1 second, respond must be true to take effect
  60. #delay: 1s
  61. # Cipher allows you to choose between the available ciphers for your network.
  62. # IMPORTANT: this value must be identical on ALL NODES/LIGHTHOUSES. We do not/will not support use of different ciphers simultaneously!
  63. #cipher: chachapoly
  64. # Local range is used to define a hint about the local network range, which speeds up discovering the fastest
  65. # path to a network adjacent nebula node.
  66. #local_range: "172.16.0.0/24"
  67. # sshd can expose informational and administrative functions via ssh this is a
  68. #sshd:
  69. # Toggles the feature
  70. #enabled: true
  71. # Host and port to listen on, port 22 is not allowed for your safety
  72. #listen: 127.0.0.1:2222
  73. # A file containing the ssh host private key to use
  74. # A decent way to generate one: ssh-keygen -t ed25519 -f ssh_host_ed25519_key -N "" < /dev/null
  75. #host_key: ./ssh_host_ed25519_key
  76. # A file containing a list of authorized public keys
  77. #authorized_users:
  78. #- user: steeeeve
  79. # keys can be an array of strings or single string
  80. #keys:
  81. #- "ssh public key string"
  82. # Configure the private interface. Note: addr is baked into the nebula certificate
  83. tun:
  84. # Name of the device
  85. dev: nebula1
  86. # Toggles forwarding of local broadcast packets, the address of which depends on the ip/mask encoded in pki.cert
  87. drop_local_broadcast: false
  88. # Toggles forwarding of multicast packets
  89. drop_multicast: false
  90. # Sets the transmit queue length, if you notice lots of transmit drops on the tun it may help to raise this number. Default is 500
  91. tx_queue: 500
  92. # Default MTU for every packet, safe setting is (and the default) 1300 for internet based traffic
  93. mtu: 1300
  94. # Route based MTU overrides, you have known vpn ip paths that can support larger MTUs you can increase/decrease them here
  95. routes:
  96. #- mtu: 8800
  97. # route: 10.0.0.0/16
  98. # Unsafe routes allows you to route traffic over nebula to non-nebula nodes
  99. # Unsafe routes should be avoided unless you have hosts/services that cannot run nebula
  100. # NOTE: The nebula certificate of the "via" node *MUST* have the "route" defined as a subnet in its certificate
  101. unsafe_routes:
  102. #- route: 172.16.1.0/24
  103. # via: 192.168.100.99
  104. # mtu: 1300 #mtu will default to tun mtu if this option is not sepcified
  105. # TODO
  106. # Configure logging level
  107. logging:
  108. # panic, fatal, error, warning, info, or debug. Default is info
  109. level: info
  110. # json or text formats currently available. Default is text
  111. format: text
  112. # timestamp format is specified in Go time format, see:
  113. # https://golang.org/pkg/time/#pkg-constants
  114. # default when `format: json`: "2006-01-02T15:04:05Z07:00" (RFC3339)
  115. # default when `format: text`:
  116. # when TTY attached: seconds since beginning of execution
  117. # otherwise: "2006-01-02T15:04:05Z07:00" (RFC3339)
  118. # As an example, to log as RFC3339 with millisecond precision, set to:
  119. #timestamp_format: "2006-01-02T15:04:05.000Z07:00"
  120. #stats:
  121. #type: graphite
  122. #prefix: nebula
  123. #protocol: tcp
  124. #host: 127.0.0.1:9999
  125. #interval: 10s
  126. #type: prometheus
  127. #listen: 127.0.0.1:8080
  128. #path: /metrics
  129. #namespace: prometheusns
  130. #subsystem: nebula
  131. #interval: 10s
  132. # Handshake Manger Settings
  133. #handshakes:
  134. # Total time to try a handshake = sequence of `try_interval * retries`
  135. # With 100ms interval and 20 retries it is 23.5 seconds
  136. #try_interval: 100ms
  137. #retries: 20
  138. # wait_rotation is the number of handshake attempts to do before starting to try non-local IP addresses
  139. #wait_rotation: 5
  140. # Nebula security group configuration
  141. firewall:
  142. conntrack:
  143. tcp_timeout: 120h
  144. udp_timeout: 3m
  145. default_timeout: 10m
  146. max_connections: 100000
  147. # The firewall is default deny. There is no way to write a deny rule.
  148. # Rules are comprised of a protocol, port, and one or more of host, group, or CIDR
  149. # Logical evaluation is roughly: port AND proto AND (ca_sha OR ca_name) AND (host OR group OR groups OR cidr)
  150. # - port: Takes `0` or `any` as any, a single number `80`, a range `200-901`, or `fragment` to match second and further fragments of fragmented packets (since there is no port available).
  151. # code: same as port but makes more sense when talking about ICMP, TODO: this is not currently implemented in a way that works, use `any`
  152. # proto: `any`, `tcp`, `udp`, or `icmp`
  153. # host: `any` or a literal hostname, ie `test-host`
  154. # group: `any` or a literal group name, ie `default-group`
  155. # groups: Same as group but accepts a list of values. Multiple values are AND'd together and a certificate would have to contain all groups to pass
  156. # cidr: a CIDR, `0.0.0.0/0` is any.
  157. # ca_name: An issuing CA name
  158. # ca_sha: An issuing CA shasum
  159. outbound:
  160. # Allow all outbound traffic from this node
  161. - port: any
  162. proto: any
  163. host: any
  164. inbound:
  165. # Allow icmp between any nebula hosts
  166. - port: any
  167. proto: icmp
  168. host: any
  169. # Allow tcp/443 from any host with BOTH laptop and home group
  170. - port: 443
  171. proto: tcp
  172. groups:
  173. - laptop
  174. - home