Skip to content

Releases: OpenSecFlow/netdriver

NetDriver Simunet 0.4.0

31 Oct 12:07

Choose a tag to compare

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.0

Docker:

# 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.0

Available 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

31 Oct 12:01

Choose a tag to compare

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.0

Docker:

# 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.0

Available tags: 0.4.0, latest

Platforms: linux/amd64, linux/arm64

📝 Changes

See CHANGELOG for detailed changes.

What's Changed

New Contributors

Full Changelog: https://github.com/OpenSecFlow/netdriver/commits/agent-0.4.0