[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]


Restricting Simultaneous Activation of Services

A mutex group defines a set of services that are mutually exclusive—services that the SAE cannot simultaneously activate for a particular subscriber. You can assign a service to more than one mutex group. When a subscriber requests activation of a particular service, the SAE determines which mutex groups contain that service. If the subscriber has current activations of other services listed in those mutex groups, the SAE proceeds in one of the following ways, depending on how you configured the mutex groups:

If the requested service is not listed in a mutex group, the SAE can activate the service regardless of any other services that the subscriber is using.

Restricting Simultaneous Activation of Persistent or Automatic Services

The SAE uses the following method to prevent simultaneous activation of mutually exclusive services that are configured for persistent activation or that are activated automatically when a subscriber logs in:

  1. If you (or a subscriber) persistently activate an existing service or change a subscription to activate an existing service when a subscriber logs in, the SAE determines whether the service is specified in one or more mutex groups.
  2. The SAE determines how each mutex group that lists the service is configured, and the SRC software acts accordingly.

Adding a Mutex Group

Use the following configuration statements to configure a mutex group in the global service scope:

services global mutex-group name {
auto-deactivate (yes | no);
description description;

services [services...];
}

Use the following configuration statements to configure a mutex group in a service scope:

services scope name mutex-group name {
auto-deactivate (yes | no);

description description;

services [services...];
}

To add a mutex group:

  1. From configuration mode, enter the mutex group configuration. In this sample procedure, the mutex group is called Video.
  2. user@host# edit services global mutex-group Video
    
    
    
  3. Configure the method that the SAE uses to manage activation of services defined in this group.
  4. [edit services global mutex-group Video]
    
    user@host# set auto-deactivate (yes | no)
    
    
    
  5. Enter a description for the service.
  6. [edit services global mutex-group Video]
    
    user@host# set description description
    
    
    
  7. Configure the lists of services that the mutex group contains.
  8. [edit services global mutex-group Video]
    
    user@host# set services [services...]
    
    
    
  9. (Optional) Verify your configuration.
  10. [edit services global mutex-group Video]
    
    user@host# show
    
    auto-deactivate yes;
    
    description "Video Services providing access to the same site with different
    quality";
    
    services [ Video-Bronze Video-Gold Video-Silver ];
    

[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]