Releases: OpenSecFlow/netdriver
Releases · OpenSecFlow/netdriver
NetDriver Simunet 0.4.0
netdriver-simunet 0.4.0
📦 Package
netdriver-simunet - SSH server simulation for testing network device terminals
🛠️ Preparation
# Create directories
mkdir -p config/simunet logs
# Download default configuration
curl -o config/simunet/simunet.yml https://raw.githubusercontent.com/OpenSecFlow/netdriver/master/config/simunet/simunet.yml📥 Installation
PyPI:
pip install netdriver-simunet==0.4.0Docker:
# Pull the image
docker pull ghcr.io/opensecflow/netdriver-simunet:0.4.0
# Run with host network mode
docker run -d --network host \
-v $(pwd)/config:/app/config \
-v $(pwd)/logs:/app/logs \
ghcr.io/opensecflow/netdriver-simunet:0.4.0Available tags: 0.4.0, latest
Platforms: linux/amd64, linux/arm64
📝 Changes
See CHANGELOG for detailed changes.
Full Changelog: agent-0.4.0...simunet-0.4.0
NetDriver Agent 0.4.0
netdriver-agent 0.4.0
📦 Package
netdriver-agent - FastAPI-based REST API service for network device automation
🛠️ Preparation
# Create directories
mkdir -p config/agent logs
# Download default configuration
curl -o config/agent/agent.yml https://raw.githubusercontent.com/OpenSecFlow/netdriver/master/config/agent/agent.yml📥 Installation
PyPI:
pip install netdriver-agent==0.4.0Docker:
# Pull the image
docker pull ghcr.io/opensecflow/netdriver-agent:0.4.0
# Run the agent
docker run -d -p 8000:8000 \
-v $(pwd)/config:/app/config \
-v $(pwd)/logs:/app/logs \
ghcr.io/opensecflow/netdriver-agent:0.4.0Available tags: 0.4.0, latest
Platforms: linux/amd64, linux/arm64
📝 Changes
See CHANGELOG for detailed changes.
What's Changed
- Readme updates by @PanMarkCake in #2
- feat: Add PyPI packaging and GitHub Actions auto-publish by @ZHbobby in #3
- Update test case by @SamBriskman in #4
New Contributors
- @PanMarkCake made their first contribution in #2
- @ZHbobby made their first contribution in #3
- @SamBriskman made their first contribution in #4
Full Changelog: https://github.com/OpenSecFlow/netdriver/commits/agent-0.4.0