Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

mikrotik-routeros路由器路由器

Agent Skill

mikrotik-routeros 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,693

周安装

157

GitHub Stars

1

下载量

1,294
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mikrotik-routeros(路由器路由器)
来源仓库:https://github.com/drodecker/mikrotik-routeros
安装命令:
openclaw skills install mikrotik-routeros
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mikrotik-routeros

简介

通过 API 管理 MikroTik RouterOS 设备,以查看状态、防火墙、网络配置、日志、用户、备份并跨多个设备运行自定义命令。

SKILL.md

MikroTik RouterOS Skill

description: Connect and manage MikroTik RouterOS devices via API. Supports viewing device status, firewall rules, network configuration, and executing custom RouterOS commands.

Connect and manage MikroTik RouterOS devices via API.

Features

  • View device status (system info, CPU, memory, storage)
  • View firewall rules (filter, NAT, mangle)
  • View network configuration (interfaces, IP addresses, routes, DNS)
  • Execute custom RouterOS commands
  • Support for multi-device connection

Configuration

Option 1: TOOLS.md (Recommended)

Add device info in ~/.openclaw/workspace/TOOLS.md:

MikroTik Devices

  • office: 192.168.88.1, admin, empty password

Password format:

  • Empty password: write empty password, no password, none, or leave blank
  • With password: write the password string directly

Option 2: Environment Variables

export MIKROTIK_HOST=192.168.88.1
export MIKROTIK_USER=admin
export MIKROTIK_PASS=        # empty password
# or
export MIKROTIK_PASS=yourpassword  # with password

Priority: Environment Variables > TOOLS.md > Defaults

Usage

📊 Device Status

  • Show mikrotik device status
  • Check office mikrotik status
  • Check router health

🔥 Firewall

  • Show firewall rules
  • mikrotik firewall configuration
  • Show NAT rules
  • Check office firewall

🔌 Network Interfaces

  • Show network interfaces
  • mikrotik interface list
  • Show IP address configuration

📋 DHCP

  • Show DHCP configuration
  • Show DHCP leases

📡 ARP Table

  • Show ARP table
  • Show ARP cache

🔐 WireGuard

  • Show WireGuard configuration
  • Show VPN peers

👤 Users

  • Show user configuration
  • Show PPP users

📝 Logs

  • Show system logs
  • Show recent logs

🔧 Services

  • Show system services
  • Show API/SSH ports

💾 Backup Configuration

  • Backup configuration
  • Backup router configuration

🧹 Clean Storage

  • Clean storage
  • Check for deletable files

🔐 API Configuration

  • Configure API access
  • Show API service configuration

📈 Traffic Statistics

  • Show interface traffic
  • Show traffic statistics

🔌 Interface Details

  • Show interface details
  • Show ether1 details

🏷️ VLAN

  • Show VLAN configuration
  • Show VLAN list

🌉 Bridge

  • Show bridge configuration
  • Show bridge ports

📊 Queues/Bandwidth

  • Show queue configuration
  • Show bandwidth limits
  • Show rate limit rules

🌐 Routing

  • Show routing configuration
  • Show OSPF status
  • Show BGP peers

🌡️ System Health

  • Show system health
  • Show temperature/voltage/fan

📅 Scheduled Tasks

  • Show scheduled tasks
  • Show cron jobs

📡 Neighbor Discovery

  • Show neighbor devices
  • Show network device discovery

🔗 Active Connections

  • Show active connections
  • Show connection statistics

🏓 Ping Test

  • ping 8.8.8.8 on mikrotik

📡 Network Scan

  • Scan local network
  • Scan 192.168.1.0/24
  • Find MikroTik devices

🎯 Custom Commands

  • execute /system/resource/print on mikrotik
  • run routeros command /ip/address/print
  • execute /interface/print on office device

🖥️ Multi-device Support

If multiple devices are configured, you can specify the device name in the command:

  • Show server-room mikrotik status
  • Show home firewall rules

Dependencies

  • Device API enabled (default port 8728)
  • Network reachable

File Structure

├── SKILL.md # Skill description (this file) ├── handler.py # Command processor └── mikrotik-api/ # API client library ├── __init__.py ├── client.py # API client ├── commands.py # Command wrappers ├── cli.py # CLI tool └── scanner.py # Network scanner

Notes

⚠️ Security Warnings

  1. Network Scan Risks

- mikrotik scan actively scans the local subnet, generating network discovery traffic. - May trigger security alerts in production networks. - Recommendation: Run in isolated/test networks or obtain permission from the network administrator first.

  1. Credential Security

- ❌ DO NOT save router admin passwords in plaintext in public or unencrypted TOOLS.md. - ✅ Recommended: Use environment variables (MIKROTIK_HOST/MIKROTIK_USER/MIKROTIK_PASS). - ✅ Recommended: Use temporary credentials for short-term sessions and delete after use.

  1. Local Commands and Permissions

- scanner.py uses subprocess to call system commands (ip/hostname). - Requires opening UDP sockets for network scanning. - Ensure: The environment allows these operations.

Changelog

v1.8.6 (2026-03-30)

  • Translated entire skill to English (Original by Xiage).
  • Updated attribution and maintainer info.

v1.8.5 (2026-03-09)

  • 🔍 Refactored network scanning - Switched to API port scanning.
  • 📊 Optimized scan results.
  • 🔧 Updated scanner.py.

v1.8.4 (2026-03-08)

  • 💾 New backup configuration feature.
  • 🧹 New storage cleanup feature.
  • 🔐 New API configuration view.

v1.8.2 (2026-03-06)

  • 🔧 Fixed firmware display bug.
  • 📋 Added device model and serial number.
  • 📶 New wireless client query (CAPsMAN).
  • 🎯 Onboarding optimization for new users.
  • 🔍 Optimized network scanning.
  • 🆕 Added network scanning (Winbox-like).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.27%
按下载量换算1,220

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills