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 incorrectConnectionException— 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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ocolin/uisp-extended 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LinkedIn API PHP SDK with OAuth 2.0 & CSRF support. Can be used for social sign in or sharing on LinkedIn. Examples. Documentation.
LinkedIn API PHP SDK with OAuth 2.0 & CSRF support. Can be used for social sign in or sharing on LinkedIn. Examples. Documentation.
PHP SDK for Bands In Town API
A flexible FTP, SSL-FTP, and SSH-based SFTP client for PHP. This lib provides helpers that are easy to use to manage the remote files.
Altax is an extensible deployment tool for PHP.
Cisco IOS communications and configuration parsing library
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 45
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-04-26