Installation¶
Here are two option for using firewall migration tool:
Bash¶
Make a clone from the fwmig:
git clone https://github.com/VahidTa/firewall_migration_tool.gitgo into the directory:
cd firewall_migration_toolCreate a virtual env:
python3.13 -m venv .venvActivate the virtual env:
source .venv/bin/activateUse
pip install -r requirements.txtto install required packagesStart the app using
python app.pyConnect to
http://localhost:5000on browser.
Container¶
Make a clone from the fwmig:
git clone https://github.com/VahidTa/firewall_migration_tool.gitTo build and run container using Docker:
1docker build -t fwmig:latest
2docker run -p 8080:5000 --name=fwmig -d -v $(pwd)/logs:/code/logs/ -ti fwmig:latest
To build and run container using Podman:
1podman build -t fwmig:latest
2podman run -p 8080:5000 --name=fwmig -d -v $(pwd)/logs:/code/logs/ -ti fwmig:latest
Connect to
http://127.0.0.1:8080on browser.