comitidn/routeros-api
Composer 安装命令:
composer require comitidn/routeros-api
包简介
RouterOS API PHP Client
README 文档
README
routeros-api is a PHP client library for interacting with MikroTik's RouterOS API. This library allows developers to remotely manage and monitor MikroTik devices by executing various RouterOS commands directly from their PHP applications.
Features
- Connection Management: Easily connect to MikroTik RouterOS using IP, username, and password.
- Command Execution: Execute RouterOS commands and retrieve results in a structured format.
- Data Parsing: Automatically parse responses from RouterOS API into associative arrays for easy manipulation.
- Error Handling: Comprehensive error handling to capture and respond to connection issues or invalid commands.
- Extensibility: The library is designed to be extended and customized according to your specific needs.
Use Cases
- Network Monitoring: Fetch and display traffic statistics, interface statuses, and other metrics from MikroTik devices.
- Configuration Management: Remotely change configurations, manage users, and update firmware on MikroTik routers.
- Automation: Automate repetitive tasks such as backup scheduling, user management, and network diagnostics.
Requirements
- PHP 7.2+
- MikroTik RouterOS with API enabled
Installation
You can include this library in your project using Composer.
Quick Installation
To install this package quickly using Composer, run the following command:
method 1
composer require comitidn/routeros-api
If method 1 fails, use
method 2
composer require comitidn/routeros-api:*@dev
Manual Installation
Alternatively, you can manually add the package to your composer.json file:
Step 1: Add the package to your Composer configuration
Add the following to your composer.json file:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/comitidn/routeros-api.git"
}
],
"require": {
"comitidn/routeros-api": "dev-main"
}
}
Step 2: Install the package
Run the following command to install the package:
composer update
Usage
Here's a basic example of how to use the routeros-api library:
use RouterOSAPI\RouterOSAPI; $api = new RouterOSAPI(); $api->connect('192.168.88.1', 'admin', 'password', 8728); // 8728 port default for API // Example: Retrieve all interfaces $api->write('/interface/print'); $interfaces = $api->read(); print_r($interfaces); $api->disconnect();
Advanced Usage
You can extend the basic usage to handle more complex tasks, such as:
- Fetching Specific Data: Filter results based on specific parameters.
- Configuring Devices: Send commands to change configurations on the router.
- Error Handling: Capture and handle errors during the API communication. Example of filtering data:
$api->write('/interface/print', false); $api->write('?name=ether1', true); $ether1 = $api->read(); print_r($ether1);
Contributing
Contributions are welcome! If you have suggestions or bug reports, please open an issue or submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
comitidn/routeros-api 适用场景与选型建议
comitidn/routeros-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 41 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 08 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 comitidn/routeros-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 comitidn/routeros-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-08-26