Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tchoupinax/network-inventory

Webapp to visualize your network easily. Detect conflicts, bad networks and others...
https://github.com/tchoupinax/network-inventory

homelab infrastructure network

Last synced: 15 days ago
JSON representation

Webapp to visualize your network easily. Detect conflicts, bad networks and others...

Awesome Lists containing this project

README

        

# network-inventory

![Screenshot of the app](./.github/docs/overview.png)

## How to use the project (only locally for the moment!)

- Firstly, start project with `yarn watch` (`yarn install` is required for the first time).
- In `server/api/index.ts`, fill data with your own. It should respect Network interface.
- You can create a file name `local.json` at the root of the project.

[CIDR.xyz](https://cidr.xyz/) is a very good tool to compute networks.
```ts
type Network = {
name: string;
cidr: string; // "10.10.10.10/16" — https://cidr.xyz
color: string;
devices?: Array<{ name: string; ip: string }>;
};
```