-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.toml
More file actions
42 lines (41 loc) · 2.05 KB
/
Copy pathdefault.toml
File metadata and controls
42 lines (41 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# debug is a switch to enable packet debugging output.
debug = false
# auto is a switch to find and use the defined LAN interface for listening (OPNSense/pfSense).
# overrides listen_interfaces.
auto = false
# listen_interfaces contains the names or indexes of interfaces for listen/capture.
# At least one interface must be configured before starting the daemon.
listen_interfaces = []
# forward_bind is the local IP address to bind the TCP broadcast stream to.
# empty binds all interfaces (default).
forward_bind = ""
# forward_port is the TCP stream/broadcast port for forwarding IP report packet data.
forward_port = 7788
# forward_known is a switch to only forward IP reports from known miner types/ports over forward_port.
forward_known = false
# mdns advertises the TCP forwarding endpoint as _iprd._tcp.local. for LAN discovery.
mdns = false
# no_root_network is a switch to remove the interface network from BPF filter.
# must add additional network inclusions via network_inclusions.
no_root_network = false
# ignored_devices is a list of source MAC addresses to exclude in BPF filter.
ignored_devices = [""]
# network_inclusions is a list of networks to append in BPF filter.
# networks are IPv4 network numbers that can be written as
# dotted quad (192.168.1.0), triple (192.168.1), pair (192.168) or a single number (10).
network_inclusions = [""]
# network_exclusions is a list of networks to additionally exclude in BPF filter.
# these get appended after network_inclusions.
network_exclusions = [""]
# capture_file is a path to write received packets to in PCAP-NG format for replay/debugging.
capture_file = ""
# rotate_capture_files keeps the active capture plus three numbered history files instead of flushing it.
rotate_capture_files = false
# Per-interface BPF options overlay the global options above. The selector
# should also appear in listen_interfaces. Repeat [[interfaces]] for each interface.
# [[interfaces]]
# selector = "eth0"
# no_root_network = true
# ignored_devices = ["aa:bb:cc:dd:ee:ff"]
# network_inclusions = ["192.168.1"]
# network_exclusions = ["10"]