netdiscover-docker/README.md

33 lines
933 B
Markdown
Raw Permalink Normal View History

2021-05-29 16:13:22 +00:00
# netdiscover-docker
2021-05-29 16:31:23 +00:00
this container will expose a netdiscover instance via http
currently supported (optional) arguments are:
- port // specifies the port (def. 8080)
- userpass // sets http basic auth - ex. user:pass (def. none)
- title // sets tab title (def. netdiscover-docker)
2021-05-31 09:56:53 +00:00
- passive // only listen but dont send requests
2021-05-29 16:31:23 +00:00
2021-05-31 19:08:35 +00:00
# note
if you intend on permanently running the container, i would recommend using the passive option, as most consumer switches will fill their arp cache very quickly
2021-05-29 16:31:23 +00:00
# docker compose
```yaml
version: '2.3'
services:
netdiscover-docker:
container_name: netdiscover-docker
network_mode: host
image: byreqz/netdiscover-docker:latest
restart: unless-stopped
# environment:
# - port=1234
# - userpass=user:pass
# - title=1234
2021-05-31 09:56:53 +00:00
# - passive=true
2021-05-29 16:31:23 +00:00
```
# credits
Netdiscover: https://github.com/netdiscover-scanner/netdiscover <br>
GoTTY: https://github.com/yudai/gotty