ocolin/uisp-extended 问题修复 & 功能扩展

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

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

ocolin/uisp-extended

Composer 安装命令:

composer require ocolin/uisp-extended

包简介

SSH-based device management for Ubiquiti radios, extending the UISP API with features not available through the standard interface.

README 文档

README

Ubiquiti's UISP platform provides a comprehensive API for managing network devices, but certain administrative tasks are not exposed through the API and must be performed directly on the device via SSH. ocolin/uisp-extended fills that gap by providing a clean PHP interface for SSH-based device management, designed to complement the ocolin/uisp package.

Experimental

This is currently experimental and has not been fully tested on every known device.

Requirements

  • PHP ^8.2
  • phpseclib/phpseclib ^ 3.0

Installation

composer require ocolin/uisp-extended

Configuration

Arguments

When creating a Ubiquiti device class, there are a few parameters that you can use:

Name Type Default Description
ip string REQUIRED IP address of device
password string REQUIRED Password for login
username string admin Username for login
port integer 22 SSH port

Logging in

Upon instantiation, you will log into the device automatically. An error is thrown if the connection fails or authentication does not pass.

Example

// Minimal
$device = new Ocolin\UispExtended\Device( 
    ip: '192.168.1.100', password: 'rosebud' 
);

// Customized
$device = new Ocolin\UispExtended\Device( 
    ip: '192.168.1.100', password: 'rosebud', username: 'admin', port: 2222
)

Exceptions

  • AuthenticationException — thrown if login credentials are incorrect
  • ConnectionException — thrown if the device is unreachable

Functions

Get Device Information

You can get information about the device such as the type name, model, family, and firmware.

Output Object

Name Type Description
name string Name of the device model
model string Model of device
family string Family of device model
firmware string Device firmware version

Example

$info = $device->getDeviceInfo();
print_r( $info );
/*
Ocolin\UispExtended\DTO\DeviceInfo Object
(
    [name] => PowerBeam 5AC
    [model] => PBE-5AC-Gen2
    [family] => WA
    [firmware] => 8.7.11
)
 */

Get MAC table

This provides a MAC/bridge table on the device. It outputs an array of MAC entry objects.

Object parameters

Name Type Description
mac string MAC address
interface string Interface address is on
isLocal boolean Is MAC address a local one?
agingTimer float Age of MAC address

Example:

$macs = $device->getMacTable();
print_r( $macs );
/*
Array
(
    [0] => Ocolin\UispExtended\DTO\MacEntry Object
        (
            [mac] => 00:0b:78:66:db:d0
            [interface] => eth0
            [isLocal] => 
            [agingTimer] => 2.11
        )

    [1] => Ocolin\UispExtended\DTO\MacEntry Object
        (
            [mac] => 04:f1:7d:05:07:c7
            [interface] => eth0
            [isLocal] => 
            [agingTimer] => 289.92
        )
)
 */

Update password

This function allows you to update the password on a device. This function returns void, but will throw an error upon failure which will state where in the process it failed.

This will auto-detect the model of radio and execute the corresponding password update procedure automatically.

Example:

$device->changePassword( newPassword: 'myUpdatedPassword' );

Exceptions

  • ConnectionException - Error connecting to device.
  • PasswordChangeException - Error updating the password with message.
  • ScriptNotFoundException - Internal error reading CLI shell script.

Update Wave Password

This function was created in the event of a user wants to specifically change password on a Wve device instead of relying on changePassword() which automatically detects the type of device.

The same errors will be thrown as changePassword().

Example

$device->changePasswordWave( newPassword: 'myUpdatedPassword' );

Update AirOS Password

This function was created in the event a user wants to specifically change the password on a non-Wave type of device.

The same errors will be thrown as changePassword().

Example

$device->changePasswordAirOS( newPassword: 'myUpdatedPassword' );

Reboot

While UISP has a reboot function, one was added here in case it needed to be used as standalone.

Example

$device->reboot();

ocolin/uisp-extended 适用场景与选型建议

ocolin/uisp-extended 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「network」 「ssh」 「wave」 「radio」 「ubiquiti」 「uisp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 ocolin/uisp-extended 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 ocolin/uisp-extended 我们能提供哪些服务?
定制开发 / 二次开发

基于 ocolin/uisp-extended 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-26