Skip to content

displays a network graph over a map image, and pings the nodes to display their reachability and status

Notifications You must be signed in to change notification settings

dagrende/netmap

Repository files navigation

create table node (
	id INTEGER PRIMARY KEY AUTOINCREMENT,
	name varchar(256),
	host varchar(256),
	x number,
	y number
);

create table rel (
	srcNode integer,
	destNode integer,
	primary key (srcNode, destNode)
);

About

displays a network graph over a map image, and pings the nodes to display their reachability and status

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published