You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/internal/debug/debug.go
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,8 @@ interfaces.txt: Anonymized network interface information, if --system-info flag
44
44
ip_rules.txt: Detailed IP routing rules in tabular format including priority, source, destination, interfaces, table, and action information (Linux only), if --system-info flag was provided.
45
45
iptables.txt: Anonymized iptables rules with packet counters, if --system-info flag was provided.
46
46
nftables.txt: Anonymized nftables rules with packet counters, if --system-info flag was provided.
47
+
resolv.conf: DNS resolver configuration from /etc/resolv.conf (Unix systems only), if --system-info flag was provided.
48
+
scutil_dns.txt: DNS configuration from scutil --dns (macOS only), if --system-info flag was provided.
47
49
resolved_domains.txt: Anonymized resolved domain IP addresses from the status recorder.
48
50
config.txt: Anonymized configuration information of the NetBird client.
49
51
network_map.json: Anonymized sync response containing peer configurations, routes, DNS settings, and firewall rules.
@@ -184,6 +186,20 @@ The ip_rules.txt file contains detailed IP routing rule information:
184
186
The table format provides comprehensive visibility into the IP routing decision process, including how traffic is directed to different routing tables based on various criteria. This is valuable for troubleshooting advanced routing configurations and policy-based routing.
185
187
186
188
For anonymized rules, IP addresses and prefixes are replaced as described above. Interface names are anonymized using string anonymization. Table names, actions, and other non-sensitive information remain unchanged.
189
+
190
+
DNS Configuration
191
+
The debug bundle includes platform-specific DNS configuration files:
192
+
193
+
resolv.conf (Unix systems):
194
+
- Contains DNS resolver configuration from /etc/resolv.conf
195
+
- Includes nameserver entries, search domains, and resolver options
196
+
- All IP addresses and domain names are anonymized following the same rules as other files
197
+
198
+
scutil_dns.txt (macOS only):
199
+
- Contains detailed DNS configuration from scutil --dns
200
+
- Shows DNS configuration for all network interfaces
201
+
- Includes search domains, nameservers, and DNS resolver settings
202
+
- All IP addresses and domain names are anonymized
0 commit comments