Forum Discussion
Jon66_72715
Nimbostratus
Oct 08, 2012Looking for help with add_persistence_profile
All,
Looking for an example on how to add a default persistence profile to a virtual server. I see the example in the api doc, just not exactly sure how I set the profile.
add_persistence_...
tnttobin_92979
Nimbostratus
Nov 02, 2012After taking a fresh look today, it appears to be a syntax error that caused the iControl interface to throw an exception the lead me down the wrong path. This works now :-)
Set Source Address Affinity - so called "sticky session"
$Persistence = New-Object -TypeName iControl.LocalLBVirtualServerVirtualServerPersistence;
$Persistence.profile_name = 'source_addr'
$Persistence.default_profile = $true
$Pers_ProfileA = (, $Persistence);
$Pers_ProfileAofA = (, $Pers_ProfileA);
Write-Host "Enabling Source Address Affinity on Virtual Server `"$name`"...";
Try {
(Get-F5.iControl).LocalLBVirtualServer.add_persistence_profile($name, $Pers_ProfileAofA)
}
Catch {
Write-Host "Error - Adding Persistence Profile! - Exception - $_.exception" -ForegroundColor Red
Write-Host "Message - $_.exception.message" -ForegroundColor Red
Write-Host "Deleting VS: $name"
(Get-F5.iControl).LocalLBVirtualServer.delete_virtual_server(($name))
}
}
Else
{
Write-Host "Error - VS Name Already Exists - $name"
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
