Running in docker
Running FakeNOS in a container enables numerous integrations use cases.
Running with Docker¶
Pre-built FakeNOS docker container published to DockerHUB repository
Build and Run with Docker-Compose¶
FakeNOS GitHub repository contains docker-compose and Docker files to build
and start FakeNOS in a container. To use it, providing that you already installed
Docker,
Docker-Compose and
GIT on the system:
git clone https://github.com/fakenos/fakenos.git # (1)
cd fakenos/docker/ # (2)
docker-compose up -d # (3)
ssh 10.100.0.2 -l user -p 6001 # (4)
- Clone FakeNOS repository from GitHub
- Navigate to fakenos docker directory
- Build and start container in detached (
-d) mode - Initiate SSH connection to FakeNOS router
fakenos container uses 10.100.0.2 IP address by default as specified in
docker-compose.yaml file.
fakenos/docker/ folder contains fakenos_inventory.yaml file, with inventory
that is used to start FakeNOS inside a container:
default:
username: "user"
password: "user"
port: [10000, 60000]
server:
plugin: "ParamikoSshServer"
configuration:
address: "0.0.0.0"
timeout: 1
shell: {plugin: "CMDShell", configuration: {}}
nos: {plugin: "cisco_ios", configuration: {}}
hosts:
router: {count: 10, port: [6001, 7000]}
Adjust inventory settings before running the container or update inventory content
and restart fakenos container to apply changes - docker restart fakenos
Inventory file bound to the fakenos container as a volume in docker-compose file,
as a result any changes to fakenos_inventory.yaml file visible to fakenos process
running inside the container.