Go to file
Nils 4806e6a18f
add note about passive mode
2021-05-31 21:08:35 +02:00
Dockerfile add passive launch option 2021-05-31 11:55:54 +02:00
LICENSE Initial commit 2021-05-29 16:13:22 +00:00
README.md add note about passive mode 2021-05-31 21:08:35 +02:00
docker-compose.yml add passive launch option 2021-05-31 11:55:54 +02:00
run.sh add passive launch option 2021-05-31 11:55:54 +02:00

README.md

netdiscover-docker

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)
  • passive // only listen but dont send requests

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

docker compose

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
#     - passive=true

credits

Netdiscover: https://github.com/netdiscover-scanner/netdiscover
GoTTY: https://github.com/yudai/gotty