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: README.md
+34-2Lines changed: 34 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,14 +51,14 @@ docker compose down
51
51
52
52
### Change Netprobe port
53
53
54
-
To change the port that Netprobe is running on, edit the 'compose.yml' file, under the 'grafana' section:
54
+
To change the port that Netprobe Lite is running on, edit the 'compose.yml' file, under the 'grafana' section:
55
55
56
56
```
57
57
ports:
58
58
- '3001:3000'
59
59
```
60
60
61
-
Change the port on the left to the port you want to access Netprobe on
61
+
Change the port on the left to the port you want to access Netprobe Lite on
62
62
63
63
### Customize DNS test
64
64
@@ -152,6 +152,38 @@ restart: always
152
152
153
153
More information can be found in the Docker documentation.
154
154
155
+
## FAQ & Troubleshooting
156
+
157
+
Q. How do I reset my Grafana password?
158
+
159
+
A. Delete the docker volume for grafana. This will reset your password but will leave your data:
160
+
161
+
```
162
+
docker volume rm netprobe_grafana_data
163
+
```
164
+
165
+
Q. I am running Pihole and when I enter my host IP under 'DNS_NAMESERVER_4_IP=' I receive this error:
166
+
167
+
```
168
+
The resolution lifetime expired after 5.138 seconds: Server Do53:192.168.0.91@53 answered got a response from ('172.21.0.1', 53) instead of ('192.168.0.91', 53)
169
+
```
170
+
A. This is a limitation of Docker. If you are running another DNS server in Docker and want to test it in Netprobe, you need to specify the Docker network gateway IP:
171
+
172
+
1. Stop netprobe but don't wipe it (docker compose down)
173
+
2. Find the gateway IP of your netprobe-probe container:
174
+
```
175
+
$ docker inspect netprobe-probe | grep Gateway
176
+
"Gateway": "",
177
+
"IPv6Gateway": "",
178
+
"Gateway": "192.168.208.1",
179
+
"IPv6Gateway": "",
180
+
```
181
+
3. Enter that IP (e.g. 182.168.208.1) into your .env file for 'DNS_NAMESERVER_4_IP='
182
+
183
+
Q. I constantly see one of my DNS servers at 5s latency, is this normal?
184
+
185
+
A. 5s is the timeout for DNS queries in Netprobe Lite. If you see this happening for one specific IP, likely your machine is having issues using that DNS server (and so you shouldn't use it for home use).
186
+
155
187
## License
156
188
157
189
This project is released under a custom license that restricts commercial use. You are free to use, modify, and distribute the software for non-commercial purposes. Commercial use of this software is strictly prohibited without prior permission. If you have any questions or wish to use this software commercially, please contact [[email protected]].
0 commit comments