/Rally_network_manager

A fork of RivLink_manager tailored for a rally infrastructure

Primary LanguagePython

Rally Network Manager

Rally Network Manager is an attempt to make network switches administration accessible to anyone.

Installation

git clone https://github.com/pinembour/Rally_network_manager
cd Rally_network_manager
virtualenv --python=python3 env
source env/bin/activate
pip install django
pip install napalm
./manage.py makemigrations
./manage.py makemigrations core
./manage.py migrate
./manage.py createsuperuser

Configuration

Edit rally_network_manager/settings.py

  • Input your own secret key
  • Set debug to false
  • Add all the allowed hosts you need, for example 127.0.0.0.1 or domain.local

Run

source env/bin/activate
./manage.py runserver 0.0.0.0:8000