github.com/slackhq/nebula@v1.9.0/examples/config.yml (about) 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 4 # PKI defines the location of credentials for this node. Each of these can also be inlined by using the yaml ": |" syntax. 5 pki: 6 # The CAs that are accepted by this node. Must contain one or more certificates created by 'nebula-cert ca' 7 ca: /etc/nebula/ca.crt 8 cert: /etc/nebula/host.crt 9 key: /etc/nebula/host.key 10 # blocklist is a list of certificate fingerprints that we will refuse to talk to 11 #blocklist: 12 # - c99d4e650533b92061b09918e838a5a0a6aaee21eed1d12fd937682865936c72 13 # disconnect_invalid is a toggle to force a client to be disconnected if the certificate is expired or invalid. 14 #disconnect_invalid: true 15 16 # The static host map defines a set of hosts with fixed IP addresses on the internet (or any network). 17 # A host can have multiple fixed IP addresses defined here, and nebula will try each when establishing a tunnel. 18 # The syntax is: 19 # "{nebula ip}": ["{routable ip/dns name}:{routable port}"] 20 # 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: 21 static_host_map: 22 "192.168.100.1": ["100.64.22.11:4242"] 23 24 # The static_map config stanza can be used to configure how the static_host_map behaves. 25 #static_map: 26 # cadence determines how frequently DNS is re-queried for updated IP addresses when a static_host_map entry contains 27 # a DNS name. 28 #cadence: 30s 29 30 # network determines the type of IP addresses to ask the DNS server for. The default is "ip4" because nodes typically 31 # do not know their public IPv4 address. Connecting to the Lighthouse via IPv4 allows the Lighthouse to detect the 32 # public address. Other valid options are "ip6" and "ip" (returns both.) 33 #network: ip4 34 35 # lookup_timeout is the DNS query timeout. 36 #lookup_timeout: 250ms 37 38 lighthouse: 39 # am_lighthouse is used to enable lighthouse functionality for a node. This should ONLY be true on nodes 40 # you have configured to be lighthouses in your network 41 am_lighthouse: false 42 # serve_dns optionally starts a dns listener that responds to various queries and can even be 43 # delegated to for resolution 44 #serve_dns: false 45 #dns: 46 # The DNS host defines the IP to bind the dns listener to. This also allows binding to the nebula node IP. 47 #host: 0.0.0.0 48 #port: 53 49 # interval is the number of seconds between updates from this node to a lighthouse. 50 # during updates, a node sends information about its current IP addresses to each node. 51 interval: 60 52 # hosts is a list of lighthouse hosts this node should report to and query from 53 # IMPORTANT: THIS SHOULD BE EMPTY ON LIGHTHOUSE NODES 54 # IMPORTANT2: THIS SHOULD BE LIGHTHOUSES' NEBULA IPs, NOT LIGHTHOUSES' REAL ROUTABLE IPs 55 hosts: 56 - "192.168.100.1" 57 58 # remote_allow_list allows you to control ip ranges that this node will 59 # consider when handshaking to another node. By default, any remote IPs are 60 # allowed. You can provide CIDRs here with `true` to allow and `false` to 61 # deny. The most specific CIDR rule applies to each remote. If all rules are 62 # "allow", the default will be "deny", and vice-versa. If both "allow" and 63 # "deny" IPv4 rules are present, then you MUST set a rule for "0.0.0.0/0" as 64 # the default. Similarly if both "allow" and "deny" IPv6 rules are present, 65 # then you MUST set a rule for "::/0" as the default. 66 #remote_allow_list: 67 # Example to block IPs from this subnet from being used for remote IPs. 68 #"172.16.0.0/12": false 69 70 # A more complicated example, allow public IPs but only private IPs from a specific subnet 71 #"0.0.0.0/0": true 72 #"10.0.0.0/8": false 73 #"10.42.42.0/24": true 74 75 # EXPERIMENTAL: This option may change or disappear in the future. 76 # Optionally allows the definition of remote_allow_list blocks 77 # specific to an inside VPN IP CIDR. 78 #remote_allow_ranges: 79 # This rule would only allow only private IPs for this VPN range 80 #"10.42.42.0/24": 81 #"192.168.0.0/16": true 82 83 # local_allow_list allows you to filter which local IP addresses we advertise 84 # to the lighthouses. This uses the same logic as `remote_allow_list`, but 85 # additionally, you can specify an `interfaces` map of regular expressions 86 # to match against interface names. The regexp must match the entire name. 87 # All interface rules must be either true or false (and the default will be 88 # the inverse). CIDR rules are matched after interface name rules. 89 # Default is all local IP addresses. 90 #local_allow_list: 91 # Example to block tun0 and all docker interfaces. 92 #interfaces: 93 #tun0: false 94 #'docker.*': false 95 # Example to only advertise this subnet to the lighthouse. 96 #"10.0.0.0/8": true 97 98 # advertise_addrs are routable addresses that will be included along with discovered addresses to report to the 99 # lighthouse, the format is "ip:port". `port` can be `0`, in which case the actual listening port will be used in its 100 # place, useful if `listen.port` is set to 0. 101 # This option is mainly useful when there are static ip addresses the host can be reached at that nebula can not 102 # typically discover on its own. Examples being port forwarding or multiple paths to the internet. 103 #advertise_addrs: 104 #- "1.1.1.1:4242" 105 #- "1.2.3.4:0" # port will be replaced with the real listening port 106 107 # EXPERIMENTAL: This option may change or disappear in the future. 108 # This setting allows us to "guess" what the remote might be for a host 109 # while we wait for the lighthouse response. 110 #calculated_remotes: 111 # For any Nebula IPs in 10.0.10.0/24, this will apply the mask and add 112 # the calculated IP as an initial remote (while we wait for the response 113 # from the lighthouse). Both CIDRs must have the same mask size. 114 # For example, Nebula IP 10.0.10.123 will have a calculated remote of 115 # 192.168.1.123 116 #10.0.10.0/24: 117 #- mask: 192.168.1.0/24 118 # port: 4242 119 120 # Port Nebula will be listening on. The default here is 4242. For a lighthouse node, the port should be defined, 121 # however using port 0 will dynamically assign a port and is recommended for roaming nodes. 122 listen: 123 # To listen on both any ipv4 and ipv6 use "::" 124 host: 0.0.0.0 125 port: 4242 126 # Sets the max number of packets to pull from the kernel for each syscall (under systems that support recvmmsg) 127 # default is 64, does not support reload 128 #batch: 64 129 # Configure socket buffers for the udp side (outside), leave unset to use the system defaults. Values will be doubled by the kernel 130 # Default is net.core.rmem_default and net.core.wmem_default (/proc/sys/net/core/rmem_default and /proc/sys/net/core/rmem_default) 131 # Maximum is limited by memory in the system, SO_RCVBUFFORCE and SO_SNDBUFFORCE is used to avoid having to raise the system wide 132 # max, net.core.rmem_max and net.core.wmem_max 133 #read_buffer: 10485760 134 #write_buffer: 10485760 135 # By default, Nebula replies to packets it has no tunnel for with a "recv_error" packet. This packet helps speed up reconnection 136 # in the case that Nebula on either side did not shut down cleanly. This response can be abused as a way to discover if Nebula is running 137 # on a host though. This option lets you configure if you want to send "recv_error" packets always, never, or only to private network remotes. 138 # valid values: always, never, private 139 # This setting is reloadable. 140 #send_recv_error: always 141 142 # Routines is the number of thread pairs to run that consume from the tun and UDP queues. 143 # Currently, this defaults to 1 which means we have 1 tun queue reader and 1 144 # UDP queue reader. Setting this above one will set IFF_MULTI_QUEUE on the tun 145 # device and SO_REUSEPORT on the UDP socket to allow multiple queues. 146 # This option is only supported on Linux. 147 #routines: 1 148 149 punchy: 150 # Continues to punch inbound/outbound at a regular interval to avoid expiration of firewall nat mappings 151 punch: true 152 153 # respond means that a node you are trying to reach will connect back out to you if your hole punching fails 154 # this is extremely useful if one node is behind a difficult nat, such as a symmetric NAT 155 # Default is false 156 #respond: true 157 158 # delays a punch response for misbehaving NATs, default is 1 second. 159 #delay: 1s 160 161 # set the delay before attempting punchy.respond. Default is 5 seconds. respond must be true to take effect. 162 #respond_delay: 5s 163 164 # Cipher allows you to choose between the available ciphers for your network. Options are chachapoly or aes 165 # IMPORTANT: this value must be identical on ALL NODES/LIGHTHOUSES. We do not/will not support use of different ciphers simultaneously! 166 #cipher: aes 167 168 # Preferred ranges is used to define a hint about the local network ranges, which speeds up discovering the fastest 169 # path to a network adjacent nebula node. 170 # This setting is reloadable. 171 #preferred_ranges: ["172.16.0.0/24"] 172 173 # sshd can expose informational and administrative functions via ssh. This can expose informational and administrative 174 # functions, and allows manual tweaking of various network settings when debugging or testing. 175 #sshd: 176 # Toggles the feature 177 #enabled: true 178 # Host and port to listen on, port 22 is not allowed for your safety 179 #listen: 127.0.0.1:2222 180 # A file containing the ssh host private key to use 181 # A decent way to generate one: ssh-keygen -t ed25519 -f ssh_host_ed25519_key -N "" < /dev/null 182 #host_key: ./ssh_host_ed25519_key 183 # Authorized users and their public keys 184 #authorized_users: 185 #- user: steeeeve 186 # keys can be an array of strings or single string 187 #keys: 188 #- "ssh public key string" 189 # Trusted SSH CA public keys. These are the public keys of the CAs that are allowed to sign SSH keys for access. 190 #trusted_cas: 191 #- "ssh public key string" 192 193 # EXPERIMENTAL: relay support for networks that can't establish direct connections. 194 relay: 195 # Relays are a list of Nebula IP's that peers can use to relay packets to me. 196 # IPs in this list must have am_relay set to true in their configs, otherwise 197 # they will reject relay requests. 198 #relays: 199 #- 192.168.100.1 200 #- <other Nebula VPN IPs of hosts used as relays to access me> 201 # Set am_relay to true to permit other hosts to list my IP in their relays config. Default false. 202 am_relay: false 203 # Set use_relays to false to prevent this instance from attempting to establish connections through relays. 204 # default true 205 use_relays: true 206 207 # Configure the private interface. Note: addr is baked into the nebula certificate 208 tun: 209 # When tun is disabled, a lighthouse can be started without a local tun interface (and therefore without root) 210 disabled: false 211 # Name of the device. If not set, a default will be chosen by the OS. 212 # For macOS: if set, must be in the form `utun[0-9]+`. 213 # For NetBSD: Required to be set, must be in the form `tun[0-9]+` 214 dev: nebula1 215 # Toggles forwarding of local broadcast packets, the address of which depends on the ip/mask encoded in pki.cert 216 drop_local_broadcast: false 217 # Toggles forwarding of multicast packets 218 drop_multicast: false 219 # 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 220 tx_queue: 500 221 # Default MTU for every packet, safe setting is (and the default) 1300 for internet based traffic 222 mtu: 1300 223 224 # Route based MTU overrides, you have known vpn ip paths that can support larger MTUs you can increase/decrease them here 225 routes: 226 #- mtu: 8800 227 # route: 10.0.0.0/16 228 229 # Unsafe routes allows you to route traffic over nebula to non-nebula nodes 230 # Unsafe routes should be avoided unless you have hosts/services that cannot run nebula 231 # NOTE: The nebula certificate of the "via" node *MUST* have the "route" defined as a subnet in its certificate 232 # `mtu`: will default to tun mtu if this option is not specified 233 # `metric`: will default to 0 if this option is not specified 234 # `install`: will default to true, controls whether this route is installed in the systems routing table. 235 # This setting is reloadable. 236 unsafe_routes: 237 #- route: 172.16.1.0/24 238 # via: 192.168.100.99 239 # mtu: 1300 240 # metric: 100 241 # install: true 242 243 # On linux only, set to true to manage unsafe routes directly on the system route table with gateway routes instead of 244 # in nebula configuration files. Default false, not reloadable. 245 #use_system_route_table: false 246 247 # TODO 248 # Configure logging level 249 logging: 250 # panic, fatal, error, warning, info, or debug. Default is info and is reloadable. 251 #NOTE: Debug mode can log remotely controlled/untrusted data which can quickly fill a disk in some 252 # scenarios. Debug logging is also CPU intensive and will decrease performance overall. 253 # Only enable debug logging while actively investigating an issue. 254 level: info 255 # json or text formats currently available. Default is text 256 format: text 257 # Disable timestamp logging. useful when output is redirected to logging system that already adds timestamps. Default is false 258 #disable_timestamp: true 259 # timestamp format is specified in Go time format, see: 260 # https://golang.org/pkg/time/#pkg-constants 261 # default when `format: json`: "2006-01-02T15:04:05Z07:00" (RFC3339) 262 # default when `format: text`: 263 # when TTY attached: seconds since beginning of execution 264 # otherwise: "2006-01-02T15:04:05Z07:00" (RFC3339) 265 # As an example, to log as RFC3339 with millisecond precision, set to: 266 #timestamp_format: "2006-01-02T15:04:05.000Z07:00" 267 268 #stats: 269 #type: graphite 270 #prefix: nebula 271 #protocol: tcp 272 #host: 127.0.0.1:9999 273 #interval: 10s 274 275 #type: prometheus 276 #listen: 127.0.0.1:8080 277 #path: /metrics 278 #namespace: prometheusns 279 #subsystem: nebula 280 #interval: 10s 281 282 # enables counter metrics for meta packets 283 # e.g.: `messages.tx.handshake` 284 # NOTE: `message.{tx,rx}.recv_error` is always emitted 285 #message_metrics: false 286 287 # enables detailed counter metrics for lighthouse packets 288 # e.g.: `lighthouse.rx.HostQuery` 289 #lighthouse_metrics: false 290 291 # Handshake Manager Settings 292 #handshakes: 293 # Handshakes are sent to all known addresses at each interval with a linear backoff, 294 # Wait try_interval after the 1st attempt, 2 * try_interval after the 2nd, etc, until the handshake is older than timeout 295 # A 100ms interval with the default 10 retries will give a handshake 5.5 seconds to resolve before timing out 296 #try_interval: 100ms 297 #retries: 20 298 299 # query_buffer is the size of the buffer channel for querying lighthouses 300 #query_buffer: 64 301 302 # trigger_buffer is the size of the buffer channel for quickly sending handshakes 303 # after receiving the response for lighthouse queries 304 #trigger_buffer: 64 305 306 307 # Nebula security group configuration 308 firewall: 309 # Action to take when a packet is not allowed by the firewall rules. 310 # Can be one of: 311 # `drop` (default): silently drop the packet. 312 # `reject`: send a reject reply. 313 # - For TCP, this will be a RST "Connection Reset" packet. 314 # - For other protocols, this will be an ICMP port unreachable packet. 315 outbound_action: drop 316 inbound_action: drop 317 318 # Controls the default value for local_cidr. Default is true, will be deprecated after v1.9 and defaulted to false. 319 # This setting only affects nebula hosts with subnets encoded in their certificate. A nebula host acting as an 320 # unsafe router with `default_local_cidr_any: true` will expose their unsafe routes to every inbound rule regardless 321 # of the actual destination for the packet. Setting this to false requires each inbound rule to contain a `local_cidr` 322 # if the intention is to allow traffic to flow to an unsafe route. 323 #default_local_cidr_any: false 324 325 conntrack: 326 tcp_timeout: 12m 327 udp_timeout: 3m 328 default_timeout: 10m 329 330 # The firewall is default deny. There is no way to write a deny rule. 331 # Rules are comprised of a protocol, port, and one or more of host, group, or CIDR 332 # Logical evaluation is roughly: port AND proto AND (ca_sha OR ca_name) AND (host OR group OR groups OR cidr) AND (local cidr) 333 # - 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). 334 # 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` 335 # proto: `any`, `tcp`, `udp`, or `icmp` 336 # host: `any` or a literal hostname, ie `test-host` 337 # group: `any` or a literal group name, ie `default-group` 338 # 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 339 # cidr: a remote CIDR, `0.0.0.0/0` is any. 340 # local_cidr: a local CIDR, `0.0.0.0/0` is any. This could be used to filter destinations when using unsafe_routes. 341 # Default is `any` unless the certificate contains subnets and then the default is the ip issued in the certificate 342 # if `default_local_cidr_any` is false, otherwise its `any`. 343 # ca_name: An issuing CA name 344 # ca_sha: An issuing CA shasum 345 346 outbound: 347 # Allow all outbound traffic from this node 348 - port: any 349 proto: any 350 host: any 351 352 inbound: 353 # Allow icmp between any nebula hosts 354 - port: any 355 proto: icmp 356 host: any 357 358 # Allow tcp/443 from any host with BOTH laptop and home group 359 - port: 443 360 proto: tcp 361 groups: 362 - laptop 363 - home 364 365 # Expose a subnet (unsafe route) to hosts with the group remote_client 366 # This example assume you have a subnet of 192.168.100.1/24 or larger encoded in the certificate 367 - port: 8080 368 proto: tcp 369 group: remote_client 370 local_cidr: 192.168.100.1/24