Enhance L7 Policy Capabilities with Enhanced Service Definitions

Overview

F5’s BIG-IP system has many load balancing configurations that don’t have implementation support in the OpenStack LBaaSv2 specification. While it’s easy to customize BIG-IP local traffic management settings using profiles, policies, and iRules, LBaaSv2 doesn’t provide a way to apply these to BIG-IP virtual servers. You can use the F5 Agent for OpenStack Neutron to deploy Enhanced Service Definitions (ESDs), allowing you to add BIG-IP profiles, policies, and iRules to OpenStack load balancers.

How ESDs Work

An ESD is a set of tags and values that define custom settings for BIG-IP objects. Typically, an ESD applies one or more profiles, policies, or iRules to a BIG-IP virtual server. The F5 Agent reads all ESD JSON files located in /etc/neutron/services/f5/esd/ on startup.

The F5 Agent applies ESDs to BIG-IP virtual servers using LBaaSv2 L7 policy operations. When you create an LBaaSv2 L7 policy object (neutron lbaas-l7policy-create), the Agent checks the policy name against the names of all available ESDs. If it finds a match, the Agent applies the ESD to the BIG-IP virtual server associated with the policy. If the Agent doesn’t find a matching ESD, it creates a standard L7 policy. Essentially, the F5 Agent supersedes the standard LBaaSv2 behavior, translating neutron lbaas-l7policy-create mypolicy into “apply the ESD named mypolicy to the BIG-IP system”.

You can define multiple ESDs - each containing a set of predefined tags and values - in a single JSON file. The Agent validates each tag and discards any that are invalid. ESDs remain fixed in the Agent’s memory until you restart the Agent service.

When you apply multiple L7 policies, each subsequent ESD overwrites the virtual server settings defined by previous ESDs. For this reason, F5 recommends defining all of the settings you want to apply for a specific application in a single ESD. If you define multiple ESDs, each should apply to one (1) specific application.

Deleting an L7 policy that matches an ESD removes all the settings defined by that ESD from the virtual server. If you apply multiple ESD policies to the virtual server, removing one ESD L7 policy will not affect the settings defined by the remaining ESD policies.

Caution

The F5 Agent ignores all ESD files that aren’t valid JSON. It’s a good idea to run your JSON through a linter before deploying ESDs in your production environment.

Note

When you add an ESD to a TCP listener, the F5 Agent adds the http profile to the BIG-IP virtual server.

Agent Process

During startup, the F5 Agent reads all JSON files in /etc/neutron/services/f5/esd/ and evaluates them as follows:

  1. Is the JSON valid? (The Agent ignores all invalid JSON files.)
  2. Are the supported tag definitions formatted correctly?
    • Use a single string or a comma-delimited list using standard JSON list notation ([]) . [1]
    • The tag value (profile, policy, or iRule) must exist in the /Common partition on the BIG-IP device before you deploy the ESD.

Important

The agent ignores all incorrectly formatted tags, including references to non-existent BIG-IP objects. If an ESD contains a mix of valid and invalid tags, the Agent applies the valid tags and ignores the invalid ones.

[1]The lbaas_irule and lbaas_policy tags accept a comma-delimited list; all others accept only a single string.

Configuration

Enhanced Service Definitions (ESDs) must be valid JSON. To apply multiple ESDs to a single application, define them all in a single file. Create as many individual ESDs as you need for your applications. Each ESD must have a unique name to avoid conflicts; if you give multiple ESDs the same name, the Agent will implement one of them (method of selection is not defined).

Tip

You need to restart the Agent service whenever you add or modify ESD files. See the Configuration Examples section for more information.

Supported Tags

Use the tags in the table below to define the policies you want the F5 Agent to apply to the BIG-IP. Neutron will apply L7 content policies before any LBaaS policies included in ESDs.

Enhanced Service Definition tags
Tag Description Example Value
lbaas_ctcp Specify a named TCP profile for clients. This tag has a single value. tcp-mobile-optimized
lbaas_stcp Specify a named TCP profile for servers. This tag has a single value. tcp-lan-optimized
lbaas_cssl_profile

Specify a named client SSL profile to implement SSL/TLS offload. This can replace the use of, or override the life-cycle management of certificates and keys in LBaaSv2 SSL termination support.

This tag has a single value.

clientssl
lbaas_sssl_profile

Specify a named server side SSL profile for re-encryption of traffic towards the pool member servers.

You can use this tag once per ESD.

serverssl
lbaas_http_profile Specify a named HTTP profile to virtual server. This tag has a single value. http-transparent
lbaas_irule (multiple) Specify a named iRule to attach to the virtual server. This tag can have multiple values, defined in a JSON list ([]). Define iRule priority within the iRule itself. [ “base_sorry_page”, “base_80_443_redirect” ]
lbaas_policy (multiple)

Specify a named policy to attach to the virtual server. This tag can have multiple values, defined in a JSON list ([]). Define iRule priority within the iRule itself.

Neutron applies L7 content policies apply before these policies.

policy_asm_app1
lbaas_persist Specify a named fallback persistence profile for a virtual server. This tag has a single value. hash
lbaas_fallback_persist Specify a named fallback persistence profile for a virtual server. This tag has a single value. source_addr
lbaas_oneconnect_profile Specify a named OneConnect profile for a virtual server. This tag has a single value. oneconnect

Example

Basic ESD format
{
  "<ESD name>": {
    "<tag_name>": "<tag value>",
    "<tag_name>": "<tag value>",
    
  },
  
}

Configure an Enhanced Service Definition

  1. Configure all desired profiles, policies, and iRules on your BIG-IP.

  2. Define the desired BIG-IP virtual server configurations in valid JSON.

    demo.json
    {
     "esd_demo_1": {
       "lbaas_ctcp": "tcp-mobile-optimized",
       "lbaas_stcp": "tcp-lan-optimized",
       "lbaas_cssl_profile": "clientssl",
       "lbaas_sssl_profile": "serverssl",
       "lbaas_http_profile": "http-transparent",
       "lbaas_irule": ["_sys_https_redirect"],
       "lbaas_policy": ["demo_policy"],
       "lbaas_persist": "hash",
       "lbaas_fallback_persist": "source_addr",
       "lbaas_oneconnect_profile": "oneconnect"
     },
     "esd_demo_2": {
       "lbaas_irule": [
         "_sys_https_redirect",
         "_sys_APM_ExchangeSupport_helper"
       ]
     }
    }
    

    Tip

    The agent package includes an example ESD file, demo.json. You can amend this example file – and save it with a unique name – to create ESDs for your applications.

  3. Copy the ESD file(s) to the /etc/neutron/services/f5/esd/ directory on F5 Agent host.

  4. Restart the F5 OpenStack agent.

    CENTOS
    systemctl restart f5-openstack-agent
    
    UBUNTU
    service f5-oslbaasv2-agent restart
    

    Tip

    F5 Agent loads ESD(s) from file(s) under /etc/neutron/services/f5/esd/ directory into memory for dispatching onto managed BIG-IP(s), and stores ESD names into agents table of neutron database for later queries.

    Because the size of configurations field is 4095 bytes, F5 Agent will fail to load too many ESD. Change the schema of agents to store more ESD names for that case.

  5. Create a Neutron load balancer with a listener (and pool, members, monitor) via command line or via OpenStack Neutron LBaaS Dashboard.

  6. Configure ESD(s) for the listener.

  1. Using command line

    • Create an Enhanced Service Definition

      Use neutron lbaas-l7policy-create --listener <listener ID> --name <ESD name> --action REJECT:

      $ neutron lbaas-l7policy-create --listener e0a14fb4-2158-4f23-80be-3045e2c07df3 --name esd_demo_1 --action REJECT
      +------------------+--------------------------------------+
      | Field            | Value                                |
      +------------------+--------------------------------------+
      | action           | REJECT                               |
      | admin_state_up   | True                                 |
      | description      |                                      |
      | id               | 5762bb22-28be-4172-a9e2-aa3a015fe25d |
      | listener_id      | e0a14fb4-2158-4f23-80be-3045e2c07df3 |
      | name             | esd_demo_1                           |
      | position         | 1                                    |
      | redirect_pool_id |                                      |
      | redirect_url     |                                      |
      | rules            |                                      |
      | tenant_id        | fde45211da0a44ecbf38cb0b644ab30d     |
      +------------------+--------------------------------------+
      

      Important

      Neutron requires the --action parameter for lbaas-l7policy-create commands. The F5 OpenStack agent ignores --action when launching an ESD.

      For example:

      $ neutron lbaas-l7policy-create --listener vip1 --name mobile_app --action REJECT
      

      When the F5 Agent receives the lbaas-l7policy-create command:

      • It looks up the ESD name mobile_app in its table of ESDs.
      • The agent applies each tag defined in the mobile_app ESD to the virtual server created for the listener named vip1.
      • The agent ignores the REJECT action.

      Tip

      Where to find ESD names used in ‘neutron lbaas-l7policy-create’? (Two options)

      • Option 1. Going to /etc/openstack-dashboard/esds directory, finding names from ESD file(s) directly.

      • Option 2. Using neutron lbaas-agent-hosting-loadbalancer and neutron agent-show, because F5 Agent stores ESD names into a database (neutron database, agent table).

        The following steps can enable tenant users retrieving ESD names from it.

        1. OpenStack Admin enable the access by adding a new role for ESD.

          $ keystone role-create --name role-access-esd
          +-----------+----------------------------------+
          |  Property |              Value               |
          +-----------+----------------------------------+
          | domain_id |                                  |
          |     id    | ff5783d1e44240af825b183eed8f265c |
          |    name   |         role-access-esd          |
          +-----------+----------------------------------+
          
          # Edit /etc/neutron/policy.json to add role: role-access-esd
          $ cat /etc/neutron/policy.json | grep esd
              "read_esd": "role:role-access-esd",
              "get_agent": "rule:admin_only or rule:read_esd",
              "get_loadbalaner-hosting-agent": "rule:admin_only or rule:read_esd",
          
        2. OpenStack Admin assigns the privilege to tenant users.

          $ keystone user-role-add --user demo --tenant demo --role role-access-esd
          # no output.
          
        3. Tenant users access neutron lbaas-agent-hosting-loadbalancer and neutron agent-show to retrieve ESD names.

          $ neutron lbaas-loadbalancer-list
          | id                                   | name            | ... | provider   |
          | 13e27d37-6a73-43a3-8d62-8e91e169b55e | Load Balancer 1 | ... | f5networks |
          ...
          
          $ neutron lbaas-agent-hosting-loadbalancer 13e27d37-6a73-43a3-8d62-8e91e169b55e
          | id                                   | ...
          | 8eb3f91b-e0f2-4943-9328-b9179a688757 | ...
          ...
          
          $ neutron agent-show 8eb3f91b-e0f2-4943-9328-b9179a688757
          ...
          | "configurations": {                          |
          |     ...                                      |
          |     "esd_name": [                            |
          |         "esd_demo_1",                        |
          |         "esd_demo_3",                        |
          |         "esd_demo_2",                        |
          |         "esd_demo_4"                         |
          |     ],                                       |
          |     ...                                      |
          | }                                            |
          ...
          # Find ESD names from 'configurations'. Note that only names here.
          

      For more information about l7 policy creation, see Create a Neutron L7 policy object with a name parameter that matches your ESD name.

    • Delete an Enhanced Service Definitions

      $ neutron lbaas-l7policy-delete <ESD name or L7 policy ID>
      

      For more information about l7 policy deletion, see: use Neutron’s L7 policy delete operation to remove its associated ESD.

  2. Using F5 Neutron LBaaS Dashboard

    1. Setup F5 Neutron LBaaS Dashboard for ESD.

      Copy the ESD file(s) to /etc/openstack-dashboard/esds directory on F5 Neutron LBaaS Dashboard host.

      Make sure the ESD files are valid.

      Important

      The ESD file(s) copied to F5 Neutron LBaaS Dashboard host should be exactly as same as that on F5 Agent host.

      F5 Neutron LBaaS Dashboard reloads the ESD files (contents of JSONs) dynamically when loading Update Listener ESD page, so it is not necessary to restart F5 Neutron LBaaS Dashboard.

      Instead of ignoring invalid JSONs, F5 Neutron LBaaS Dashboard reports loading error(s) on Update Listener ESD page for reference to fix.

    2. Navigate to Update Listener ESD page.

      => Panel: 'F5 Load Balancers'
        => Load balancer name, i.e. 'loadbalancer 1'
          => Tab: 'Listeners'
            => Listener name, i.e. 'listener 1'
              => Menu button -> 'Edit ESD'
      
    3. Configure on Update Listener ESD page.

      In summary, Update Listener ESD page supports 3 ESD operations: Allocate, Deallocate, Reorder.

      • Click + from Available table to allocate an ESD to the listener.
      • Click - from Allocated table to deallocate an ESD from the listener.
      • Draw - Move - Drop to recorder the ESD for the listener.

      In details, the following information is helpful.

      • Available table contains all available ESDs, and the allocated table contains the ones already assigned to the operating listener.

      • The values from Status column can be: Normal, Duplicate Definition, Missing Definition, File Error, Folder Error.

        Status Explanation Can allocate Can deallocate
        Normal Everything for the ESD is OK. Y Y
        Duplicate Definition Multiple ESDs with same name found from JSON(s). N Y
        Missing Definition No ESD found from JSON(s). N Y
        File Error One of JSON(s) is wrong, ‘ESD Name’ column indicates a file’s name. Example: _FAULT_FILE_xxxx. N n/a
        Folder Error The folder(/etc/openstack-dashboard/esds) which contains ESD JSON(s) is unreachable. N n/a
      • Last Operation indicates the execution result of last operation.

        Only Normal ESD is available for allocating by clicking +, and then Last Operation reports:

        Allocating '<ESD name>' to the listener ... [<result>]
                                                        ^-- possible value: Done, Failed
        

        Otherwise, Last Operation reports:

        ESD status is '<Error Status>', not allocatable, fix it first.
        

        Last Operation will report [Wait] if next operation comes too fast.

        Allocating '<ESD name>' to the listener ... [Wait][Wait]
                                                            ^-- for each frequent click.
        
      • Prior ESD has higher priority, overriding the later one(s).

        Position column in Allocated table indicates the ESD’s priority.

      • Operations are effective once done, so clicking Update Listener ESD and Cancel buttons are only to close the window.

Configuration Examples

The examples below demonstrate how to use ESDs to work around the limitations of LBaaSv2.

Add iRules

Use the lbaas_irule tag to add any desired iRules to any BIG-IP virtual server associated with an LBaaSv2 load balancer.

For example, if you want to re-write certificate values into request headers:

  1. Create the desired iRule(s) in the /Common partition on the BIG-IP.

  2. Define the lbaas_irule tag with a JSON list.

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    {
      "esd_demo_1": {
        \\ define a single iRule
        "lbaas_irule": ["header_rewrite"]
    },
      "esd_demo_2": {
        \\ define two (2) iRules
        "lbaas_irule": [
          "header_rewrite",
          "remove_response_header"
        ]
      }
    }
    

    Important

    When using iRules, be sure to define the iRule priority within the iRule itself. The order in which the F5 Agent applies iRules isn’t guaranteed; the Agent adds iRules in the order in which they’re defined in the ESD.

Add LTM Policies

Use the lbaas_policy tag to assign a BIG-IP LTM policy to a virtual server associated with an LBaaSv2 load balancer.

  1. Create the policy in the /Common partition on the BIG-IP.

  2. Define the lbaas_policy tag with a JSON list.

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    {
      \\ define a single policy
      "esd_demo_1": {
        "lbaas_policy": ["custom_policy1"]
      },
      \\ define two (2) policies
      "esd_demo_2": {
        "lbaas_policy ": [
        "custom_policy1",
        "custom_policy2"
        ]
      }
    }
    

Add Server-side SSL Termination

Use the lbaas_sssl_profile tag to add BIG-IP server-side SSL termination to a virtual server associated with an LBaaSv2 load balancer.

"lbaas_sssl_profile": "serverssl"

Customize Client-side SSL Termination

Use the lbaas_cssl_profile tag tag to add a BIG-IP SSL profile to a virtual server associated with an LBaaSv2 load balancer.

  1. Create a client SSL profile in the /Common partition on the BIG-IP.

  2. Create an LBaaSv2 HTTPS listener.

  3. Create an L7 policy object using the lbaas_cssl_profile tag.

    "lbaas_cssl_profile": "clientssl"
    

Customize Session Persistence

Use the lbaas_persist and lbaas_fallback_persist tags to configure a BIG-IP session persistence profile on a virtual server associated with an LBaaSv2 load balancer.

Important

In the LBaaSv2 session persistence model, persistence types apply to pools, not listeners. The F5 Agent maps LBaaSv2 pool session persistence values to the BIG-IP virtual server(s) associated with the pool. The BIG-IP provides many persistence profiles beyond those available in LBaaSv2, including dest_addr, hash, ssl, sip, etc.

1
2
lbaas_persist: hash,
lbaas_fallback_persist: source_addr

Tip

It’s good practice to define a fallback persistence profile as well, in case a client doesn’t support the specified persistence profile.

Use TCP Profiles

Use the lbaas_ctcp tag to define a BIG-IP TCP profile for a virtual server associated with an LBaaSv2 load balancer. BIG-IP TCP profiles, which determine how a server processes TCP traffic, can fine-tune TCP performance for specific applications.

  • lbaas_ctcp – Use this tag for client profiles.
  • lbaas_stcp – Use this tag for server profiles.

Important

If you only define the client tag (lbaas_ctcp), the F5 Agent assigns the client profile to the virtual server for both client- and server-side traffic.

For example:

If your load balancer fronts an application used for mobile clients, you can use the tcp_mobile_optimized BIG-IP client SSL profile to optimize TCP processing.

"lbaas_ctcp": "tcp_mobile_optimized"

Of course, that profile may not be optimal for traffic between your BIG-IP and the pool member servers. You can specify different profiles for client-side and server-side traffic.

For esd_demo_1 in the example below, we define a single TCP profile (“tcp”) for both client- and server-side traffic. For esd_demo_2, we assign separate TCP policies for client- and server-side traffic (tcp_mobile_optimized and tcp_lan_optimized, respectively).

1
2
3
4
5
6
7
8
9
{
  "esd_demo_1": {
  "lbaas_ctcp": "tcp"
  },
  "esd_demo_2": {
    "lbaas_ctcp": "tcp_mobile_optimized",
    "lbaas_stcp": "tcp_lan_optimized"
  }
}