Skip to content

opennetworktools/netmon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Netmon

Network Monitor (Netmon)

Getting Started

Backend

Build the application,

go build

Start the collector (to collect network packets) and visualise the packet information in CLI.

sudo ./netmon watch packets wlp0s20f3 // Replace wlp0s20f3 with your network interface

Run ./netmon show interfaces describe to know about your network interfaces.

Replace wlp0s20f3 with your system's interface.

Otherwise, if you want to visualise a web page,

sudo ./netmon watch packets wlp0s20f3 web

Note: Remember to start the frontend if you use the above command.

Frontend

cd web/netmon-ui
npm run dev

After executing the above commands, go to port 5173.