Demystifying iControl REST Part 6: Token-Based Authentication
iControl REST. It’s iControl SOAP’s baby, brother, introduced back in TMOS version 11.4 as an early access feature but released fully in version 11.5.
Several articles on basic usage have been writ...
Updated Jan 06, 2024
Version 2.0JRahm
Admin
Joined January 20, 2005
JRahm
Admin
Joined January 20, 2005
Casey_Robertson
Nov 23, 2015Nimbostratus
Jason - where do you change that memory setting?
Also - I'm trying to code in a function to grab all the tokens currently on the F5.... I can get a token and write it to variable...but then running this code returns nothing:
function Get-AllF5Tokens
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelineByPropertyName=$True)]
$F5LoadBalancer,
[Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelineByPropertyName=$True)]
$token
)
$method = "GET"
$uri = "https://$F5LoadBalancer/mgmt/shared/authz/tokens"
Invoke-F5RestMethod -URL $uri -method $method -token $token | Out-Null