-
Notifications
You must be signed in to change notification settings - Fork 4
Home
This is an early beta version for an PowerShell Module for the Ubiquiti UniFi Controller API.
I use this module for many automated updates for my UniFi Security Gateway Firewall Rules and do a few other things automated.
Please see the UseCases directory.
This document is based on UniFiTooling version 1.0.8 (Development)
PowerShell 5.0, or later. Desktop or Core.
Install the module with PowerShellGet directly from the Powershell Gallery, Preferred method!
# Install the module for the Current User with PowerShellGet directly from the Powershell Gallery, Preferred method
# Run in a regular or administrative PowerShell prompt (Elevated).
PS C:\> Install-Module -Name 'UniFiTooling' -Scope CurrentUser
# Install the module for the All Users with PowerShellGet directly from the Powershell Gallery, Preferred method.
# Run this in an administrative PowerShell prompt (Elevated).
PS C:\> Install-Module -Name 'UniFiTooling' -Scope AllUsers
PS C:\> iex (New-Object Net.WebClient).DownloadString("https://github.com/jhochwald/UniFiTooling/raw/master/Install.ps1")
You will find tha latest version in the release page of the GitHub repository
Or clone this GitHub repository to your local machine, extract, go to the .\releases\UniFiTooling
directory and import the module to your session to test, but not install this module.
Any Feedback is appreciated! Please open a GitHub issue as Bug report if you find something not working.
Anything missing? Please open a GitHub issue as Feature request. Suggest an idea for this Module will help to improve this module.
Please read our Contribution Guide and Code of Conduct.
Early beta version, use at your own risk! Not ready for showtime (production) yet...
Keep this file in a secure place, especially in a shared environment. It contains the credentials (Yes, username and password) of your UniFi Admin User in plain text (human readable).
Here is a sample configuration:
{
"Login": {
"Username": "adminuser",
"Password": "AdminPassword"
},
"protocol": "https",
"SelfSignedCert": true,
"Hostname": "unifi.contoso.com",
"Port": 443
}
The login of a UniFi User with admin rights
The password for the user given above. It is clear text for now. I know... But the Ubiquiti UniFi Controller seems to understand plain text only.
I plan to use a hashed and/or encryted version for a future version. But during the runtime, it is still as human readable clear text in memory and the Invoke-UniFiApiLogin
furthermore, sends it as human readable clear text information within a JSON formatted body.
Valid is http
and https
. Please note: http
is untested and it might not even work!
If you use a self signed certificate and/or a certificate from an untrusted CA, you might want to use true
here.
This is a Bool, but only true
or false
for now. I use this directly in PowerShell.
Please note: I can be dangerous to trust a certificate without checking it! I think it is OK to do within an Intranet, but I would avoid doing it over the public Internet! Especially with the Invoke-UniFiApiLogin
command, because this will send the Credentials (Yes, username and password) of your UniFi Admin User in clear text in a JSON based body. If this is intercepted you might be in danger!
The Ubiquiti UniFi Controller you want to use. You can use a Fully-Qualified Host Name (FQHN) or an IP address. Please note that your certificate must match the name and/or IP address as SAN name. Otherwise you might need to set the SelfSignedCert
to true
.
The port number that you have configured on your Ubiquiti UniFi Controller.
Joerg Hochwald - http://hochwald.net
N.N. (could be you)
Copyright (c) 2019, enabling Technology All rights reserved.
BSD 3-Clause "New" or "Revised" License. - Online