comitidn/routeros-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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.

统计信息

  • 总下载量: 41
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-08-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固