Screenshots
This commit is contained in:
parent
974a5acb9b
commit
03846c4365
6 changed files with 18 additions and 2 deletions
18
README.md
18
README.md
|
|
@ -9,7 +9,12 @@
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
Lightweight network IP scanner with web GUI
|
Lightweight network IP scanner with web GUI. Features:
|
||||||
|
- Send notification when new host is found
|
||||||
|
- Monitor hosts online/offline history
|
||||||
|
- Keep a list of all hosts in the network
|
||||||
|
- Send data to `InfluxDB2` to make a `Grafana` dashboard
|
||||||
|
|
||||||
> [!WARNING]
|
> [!WARNING]
|
||||||
> This is version 2.0. Version 1.0 can be found in this brunch: [v1](https://github.com/aceberg/WatchYourLAN/tree/v1)
|
> This is version 2.0. Version 1.0 can be found in this brunch: [v1](https://github.com/aceberg/WatchYourLAN/tree/v1)
|
||||||
|
|
||||||
|
|
@ -18,6 +23,17 @@ Lightweight network IP scanner with web GUI
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## More screenshots
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Expand</summary>
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
</details>
|
||||||
|
|
||||||
## Quick start
|
## Quick start
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
|
||||||
BIN
assets/Screenshot_2.png
Normal file
BIN
assets/Screenshot_2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 85 KiB |
BIN
assets/Screenshot_3.png
Normal file
BIN
assets/Screenshot_3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 85 KiB |
BIN
assets/Screenshot_4.png
Normal file
BIN
assets/Screenshot_4.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
BIN
assets/Screenshot_5.png
Normal file
BIN
assets/Screenshot_5.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 97 KiB |
|
|
@ -16,7 +16,7 @@ func scanIface(iface string) string {
|
||||||
var cmd *exec.Cmd
|
var cmd *exec.Cmd
|
||||||
|
|
||||||
if arpArgs != "" {
|
if arpArgs != "" {
|
||||||
cmd = exec.Command("arp-scan", "-glNx", arpArgs, "-I", iface)
|
cmd = exec.Command("arp-scan", arpArgs, "-I", iface)
|
||||||
} else {
|
} else {
|
||||||
cmd = exec.Command("arp-scan", "-glNx", "-I", iface)
|
cmd = exec.Command("arp-scan", "-glNx", "-I", iface)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue