├── .gitignore ├── .gitmodules ├── README.md ├── api_modules ├── interface.py ├── machine.py ├── machines.py ├── router.py ├── switch.py ├── virtualnic.py └── virtualnics.py ├── cert.pem ├── documentation └── screenshot.png ├── key.pem ├── main.py └── web_root ├── favicon.ico ├── index.html ├── logo.png ├── slider.css ├── vmanager-gui.css ├── vmanager-gui.js └── vmanager.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/README.md -------------------------------------------------------------------------------- /api_modules/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/interface.py -------------------------------------------------------------------------------- /api_modules/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/machine.py -------------------------------------------------------------------------------- /api_modules/machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/machines.py -------------------------------------------------------------------------------- /api_modules/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/router.py -------------------------------------------------------------------------------- /api_modules/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/switch.py -------------------------------------------------------------------------------- /api_modules/virtualnic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/virtualnic.py -------------------------------------------------------------------------------- /api_modules/virtualnics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/api_modules/virtualnics.py -------------------------------------------------------------------------------- /cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/cert.pem -------------------------------------------------------------------------------- /documentation/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/documentation/screenshot.png -------------------------------------------------------------------------------- /key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/key.pem -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/main.py -------------------------------------------------------------------------------- /web_root/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/favicon.ico -------------------------------------------------------------------------------- /web_root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/index.html -------------------------------------------------------------------------------- /web_root/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/logo.png -------------------------------------------------------------------------------- /web_root/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/slider.css -------------------------------------------------------------------------------- /web_root/vmanager-gui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/vmanager-gui.css -------------------------------------------------------------------------------- /web_root/vmanager-gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/vmanager-gui.js -------------------------------------------------------------------------------- /web_root/vmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torxed/Vmanager-gui/HEAD/web_root/vmanager.js --------------------------------------------------------------------------------