2
0

config.yml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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. # blocklist is a list of certificate fingerprints that we will refuse to talk to
  10. #blocklist:
  11. # - c99d4e650533b92061b09918e838a5a0a6aaee21eed1d12fd937682865936c72
  12. # disconnect_invalid is a toggle to force a client to be disconnected if the certificate is expired or invalid.
  13. #disconnect_invalid: false
  14. # The static host map defines a set of hosts with fixed IP addresses on the internet (or any network).
  15. # A host can have multiple fixed IP addresses defined here, and nebula will try each when establishing a tunnel.
  16. # The syntax is:
  17. # "{nebula ip}": ["{routable ip/dns name}:{routable port}"]
  18. # 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:
  19. static_host_map:
  20. "192.168.100.1": ["100.64.22.11:4242"]
  21. lighthouse:
  22. # am_lighthouse is used to enable lighthouse functionality for a node. This should ONLY be true on nodes
  23. # you have configured to be lighthouses in your network
  24. am_lighthouse: false
  25. # serve_dns optionally starts a dns listener that responds to various queries and can even be
  26. # delegated to for resolution
  27. #serve_dns: false
  28. #dns:
  29. # The DNS host defines the IP to bind the dns listener to. This also allows binding to the nebula node IP.
  30. #host: 0.0.0.0
  31. #port: 53
  32. # interval is the number of seconds between updates from this node to a lighthouse.
  33. # during updates, a node sends information about its current IP addresses to each node.
  34. interval: 60
  35. # hosts is a list of lighthouse hosts this node should report to and query from
  36. # IMPORTANT: THIS SHOULD BE EMPTY ON LIGHTHOUSE NODES
  37. # IMPORTANT2: THIS SHOULD BE LIGHTHOUSES' NEBULA IPs, NOT LIGHTHOUSES' REAL ROUTABLE IPs
  38. hosts:
  39. - "192.168.100.1"
  40. # remote_allow_list allows you to control ip ranges that this node will
  41. # consider when handshaking to another node. By default, any remote IPs are
  42. # allowed. You can provide CIDRs here with `true` to allow and `false` to
  43. # deny. The most specific CIDR rule applies to each remote. If all rules are
  44. # "allow", the default will be "deny", and vice-versa. If both "allow" and
  45. # "deny" rules are present, then you MUST set a rule for "0.0.0.0/0" as the
  46. # default.
  47. #remote_allow_list:
  48. # Example to block IPs from this subnet from being used for remote IPs.
  49. #"172.16.0.0/12": false
  50. # A more complicated example, allow public IPs but only private IPs from a specific subnet
  51. #"0.0.0.0/0": true
  52. #"10.0.0.0/8": false
  53. #"10.42.42.0/24": true
  54. # EXPERIMENTAL: This option my change or disappear in the future.
  55. # Optionally allows the definition of remote_allow_list blocks
  56. # specific to an inside VPN IP CIDR.
  57. #remote_allow_ranges:
  58. # This rule would only allow only private IPs for this VPN range
  59. #"10.42.42.0/24":
  60. #"192.168.0.0/16": true
  61. # local_allow_list allows you to filter which local IP addresses we advertise
  62. # to the lighthouses. This uses the same logic as `remote_allow_list`, but
  63. # additionally, you can specify an `interfaces` map of regular expressions
  64. # to match against interface names. The regexp must match the entire name.
  65. # All interface rules must be either true or false (and the default will be
  66. # the inverse). CIDR rules are matched after interface name rules.
  67. # Default is all local IP addresses.
  68. #local_allow_list:
  69. # Example to block tun0 and all docker interfaces.
  70. #interfaces:
  71. #tun0: false
  72. #'docker.*': false
  73. # Example to only advertise this subnet to the lighthouse.
  74. #"10.0.0.0/8": true
  75. # advertise_addrs are routable addresses that will be included along with discovered addresses to report to the
  76. # lighthouse, the format is "ip:port". `port` can be `0`, in which case the actual listening port will be used in its
  77. # place, useful if `listen.port` is set to 0.
  78. # This option is mainly useful when there are static ip addresses the host can be reached at that nebula can not
  79. # typically discover on its own. Examples being port forwarding or multiple paths to the internet.
  80. #advertise_addrs:
  81. #- "1.1.1.1:4242"
  82. #- "1.2.3.4:0" # port will be replaced with the real listening port
  83. # Port Nebula will be listening on. The default here is 4242. For a lighthouse node, the port should be defined,
  84. # however using port 0 will dynamically assign a port and is recommended for roaming nodes.
  85. listen:
  86. # To listen on both any ipv4 and ipv6 use "[::]"
  87. host: 0.0.0.0
  88. port: 4242
  89. # Sets the max number of packets to pull from the kernel for each syscall (under systems that support recvmmsg)
  90. # default is 64, does not support reload
  91. #batch: 64
  92. # Configure socket buffers for the udp side (outside), leave unset to use the system defaults. Values will be doubled by the kernel
  93. # Default is net.core.rmem_default and net.core.wmem_default (/proc/sys/net/core/rmem_default and /proc/sys/net/core/rmem_default)
  94. # Maximum is limited by memory in the system, SO_RCVBUFFORCE and SO_SNDBUFFORCE is used to avoid having to raise the system wide
  95. # max, net.core.rmem_max and net.core.wmem_max
  96. #read_buffer: 10485760
  97. #write_buffer: 10485760
  98. # EXPERIMENTAL: This option is currently only supported on linux and may
  99. # change in future minor releases.
  100. #
  101. # Routines is the number of thread pairs to run that consume from the tun and UDP queues.
  102. # Currently, this defaults to 1 which means we have 1 tun queue reader and 1
  103. # UDP queue reader. Setting this above one will set IFF_MULTI_QUEUE on the tun
  104. # device and SO_REUSEPORT on the UDP socket to allow multiple queues.
  105. #routines: 1
  106. punchy:
  107. # Continues to punch inbound/outbound at a regular interval to avoid expiration of firewall nat mappings
  108. punch: true
  109. # respond means that a node you are trying to reach will connect back out to you if your hole punching fails
  110. # this is extremely useful if one node is behind a difficult nat, such as a symmetric NAT
  111. # Default is false
  112. #respond: true
  113. # delays a punch response for misbehaving NATs, default is 1 second, respond must be true to take effect
  114. #delay: 1s
  115. # Cipher allows you to choose between the available ciphers for your network. Options are chachapoly or aes
  116. # IMPORTANT: this value must be identical on ALL NODES/LIGHTHOUSES. We do not/will not support use of different ciphers simultaneously!
  117. #cipher: chachapoly
  118. # Preferred ranges is used to define a hint about the local network ranges, which speeds up discovering the fastest
  119. # path to a network adjacent nebula node.
  120. # NOTE: the previous option "local_range" only allowed definition of a single range
  121. # and has been deprecated for "preferred_ranges"
  122. #preferred_ranges: ["172.16.0.0/24"]
  123. # sshd can expose informational and administrative functions via ssh this is a
  124. #sshd:
  125. # Toggles the feature
  126. #enabled: true
  127. # Host and port to listen on, port 22 is not allowed for your safety
  128. #listen: 127.0.0.1:2222
  129. # A file containing the ssh host private key to use
  130. # A decent way to generate one: ssh-keygen -t ed25519 -f ssh_host_ed25519_key -N "" < /dev/null
  131. #host_key: ./ssh_host_ed25519_key
  132. # A file containing a list of authorized public keys
  133. #authorized_users:
  134. #- user: steeeeve
  135. # keys can be an array of strings or single string
  136. #keys:
  137. #- "ssh public key string"
  138. # EXPERIMENTAL: relay support for networks that can't establish direct connections.
  139. relay:
  140. # Relays are a list of Nebula IP's that peers can use to relay packets to me.
  141. # IPs in this list must have am_relay set to true in thier configs, otherwise
  142. # they will reject relay requests.
  143. #relays:
  144. #- 192.168.100.1
  145. #- <other Nebula VPN IPs of host use use as relay to access me>
  146. # Set am_relay to true to permit other hosts to list my IP in their relays config. Default false.
  147. am_relay: false
  148. # Set use_relays to false to prevent this instance from attempting to establish connections through relays.
  149. # default true
  150. use_relays: true
  151. # Configure the private interface. Note: addr is baked into the nebula certificate
  152. tun:
  153. # When tun is disabled, a lighthouse can be started without a local tun interface (and therefore without root)
  154. disabled: false
  155. # Name of the device. If not set, a default will be chosen by the OS.
  156. # For macOS: if set, must be in the form `utun[0-9]+`.
  157. # For FreeBSD: Required to be set, must be in the form `tun[0-9]+`.
  158. dev: nebula1
  159. # Toggles forwarding of local broadcast packets, the address of which depends on the ip/mask encoded in pki.cert
  160. drop_local_broadcast: false
  161. # Toggles forwarding of multicast packets
  162. drop_multicast: false
  163. # 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
  164. tx_queue: 500
  165. # Default MTU for every packet, safe setting is (and the default) 1300 for internet based traffic
  166. mtu: 1300
  167. # Route based MTU overrides, you have known vpn ip paths that can support larger MTUs you can increase/decrease them here
  168. routes:
  169. #- mtu: 8800
  170. # route: 10.0.0.0/16
  171. # Unsafe routes allows you to route traffic over nebula to non-nebula nodes
  172. # Unsafe routes should be avoided unless you have hosts/services that cannot run nebula
  173. # NOTE: The nebula certificate of the "via" node *MUST* have the "route" defined as a subnet in its certificate
  174. # `mtu` will default to tun mtu if this option is not specified
  175. # `metric` will default to 0 if this option is not specified
  176. unsafe_routes:
  177. #- route: 172.16.1.0/24
  178. # via: 192.168.100.99
  179. # mtu: 1300
  180. # metric: 100
  181. # TODO
  182. # Configure logging level
  183. logging:
  184. # panic, fatal, error, warning, info, or debug. Default is info
  185. level: info
  186. # json or text formats currently available. Default is text
  187. format: text
  188. # Disable timestamp logging. useful when output is redirected to logging system that already adds timestamps. Default is false
  189. #disable_timestamp: true
  190. # timestamp format is specified in Go time format, see:
  191. # https://golang.org/pkg/time/#pkg-constants
  192. # default when `format: json`: "2006-01-02T15:04:05Z07:00" (RFC3339)
  193. # default when `format: text`:
  194. # when TTY attached: seconds since beginning of execution
  195. # otherwise: "2006-01-02T15:04:05Z07:00" (RFC3339)
  196. # As an example, to log as RFC3339 with millisecond precision, set to:
  197. #timestamp_format: "2006-01-02T15:04:05.000Z07:00"
  198. #stats:
  199. #type: graphite
  200. #prefix: nebula
  201. #protocol: tcp
  202. #host: 127.0.0.1:9999
  203. #interval: 10s
  204. #type: prometheus
  205. #listen: 127.0.0.1:8080
  206. #path: /metrics
  207. #namespace: prometheusns
  208. #subsystem: nebula
  209. #interval: 10s
  210. # enables counter metrics for meta packets
  211. # e.g.: `messages.tx.handshake`
  212. # NOTE: `message.{tx,rx}.recv_error` is always emitted
  213. #message_metrics: false
  214. # enables detailed counter metrics for lighthouse packets
  215. # e.g.: `lighthouse.rx.HostQuery`
  216. #lighthouse_metrics: false
  217. # Handshake Manager Settings
  218. #handshakes:
  219. # Handshakes are sent to all known addresses at each interval with a linear backoff,
  220. # Wait try_interval after the 1st attempt, 2 * try_interval after the 2nd, etc, until the handshake is older than timeout
  221. # A 100ms interval with the default 10 retries will give a handshake 5.5 seconds to resolve before timing out
  222. #try_interval: 100ms
  223. #retries: 20
  224. # trigger_buffer is the size of the buffer channel for quickly sending handshakes
  225. # after receiving the response for lighthouse queries
  226. #trigger_buffer: 64
  227. # Nebula security group configuration
  228. firewall:
  229. conntrack:
  230. tcp_timeout: 12m
  231. udp_timeout: 3m
  232. default_timeout: 10m
  233. max_connections: 100000
  234. # The firewall is default deny. There is no way to write a deny rule.
  235. # Rules are comprised of a protocol, port, and one or more of host, group, or CIDR
  236. # Logical evaluation is roughly: port AND proto AND (ca_sha OR ca_name) AND (host OR group OR groups OR cidr)
  237. # - 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).
  238. # 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`
  239. # proto: `any`, `tcp`, `udp`, or `icmp`
  240. # host: `any` or a literal hostname, ie `test-host`
  241. # group: `any` or a literal group name, ie `default-group`
  242. # 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
  243. # cidr: a CIDR, `0.0.0.0/0` is any.
  244. # ca_name: An issuing CA name
  245. # ca_sha: An issuing CA shasum
  246. outbound:
  247. # Allow all outbound traffic from this node
  248. - port: any
  249. proto: any
  250. host: any
  251. inbound:
  252. # Allow icmp between any nebula hosts
  253. - port: any
  254. proto: icmp
  255. host: any
  256. # Allow tcp/443 from any host with BOTH laptop and home group
  257. - port: 443
  258. proto: tcp
  259. groups:
  260. - laptop
  261. - home