Official issue tracker, bug reports, and feature requests for vNetMap
See the code
|
|
|
|
Welcome to the vNetMap issue tracker and documentation hub.
vNetMap is a hosted, end-to-end encrypted network visualization and IT infrastructure management platform. It allows you to automatically scan your local network using a lightweight, self-hosted Discovery Agent, accurately map physical and wireless connections, and manage your entire topology securely from any browser — no VPN or on-site access required to view your network map.
Security in vNetMap is not an afterthought. The platform is built on a strict Zero-Knowledge architecture to ensure your network layout remains completely private:
docker-compose.yaml — it comes pre-filled with your agent token and encryption key, ready to run on any machine with visibility into your network (utilizes Nmap and SNMP for discovery):
# docker-compose.yaml
services:
vnetmap-agent:
image: ghcr.io/vnetmap/vnetmap-agent:0.1.0
container_name: vnetmap-agent
environment:
- AGENT_TOKEN=[generated_agent_token]
- DATA_KEY=[generated_data_key]
- BACKEND_URL=https://app.vnetmap.com/api
cap_add:
- NET_ADMIN
- NET_RAW
volumes:
- ./data:/app/data
restart: unless-stopped
network_mode: "host"
NET_ADMIN/NET_RAW and host networking are required for Nmap-based scanning to work correctly; run it on any always-on machine (e.g. a Raspberry Pi or small VM) with network visibility into the segment you want to map.Currently, the core backend and frontend of vNetMap are closed-source. To ensure complete transparency and prove our zero-knowledge design, we will open-source the Discovery Agent soon. This lets you verify exactly what data is gathered and how local end-to-end encryption works before anything leaves your network.
Use this repository to track bugs, report issues, and request features for the vNetMap ecosystem.
Please utilize the available Issue Templates. Select "New Issue" and choose either a bug report or feature request. Follow the instructions provided in the forms. Check for existing issues before creating a new one to prevent duplicates.
If you find a security flaw, do not post it publicly. Please email support@vnetmap.com directly. We treat security seriously and will act quickly.
2 commits
Official issue tracker, bug reports, and feature requests for vNetMap
See the code
|
|
|
|
Welcome to the vNetMap issue tracker and documentation hub.
vNetMap is a hosted, end-to-end encrypted network visualization and IT infrastructure management platform. It allows you to automatically scan your local network using a lightweight, self-hosted Discovery Agent, accurately map physical and wireless connections, and manage your entire topology securely from any browser — no VPN or on-site access required to view your network map.
Security in vNetMap is not an afterthought. The platform is built on a strict Zero-Knowledge architecture to ensure your network layout remains completely private:
docker-compose.yaml — it comes pre-filled with your agent token and encryption key, ready to run on any machine with visibility into your network (utilizes Nmap and SNMP for discovery):
# docker-compose.yaml
services:
vnetmap-agent:
image: ghcr.io/vnetmap/vnetmap-agent:0.1.0
container_name: vnetmap-agent
environment:
- AGENT_TOKEN=[generated_agent_token]
- DATA_KEY=[generated_data_key]
- BACKEND_URL=https://app.vnetmap.com/api
cap_add:
- NET_ADMIN
- NET_RAW
volumes:
- ./data:/app/data
restart: unless-stopped
network_mode: "host"
NET_ADMIN/NET_RAW and host networking are required for Nmap-based scanning to work correctly; run it on any always-on machine (e.g. a Raspberry Pi or small VM) with network visibility into the segment you want to map.Currently, the core backend and frontend of vNetMap are closed-source. To ensure complete transparency and prove our zero-knowledge design, we will open-source the Discovery Agent soon. This lets you verify exactly what data is gathered and how local end-to-end encryption works before anything leaves your network.
Use this repository to track bugs, report issues, and request features for the vNetMap ecosystem.
Please utilize the available Issue Templates. Select "New Issue" and choose either a bug report or feature request. Follow the instructions provided in the forms. Check for existing issues before creating a new one to prevent duplicates.
If you find a security flaw, do not post it publicly. Please email support@vnetmap.com directly. We treat security seriously and will act quickly.
2 commits