"Reality is merely an illusion, albeit a very persistent one."
~ Albert Einstein
SIMNOS simulates Network Operating Systems interactions. You can simulate network devices like Cisco IOS or Huawei SmartAX interactions over SSH with little effort. This project is mainly intended for testing and development purposes.
Documentation | Examples | Platforms
SIMNOS is an independent project derived from FakeNOS, created by Denis Mulyalin and maintained by Enric Perpinyà Pitarch. After significant divergence in tooling, platforms, and architecture, it was rebranded as SIMNOS to avoid confusion with the upstream project.
AI Transparency: AI-assisted development (Claude Code, Codex, Gemini, etc.) is actively used in this project. All AI-generated changes are reviewed by a human maintainer before merging.
Key differences from FakeNOS:
- Package name:
simnos(on PyPI) - Package manager: uv (migrated from Poetry)
- Linter/Formatter: Ruff (migrated from Black/Pylint)
- Python support: 3.13 / 3.14
- CI: Modernized GitHub Actions workflow
- NOS platforms: 5 additional platforms enabled (brocade_fastiron, ciena_saos, fortinet, juniper_screenos, ruckus_fastiron)
- Paramiko: upgraded to 4.0 with DH Group Exchange server-mode workaround
Crucial aspect of writing applications or scripts for Network Automation is testing, often testing done using physical or virtual instances of network appliances running certain version of Network Operating System (NOS). That approach, while gives best integration results, in many cases carries a lot of overhead to setup, run and tear down as well as putting significant burden on compute and storage resource utilization.
Other approach is to mock underlying libraries methods to fool applications under testing into believing that it is getting output from real devices. That approach works very well for unit testing, but fails to simulate such aspects as connection establishment and handling.
SIMNOS positions itself somewhere in the middle between full integration testing and testing that mocks device interactions. SIMNOS allows to create NOS plugins to produce pre-defined output to test applications behavior while running servers to establish connections with.
SIMNOS can:
- Run thousands of servers to stress test applications
- Simulate Network Operating Systems Command Line Interface (CLI) interactions
- Provide high-level API to create custom NOS plugins
- Run in docker container to simplify integration with your infrastructure
- Make use of SIMNOS CLI tool for quick run and prototype simulations
- Works on Windows, Mac and Linux under Python 3.13 and 3.14
Send input and get the output - this is how we interact with many Network Operating Systems, SIMNOS allows to pre-define the output to sent in response to certain input commands, making it ideal for isolated feature testing.
SIMNOS is a micro-kernel framework that can be extended using plugins. The core is kept small and optimized while most of the functionality offloaded to plugins.
SIMNOS has these pluggable systems:
- Server Plugins - plugins responsible for running various servers to connect with
- Shell Plugins - plugins to simulate command line interface shell
- NOS plugins - plugins to simulate Network Operating System commands
SIMNOS is a simulator, it does not emulate any of Network Control, Data or Management planes, it merely takes the commands as input and responds with predefined output.
SIMNOS is built upon the work of FakeNOS. We are grateful to the original creators and contributors:
- Denis Mulyalin - Original Creator of FakeNOS
- Enric Perpinyà Pitarch - Main Collaborator and Maintainer of FakeNOS
- sshim - library for testing and debugging SSH automation clients
- PythonSSHServerTutorial - tutorial on creating paramiko based SSH server
- fake-switches - pluggable switch/router command-line simulator
- ncs-netsim - tool to simulate a network of devices
- cisshgo - concurrent SSH server to emulate network equipment for testing purposes
- scrapli-replay - tools to enable easy testing of SSH programs and to create semi-interactive SSH servers