View the Model Definition

To view the model definition that is active for the license server, you can use the -model command (requires administrator authorization). This command outputs the current model definition, showing the partitions and rules.

To view the active model definition

Enter a command similar to this:

flexnetlsadmin -server licenseServer_baseURL -authorize yourAdminName {yourAdminPassword|
-passwordConsoleInput} -model
 

The model definition for your license server is displayed, similar to this:

model "example" {

partitions {

partition "engineering" {

    feature "f1" 1.0 5

}

partition "sales" {

    feature "f1" 1.0 5

}

}

on dictionary("business-unit" : "engineering") {

use "engineering"

accept

}

on dictionary("business-unit" : "sales") {

use "sales"

accept

}

 

on any() {

use "default"

accept

}

}