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
@@ -87,14 +87,14 @@ Note: speedtest.net has a limit on how frequently you can connection and run the
87
87
88
88
### Change Netprobe port
89
89
90
-
To change the port that Netprobe is running on, edit the 'compose.yml' file, under the 'grafana' section:
90
+
To change the port that Netprobe Lite is running on, edit the 'compose.yml' file, under the 'grafana' section:
91
91
92
92
```
93
93
ports:
94
94
- '3001:3000'
95
95
```
96
96
97
-
Change the port on the left to the port you want to access Netprobe on
97
+
Change the port on the left to the port you want to access Netprobe Lite on
98
98
99
99
### Customize DNS test
100
100
@@ -215,6 +215,38 @@ This will delete all containers and volumes related to Netprobe.
215
215
216
216
217
217
218
+
## FAQ & Troubleshooting
219
+
220
+
Q. How do I reset my Grafana password?
221
+
222
+
A. Delete the docker volume for grafana. This will reset your password but will leave your data:
223
+
224
+
```
225
+
docker volume rm netprobe_grafana_data
226
+
```
227
+
228
+
Q. I am running Pihole and when I enter my host IP under 'DNS_NAMESERVER_4_IP=' I receive this error:
229
+
230
+
```
231
+
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)
232
+
```
233
+
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:
234
+
235
+
1. Stop netprobe but don't wipe it (docker compose down)
236
+
2. Find the gateway IP of your netprobe-probe container:
237
+
```
238
+
$ docker inspect netprobe-probe | grep Gateway
239
+
"Gateway": "",
240
+
"IPv6Gateway": "",
241
+
"Gateway": "192.168.208.1",
242
+
"IPv6Gateway": "",
243
+
```
244
+
3. Enter that IP (e.g. 182.168.208.1) into your .env file for 'DNS_NAMESERVER_4_IP='
245
+
246
+
Q. I constantly see one of my DNS servers at 5s latency, is this normal?
247
+
248
+
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).
249
+
218
250
## License
219
251
220
252
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