mapik / watcher-nms
Watcher NMS
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=8.1
- cakedc/users: ^14.0.0
- cakephp/cakephp: ^5.0.6
- cakephp/migrations: ^4.0.0
- cakephp/plugin-installer: ^2.0
- composer/composer: ^2.6.6
- dereuromark/cakephp-geo: ^3.0.0
- geocoder-php/google-maps-provider: ^4.7.1
- league/oauth2-google: ^4.0
- mapik/audit-log: ^5.0
- mobiledetect/mobiledetectlib: ^4.8
Requires (Dev)
- cakedc/cakephp-phpstan: ^3.0.0
- cakephp/bake: ^3.0.0
- cakephp/cakephp-codesniffer: ^5.0
- cakephp/debug_kit: ^5.0.0
- josegonzalez/dotenv: ^4.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.8
- phpunit/phpunit: ^10.1.0
- psalm/phar: ^5.12
Suggests
- cakephp/repl: Console tools for a REPL interface for CakePHP applications.
- dereuromark/cakephp-ide-helper: After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.
- markstory/asset_compress: An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.
- phpstan/phpstan: PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code.
- 3.x-dev
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 3.0.0-RC6
- 3.0.0-RC5
- 3.0.0-RC4
- 3.0.0-RC3
- 3.0.0-RC2
- 3.0.0-RC1
- 2.x-dev
- 2.3.0
- 2.2.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.10.4
- 1.10.3
- 1.10.2
- 1.10.1
- 1.10.0
- 1.9.2
- 1.9.1
- 1.9.0
- 1.8.6
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.6.0-RC1
- 1.6.0-beta3
- 1.6.0-beta2
- 1.6.0-beta1
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-11-13 13:05:35 UTC
README
The framework source code can be found here: cakephp/cakephp.
Description
- Network Management System for evidence of access points, used devices, electricity meter readings and etc.
- can automatically load RouterOS devices (via SNMP) based on HTTP/S request from device itself - it describes own device type identifier (must be defined in system)
- it can automatically check interferences with Czech weather radar stations
Usage
Example of scheduler for RouterOS device:
/tool fetch url=("https://nms.watcher.domain/routeros-devices/configuration-script/{device-type-identifier}/" . [/system routerboard get serial-number] . "/watcher-config.rsc")
:delay 5
/file remove watcher-config.rsc
if you want also to change admin password to one generated by system based on serial number and SALT set in system, you can use this...
/tool fetch url=("https://nms.watcher.domain/routeros-devices/configuration-script/{device-type-identifier}/" . [/system routerboard get serial-number] . "/watcher-config.rsc")
/import watcher-config.rsc
:delay 5
/file remove watcher-config.rsc
Password can be found under View of this RouterOS Device
Installation
- Download Composer or update
composer self-update
. - Run
php composer.phar create-project --prefer-dist mapik/watcher-nms [app_name]
.
If Composer is installed globally, run
composer create-project --prefer-dist mapik/watcher-nms
In case you want to use a custom app dir name (e.g. /myapp/
):
composer create-project --prefer-dist mapik/watcher-nms myapp
You can now either use your machine's webserver to view the default home page, or start up the built-in webserver with:
bin/cake server -p 8765
Then visit http://localhost:8765
to see the welcome page.
Configuration
Create and edit the config/.env
or set system environment variables (eg. for Docker).
Layout
The app uses Milligram (v1.3) minimalist CSS framework.