iC2I: Creating a Virtual Server.
A Virtual Server is a complex entity that relies upon profiles, pools, iRules, and nodes to do its magic. This is a powerul tool that is at the core of what the LTM functionality of BIG-IP can do for...
Published May 02, 2008
Version 1.0Don_MacVittie_1
Historic F5 Account
Joined September 25, 2004
Don_MacVittie_1
Historic F5 Account
Joined September 25, 2004
Greg_Denton_338
Sep 23, 2011Nimbostratus
There is a bug in the profile setting if multiple profiles are to be supported.
Change:
vsProfs[][] = {{new LocalLBVirtualServerVirtualServerProfile()}};
To:
vsProfs[][] = {new LocalLBVirtualServerVirtualServerProfile[profileContextType.length]};
Change:
vsProfs[0][0].setProfile_context(...
vsProfs[0][0].setProfile_name(...
To:
vsProfs[0][i].setProfile_context(...
vsProfs[0][i].setProfile_name(...