Application Delivery Management

Enable data collection to monitor Citrix ADCs deployed in transparent mode

When a Citrix ADC is deployed in transparent mode the clients can access the servers directly, with no intervening virtual server. If a Citrix ADC is deployed in transparent mode in a Citrix Virtual Apps and Desktops environment, the ICA traffic is not transmitted over a VPN.

After you add the Citrix ADC to the Citrix ADM inventory, you must enable AppFlow for data collection. Enabling data collection depends on the device and the mode. In that case, you have to add Citrix ADM as an AppFlow collector on each Citrix ADC instance, and you must configure an AppFlow policy to collect all or specific ICA traffic that flows through the appliance.

Note

  • You cannot enable data collection on a Citrix ADC deployed in transparent mode by using the Citrix ADM configuration utility.
  • For detailed information about the commands and their usage, see Command Reference.
  • For information on policy expressions, see Policies and Expressions.

The following figure shows the network deployment of a Citrix ADM when a Citrix ADC is deployed in a transparent mode:

Transparent mode

To configure data collection on a Citrix ADC appliance by using the command line interface:

At the command prompt, do the following:

  1. Log on to an appliance.

  2. Specify the ICA ports at which the Citrix ADC appliance listens for traffic.

    set ns param --icaPorts \<port\>...
    <!--NeedCopy-->
    

    Example:

    set ns param -icaPorts 2598 1494
    <!--NeedCopy-->
    

    Note

    • You can specify up to 10 ports with this command.
    • The default port number is 2598. You can modify the port number as required.
  3. Add NetScaler Insight Center as an AppFlow collector on the Citrix ADC instance.

    add appflow collector <name> -IPAddress <ip_addr>
    <!--NeedCopy-->
    

    Example:

    add appflow collector MyInsight -IPAddress 192.168.1.101
    <!--NeedCopy-->
    

    Note To view the AppFlow collectors configured on the Citrix ADC instance, use the show appflow collector command.

  4. Create an AppFlow action and associate the collector with the action.

    add appflow action <name> -collectors <string> ...
    <!--NeedCopy-->
    

    Example:

    add appflow action act -collectors MyInsight
    <!--NeedCopy-->
    
  5. Create an AppFlow policy to specify the rule for generating the traffic.

    add appflow policy <policyname> <rule> <action>
    <!--NeedCopy-->
    

    Example:

    add appflow policy pol true act
    <!--NeedCopy-->
    
  6. Bind the AppFlow policy to a global bind point.

    bind appflow global <policyname> <priority> -type <type>
    <!--NeedCopy-->
    

    Example:

    bind appflow global pol 1 -type ICA_REQ_DEFAULT
    <!--NeedCopy-->
    

    Note

    The value of type must be ICA_REQ_OVERRIDE or ICA_REQ_DEFAULT to apply to ICA traffic.

  7. Set the value of the flowRecordInterval parameter for AppFlow to 60 seconds.

    set appflow param -flowRecordInterval 60
    <!--NeedCopy-->
    
  8. Save the configuration.

    save ns config
    <!--NeedCopy-->
    
Enable data collection to monitor Citrix ADCs deployed in transparent mode