System and method for customizing the identification of application or content type
09722918 · 2017-08-01
Assignee
Inventors
Cpc classification
H04L47/2408
ELECTRICITY
H04L47/2441
ELECTRICITY
International classification
G06F15/16
PHYSICS
Abstract
Expertise, for performing classification of a type of network traffic, can be encapsulated in a module. A set of modules, as currently available to a traffic controller, can be referred to as a collection. Programming language constructs are introduced that facilitate the writing of modules customized to identify network traffic that is peculiar to a particular user, or to a relatively small group of users. An example programming language, based on Tcl, is introduced. A key aspect is event-driven programming, and the “when” command construct is introduced. Three important event types, that can trigger a “when” command, are CLIENT_DATA, SERVER_DATA, and RULE_INIT. Another key aspect is an ability to keep state information between events. Constructs for intra-session, intra-module, and global state are introduced. A module can be blocked from executing more than once for a session. Successful execution of a module can be specified by a “match” statement.
Claims
1. A computer-implemented method for dynamic network traffic control, comprising: identifying, by a traffic controller, a first data packet, flowing from a source network device to a destination network device, as a subject of traffic-type classification by the traffic controller, the first packet produced in response to an action by an end-user, the traffic type classification being associated with at least one of an application type and a content type, the traffic controller including a control engine coupled to a network interface, the control engine controlling transmission and receipt of data packets between clients and servers, the control engine including classification modules, each of the classification modules having a unique identifier and being operable to trigger on a RULE INIT event; identifying by a first collection of traffic classification modules of the traffic controller, a session identifier of the first data packet, the session identifier corresponding to a network session between the source network device and the destination network device, the session identifier distinguishing the network session from other network sessions; determining that the traffic controller is transitioning from the first collection of traffic classification modules to a second collection of traffic classification modules; setting the collection identifier for the session to point to the second collection of traffic classification modules; determining that the first data packet is an event of a first event type, the first event type representing an initiating event; processing the first data packet in accordance with a rule set defined by the second collection of classification modules and the initiating event; and producing, as a result of processing the first data packet, an intra-session persistent state for the second collection of traffic classification modules.
2. The method of claim 1, wherein the determining that the first data packet is an event of the first event type further comprises determining that the first packet is an initial packet of its session.
3. The method of claim 1, wherein the first event identifier is represented by an administrative user via a programming language statement of the RULE_INIT event.
4. The method of claim 1, further comprising producing, as a result of processing the first data packet, intra-module persistent for the second collection of traffic classification modules.
5. The method of claim 1, further comprising producing, as a result of processing the first data packet, globally persistent state for the second collection of traffic classification modules.
6. The method of claim 1, further comprising identifying the first packet as being part of a pre-existing first session, in response to receipt of the first packet, if the first packet is not an initial packet to be received, by the traffic controller, with respect to the first session.
7. The method of claim 1, wherein the step of determining that the first data packet is an event of the first event type further comprises determining that the first data packet is traveling from a client to a server.
8. The method of claim 1, wherein the first event identifier is represented by an administrative user via a programming language statement of CLIENT_EVENT.
9. The method of claim 1, further comprising: classifying the first session as being of a first traffic type; and configuring the first traffic type, when applied to a session, to cause packets of that session to be processed in accordance with a first policy.
10. The method of claim 9, wherein the first policy guarantees a specific amount of bandwidth for forwarding traffic.
11. The method of claim 9, wherein the first policy specifies a maximum amount of bandwidth for forwarding traffic.
12. The method of claim 9, wherein the first policy marks a priority to be used for forwarded traffic.
13. The method of claim 9, wherein the first policy causes packets not to be forwarded.
14. The method of claim 1, wherein the step of determining that the first data packet is an event of the first event type further comprises determining that the first data packet is traveling from a server to a client.
15. The method of claim 14, wherein the first event identifier is represented by an administrative user via a programming language statement of SERVER_EVENT.
16. The method of claim 1, wherein the second collection of traffic classification modules is written in a classification module language.
17. The method of claim 16, wherein the classification module language is based upon Tcl.
18. The method of claim 16, further comprising compiling, at least in part, a first description into a first object-level specification of the second traffic-classification module.
19. The method of claim 18, wherein the compiling is performed only if the interpreting of the first description indicates that the first description is functionally correct.
20. The method of claim 1, wherein at least one module of the second collection of traffic classification modules is written by an administrative user of a client device using a classification module language.
Description
BRIEF DESCRIPTION OF THE DRAWINGS
(1) The accompanying drawings, that are incorporated in and constitute a part of this specification, illustrate several embodiments of the invention and, together with the description, serve to explain the principles of the invention:
(2)
(3)
(4)
(5)
(6)
(7)
(8)
(9)
(10)
(11)
(12)
(13)
(14)
(15)
DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS
(16) Reference will now be made in detail to various embodiments of the invention, examples of which are illustrated in the accompanying drawings. Wherever possible, the same reference numbers will be used throughout the drawings to refer to the same or like parts.
(17) Please refer to Section 5 below (“Glossary of Selected Terms”) for the definition of selected terms used below.
(18) TABLE-US-00001 Table of Contents to Detailed Description 1 Introduction 2 Classification Module Language 3 Multiple Collections 4 Additional Information 4.1 Computing Equipment 5 Glossary of Selected Terms
1 Introduction
(19) The term “session,” as utilized herein, is understood very broadly (see definition in below Glossary of Selected Terms).
(20) With respect to the network traffic that is carried by a session, the determination of its type can be referred to herein as “classification.” The expertise for performing a classification can be encapsulated in a module. The term “module” as utilized herein is (as with a session) also understood very broadly (see definition in below Glossary of Selected Terms).
(21) A module for performing classification can be referred to herein as a “classification module” or CM. The inventive techniques presented herein focus on two main areas: Improving the process by which a CM collection, as utilized by a traffic controller, is updated. Enhancing the ability of a user, or small groups of users, to create classification modules customized to the particular types of network traffic they handle (please see Glossary for definition of “user”).
(22) With respect to the latter, of the two above-listed areas, certain programming language constructs are herein introduced. Incorporation into a programming language, of one or more of these constructs, is defined to result in a programming language referred to herein as a “Classification Module Language” or CML. A CML facilitates the writing of a CM customized to identify network traffic that is peculiar to a particular user, or to a relatively small group of users. For example, a company may have one or more in-house applications that are unique to that company.
(23) The example CML presented herein is called CML_Tcl. (For a correspondence, between CML_Tcl and products of A10 NETWORKS, see the below Glossary of Selected Terms.) CML_Tcl is based upon the “Tcl” programming language (please see Glossary for further identification of Tcl). Also, the pseudo-code presented herein, used to illustrate example implementations of some CML constructs, is itself loosely based upon CML_Tcl and uses some CML constructs. In particular, a key construct of a CML is that it is event driven. The syntax presented herein, for having code event driven, is the same for both CML_Tcl and the pseudo-code. A “when” command is used, that has the following structure:
(24) TABLE-US-00002 when EVENT_NAME { <code to execute upon event> }
The above “when” statement is triggered by an event generically referred to as EVENT_NAME (the convention is followed herein of naming an event in all capitals). The entire body of the “when” can also be referred to herein as the “EVENT_NAME procedure.”
(25) An example network environment, for a traffic controller (Traffic Controller 120), is shown in
(26) An example interior structure for a traffic controller (such as Traffic Controller 120) is shown in
(27) When not classifying sessions, the operation of Traffic Controller 120 can be understood by reference to its Session Table 210 and Action Table 220. Example interior structures, for Session Table 210 and Action Table 220, are shown in
(28) A session can often be distinguished, from other sessions, by its values for the following 5-tuple: source IP source Port destination IP destination Port. protocol-used, and (if applicable) its current state
(29) However identified, each session is typically represented by its own instance of a data structure, referred to herein as a “Session Record.”
(30) As an example, row 370 of Session Table 210 depicts a Session Record with the following values: SID=“SID_1” 5-tuple=sIP dIP sP dP ptcl TID's=“TID_1,” “TID_2.”
(31) The TID's assigned to a session can be used, as follows, to effect a traffic controller's handling of the packets it receives: Each time a packet p_1 is received, its session s_1 is determined. The Session Record, for the identified session, is accessed. If necessary, the 5-tuple for s_1 is updated. Typically, this involves updating the state of the protocol. The TID's, for the identified Session Record, are accessed and applied to an Action Table, such as Action Table 220 of
(32) For example, suppose the operator of a traffic controller is a company called “CableTV Inc.,” that provides cable television service. Assume CableTV Inc. has its own in-house application software called “CableTV_1.” Further suppose that the company has at least the two following goals regarding its software: 1. It wishes to give usage of its software top priority over its networks. 2. It wishes to monitor usage of the software.
(33) Action Table 220 shows two example entries, 375 and 376, that have been configured by CableTV Inc. (These entries can be configured by CableTV Inc. using any suitable interface, as provided by the producer of traffic controller 120. Suitable interfaces can include, but are not limited to, a Graphical User Interface or Command Line Interface.) In accordance with action 375, each packet identified as type TID_1 is handled with a quality of service level called “QoS_1” (which we will assume, for CableTV Inc., represents its highest priority network usage). In accordance with action 376, each packet identified as type TID_2 is identified as “CableTV_1” (which we will assume, for CableTV Inc., means the packet will be reported as being associated with application CableTV_1).
(34) Thus, if sessions with CableTV Inc.'s data center that utilize CableTV_1 can be classified with TID's TID_1 and TID_2, the company's goals, for usage of this particular item of in-house software, can be realized.
(35) The specification, for how sessions are to be classified, can be organized as a collection of classification rules. In general, a classification rule is comprised of the following two main sections: trigger conditions, and an identification to added to a session if the trigger conditions are met
(36) Each rule can be represented as an instance of a data structure, referred to herein as a “Rule Record.” Each Rule Record can be stored as an entry in a Rule Table, such as Rule Table 230 of
(37) The identification to be added, if the rule's trigger conditions are satisfied, is specified by TID field 233.
(38) For the time being, we will assume that the goals of CableTV Inc. can be met with rules that only use criteria of L4.
(39) Example session 370, of Session Table 210 of
(40) The specification of classification rules by a user, such as the specification of rules 380 and 381, can be accomplished using any suitable interface, as provided by the producer of traffic controller 120. As already introduced above, suitable interfaces can include, but are not limited to, a Graphical User Interface (or GUI) or Command Line Interface (or CLI).
2 Classification Module Language
(41) The example presented in the previous section, of CableTV Inc. taking certain actions with regard to packets generated by use of its in-house software CableTV_1, assumes that a session (i.e., the session with SID “SID_1”) was able to be classified with criteria≦L4. If that is not the case, and criteria above L4 are needed, under conventional scenarios, CableTV Inc. may not have attractive options.
(42) As has been discussed above, traffic controllers are typically mass-produced, to serve the needs of a large group of customers. As such, traffic controllers are often sold with classification module collections (or CM collections) only designed to identify traffic types occurring very frequently, across many types of customers. Thus, it is unlikely the traffic-controller provider has a classification module designed specifically for CableTV Inc.'s in-house software.
(43) Conventional options for CableTV Inc. typically include the following: Hiring the provider of the traffic controller to perform full-custom programming, resulting in a classification module that is added to CM collection 201. This approach requires minimum technical expertise from the user but (especially for specialized software with a limited end user base) can be cost prohibitive. The user performs full-custom programming, and produces a classification module. This approach minimizes monetary cost to the user, but requires a very high level of technical skill.
(44) This section presents certain programming language constructs that make it easier for a traffic controller user, such as CableTV Inc., to write its own classification module. As discussed above, a programming language with one or more of these constructs is referred to herein as a Classification Module Language or CML. As such, a CML provides a kind of midpoint, between the levels of technical skill required by the two above-described conventional options.
(45) Continuing with the example of CableTV Inc., we will assume they have at least two different types of users of its data center and networks: administrative users; and end users.
(46) Relative to the end-users, the administrative users can be expected to be much more technologically knowledgeable. Administrative users typically have responsibilities that include the following: Design and maintenance of CableTV Inc.'s data center. Design and maintenance of CableTV Inc.'s network, that can include such equipment as a traffic controller.
(47) In contrast, end-users can often include persons with little or no technical background. Such end-users use software (through clients such as 110, 111, . . . 112), such as CableTV_1, as a kind of service, expecting the service to be available whenever needed. (Depending upon the user and/or situation, an administrative user and end-user can be the same person.)
(48) In general, a CML is intended for use by administrative users.
(49)
(50) As was also discussed above, the pseudo-code presented herein is itself loosely based on CML_Tcl. For example, it can be seen that the entire control procedure of
(51) The first action the PACKET_RECEIVED procedure performs is referred to herein as “session-detection.” (In the pseudo-code, session-detection is performed by the call to procedure session_detection, line 10,
(52) Regardless of whether p_1 is the start or continuation of a session, session_detection causes s_1 to refer to such session. It is also useful to determine whether the just-received packet is the final packet of a session. In the case of session_detection, this is indicated by the setting of the variable s_over to true (line 10).
(53) The beginning of a new session can be identified in any suitable way. In some cases, it can be identified by extracting the following 5-tuple from p_1: source IP source Port destination IP destination Port. protocol-used, and (if applicable) its current state
(54) The extracted 5-tuple can then be compared to each Session Record of Session Table 210. If no match is found, to a pre-existing Session Record, a new Session Record is created and added to the Session Table.
(55) Before p_1 is processed according to the Traffic ID's of its Session Record, p_1 itself is first subjected to classification, since it could effect the Traffic ID's. At least some of the classification modules of CM collection 201 are assumed to be written in a CML, such as CML_Tcl.
(56) In addition to being event driven, another key aspect of a CML are the types of events by which it can be triggered. Three important event types, that can trigger a classification module, are shown in
(57) Another key aspect of a CML is that it be capable of keeping state information, at least between the events of a single session. This is because identification of the type of traffic carried by the session can require the examination of multiple packets. A primary function of the RULE_INIT event is to initialize such state. At least three different types of state can be defined: intra-session persistent state: The CML only guarantees the persistence of the state within the existence of a single session. intra-module persistent state: The CML guarantees persistence of state between sessions, so long as the sessions use the same classification module (as indicated by common CMID). globally persistent state: The CML guarantees persistence of state between all sessions.
(58) Focused-upon herein is intra-session persistent state, since that is the type of state most commonly used. An example syntax for declaring, respectively, each of the three above-listed types of states is presented in the below example “when” statement (the below also referred to herein as Example_2):
(59) TABLE-US-00003 when RULE_INIT { set intra_session_state 0 set ::intra_module_state 0 set ::global::global_state 0 }
(60) Above Example_2 initializes each variable using the Tcl “set” statement. The syntax of each of the above-initialized variables is explained, respectively, as follows: An intra-session persistent variable “intra_session_state” is created, by simply introducing the variable's name. An intra-module persistent variable “intra_module_state” is created, by prefixing the variable's name with a pair of colon symbols (i.e., ::). A globally persistent variable “global_state” is created, by prefixing the variable's name with two pairs of colon symbols surrounding the keyword “global” (i.e., ::global::).
(61)
(62) Each module begins with a statement, called Module_Name, used to assign it a unique ID. This unique ID is also referred to herein as a “classification module ID” or “CMID.” Modules 280, 281, and 282 are each given, respectively, the following CMID's: CM_ID_1, CM_ID_2, and CM_ID_3. Module 280 consists of three “when” statements, each triggered, in order from top to bottom, by the following event: RULE_INIT, CLIENT_DATA, and SERVER_DATA. The body of code, within each “when” statement, is not shown. Module 281 consists of two “when” statements: RULE_INIT and CLIENT_DATA (once again, the body of code within each “when” statement is not shown). Module 282 does not need persistent state, in order to accomplish its form of classification, and so a “when” statement triggered by RULE_INIT is not needed. Module 282 happens to include two “when” statements both triggered by the SERVER_DATA event.
(63) If, for example, module 280 were written by CableTV Inc. in CML_Tcl, in order to identify packets of its software CableTV_1, then suitable classification rules for achieving CableTV Inc.'s goals are shown in
(64) Interpretation of a RULE_INIT event, when included as part of a classification module, is accomplished by lines 12-29 of
(65) Each classification module is iterated over (line 13). For the current CM (called cm_1 in the pseudo-code), it is tested (line 14) for whether it contains functionality triggered by a RULE_INIT type event. For example, if the classification module is written in CML_Tcl, such functionality can be specified by a “when” statement that identifies RULE_INIT as its triggering event. If RULE_INIT functionality is present in cm_1, each of the three above-listed types of state can be processed. The result of processing declarations of state can be represented by state tables, such as State Tables 240 of
(66) Each state table has records added by one of the three following “for” loops of
(67) Regardless of whether the latest packet p_1 represents a RULE_INIT type event, it needs to be tested for whether it is an event of type CLIENT_DATA or SERVER.sub.— DATA. Testing, for these event types, is called event-detection. For the PACKET_RECEIVED procedure, event-detection is performed by a call to event_detection (
(68) By the time event_detection is executed, the following is known: 1. latest-received packet p_1 has been associated with a session s_1; and 2. any state needed by a classification module, to classify p_1 within the context of session s_1, has been initialized.
(69) The pseudo-code of
(70) Each classification rule (such as a row of Rule Table 230 as shown in either of
(71) Depending on which of these tests is satisfied, the appropriate portion of cm_1 is executed: any CLIENT_DATA “when” statements are executed (line 15) if a CLIENT_DATA event has occurred; or any SERVER_DATA “when” statements are executed (line 20) if a SERVER_DATA event has occurred.
(72) During the execution of either type of “when” statement, variables can be accessed that require intra-module persistent state or globally persistent state (the possibility is mentioned in the comments of lines 14 and 19). As discussed above, for each such variable, with a VID v_1, intra-module persistent state can be accessed with cm_1. CMID and v_1 (applied to, for example, an Intra-Module Table 310) or globally persistent state can be accessed with v_1 (applied to, for example, Global Table 320).
(73) Even if a triggering event for a cm_1 of an r_1 has occurred, it may be the case that cm_1 has already successfully executed for session s_1. In that case, it can be desirable to block cm_1 from executing again with respect to the same session. This type of blocking, of repeated execution of a classification module with respect to a particular session, can be referred to herein as “Blocking-type Execution.” Shown in square brackets, on each of lines 12-13 and 17-18, is the additional test that can be performed as part of adding Blocking-type Execution. These tests check for whether the “state under s_1. SID and cm_1. CMID allows execution.”
(74) For either a CLIENT_DATA or SERVER_DATA type event, if the classification module executes successfully (tested by line 22), the following is applicable: Action portion of the current rule r_1 is performed (line 23). As has been discussed above, the action of a Rule Record is to add a Traffic ID to the applicable session s_1. If Blocking-type Execution is to be performed, state can be added, to an Intra-Session State Table record, indicating that, for session s_1, cm_1 is not to be executed again. This operation is performed by line 24, shown in square brackets to indicate the optionality of Blocking-type Execution. If an Intra-Session State Record does not already exist for the combination s_1 and cm_1, it can be created by line 24 and then the appropriate indication, to block further execution, can be added.
(75) In terms of the example CML_Tcl, the successful execution of a CM can be specified by programming-in the execution of a particular statement. An example statement that could be executed is the following: matchCML_Tcl
(76) For the current rule r_1, if a test of it (by line 10) indicates that it does not use a classifier module, then r_1 can be tested for whether it satisfies some other criteria. For example, as shown at line 27 of
(77) Having made sure that any necessary updates to current session s_1 have been performed, packet p_1 can be processed in accordance with the Traffic ID's of s_1. In the pseudo-code, such packet processing is performed by invoking packet_process at line 30,
(78) If p_1 is the last packet of a session (tested by line 1,
(79) At this point, processing of latest-received packet p_1 is complete.
3 Multiple Collections
(80) As discussed above in Section 1 (“Introduction”), the inventive techniques presented herein focus on two main areas: Improving the process by which a CM collection, as utilized by a traffic controller, is updated. Enhancing the ability of a user, or small groups of users, to create classification modules customized to the particular types of network traffic they handle (please see Glossary for definition of “user”).
(81) Having now covered major aspects of the latter of the two above-listed areas, this section focuses on the former.
(82)
(83)
(84)
(85) Continuing with Example_1, until an updated CM collection is loaded, the PACKET_RECEIVED procedure of
(86) At some point in time, an updated CM collection is loaded, and is referred to herein as CM collection 202. Each time an updated CM collection is loaded, the COLLECTION_LOADED procedure of
(87) As each packet p_1 is received by the traffic controller, for so long as the transitioning_flag remains true, any one of the following actions can be done: Any new sessions detected are given a Session Record with a CID value of 1. This ensures that any further packets received, if part of a new session, are classified by modules from the new CM collection. A count is kept (by num_new_sessions) of these new Session Records. For a session s_1 that existed before loading of the new CM collection: If the receipt of its latest packet p_1 represents an opportunity, when the session can be transitioned to the new CM collection, the following is done: s_1 's CID value is changed to 1 num_old_sessions is decremented, and num_new_sessions is incremented. If the receipt of its latest packet p_1 represents the end of s_1, the following is done: session is flushed from the Session Table any intra-session state of s_1 is also flushed, and num_old_sessions is decremented. Each time num_old_sessions is decremented, as part of one of the two above-listed items, it is also tested for being 0. If it is, it is known that the transition from the old CM collection to the new CM collection has been completed. Preparation, for a possible future loading of another updated CM collection, is accomplished as follows: transitioning_flag is set to false num_old_sessions is set to the value of num_new_sessions, and num_new_sessions is set to 0
(88) Having presented an overview of the process, the pseudo-code of
(89) First, session-detection is performed at line 10,
(90) Regardless of whether the latest packet p_1 represents the start of a new session, events of type CLIENT_DATA or SERVER_DATA are tested-for next (see call to event_detection, line 21,
(91) The Rule Records (such as those of
(92) Packet processing is performed next, and the pseudo-code for that (see
(93) The pseudo-code of
(94) If the test of line 3 indicates that transitioning between CM collections is not in process, the ending of a session simply means (other than flushing the session) that the number of old sessions is decremented (line 19).
(95) The pseudo-code of
(96) If transitioning is in effect (tested by line 2), the following steps can be performed: The session, if it has not already been transitioned to the new CM collection (a condition tested by line 3), can be transitioned. The transitioning is accomplished by changing the session's CID to that of the new CM collection (line 4), decrementing the number of old sessions (line 5), and incrementing the number of new sessions (line 6).
(97) If the transitioning of s_1 means that all old sessions have either transitioned or ended, as determined by comparing num_old_sessions to zero (
4 Additional Information
(98) 4.1 Computing Equipment
(99) With regard to any of the computing systems described herein, such as client computers, a traffic controller, network equipment, and/or a data center, any type of non-volatile media (e.g., a hard drive, solid-state drive, CD-ROM, or DVD) can be included.
(100) Any reference above to information stored in a “table” can also be understood to refer to the use of a database, organized according to any of the techniques known in the art, in accordance with the needs of a particular application.
(101) Computer systems that require interactivity with a user can be equipped with any of the known user interface devices, as is appropriate for the particular application, including, but not limited to: a monitor for visual display (with or without touch screen capability), a keyboard, and a mouse (or any other form of pointing device).
(102) In accordance with what is ordinarily known by those in the art, the computers specified herein contain computational hardware (e.g., integrated circuits), and programmable memories (volatile and/or non-volatile), of various types.
(103) The kind of information described herein (such as data and/or instructions), that is on computer-readable media and/or programmable memories, can be stored on computer-readable code devices embodied therein. A computer-readable code device can represent that portion of a memory in which a defined unit of information (such as a bit) can be stored and/or from which a defined unit of information can be retrieved.
5 Glossary of Selected Terms
(104) A10 NETWORKS: A10 Networks, Inc., a California corporation with a principal place of business in San Jose, Calif., USA. application: Any system intended to have a particular area of applicability with respect to at least one group of at least one or more users. Generally has at least some provision for interaction with its user group. When regarded as primarily software, can be referred to as an “application program” or “application software.” In this case, is often defined by distinguishing it against programs involved in executing (e.g., a compiler or interpreter), or in managing the execution of (e.g., an operating system), an application program. An application can contain one or more modules. CID: Collection ID. Any value that uniquely identifies each CM collection, in a group of two or more CM collections. Classification module (or CM): a module that, as a result of its application to a session, can assign a traffic type to one or more of the packets of the session. CMID: Classification Module ID. Any value that uniquely identifies each classifier module, with respect to a classifier module collection. CML: Classification Module Language. CML_Tcl: With regard to the products of A10 NETWORKS, the term “CML_Tcl” can be substituted by the term “AFLEX.” The term AFLEX can be capitalized in various ways, including, but in no way limited to, the following: “aFleX,” “Aflex,” or “aflex.” L1-L7: Refers to a layer of the Open Systems Interconnection (OSI) model, as developed by the International Organization for Standardization (ISO/IEC 7498-1). The OSI model is a way of providing a standardized characterization of the functions of a communications system. Starting at the lowest level layer of L1 (also called the “physical layer”), each successive layer is intended to represent a higher level of abstraction. Loading or unloading: addresses the ability of a first system to be coupled (or otherwise connected) to a second system. After the “loading” of a first system is complete, it is able to interact with the second system. If a first system is already “loaded,” with respect to a second system, after “unloading” of the first system is complete, it is no longer able to interact with the second system. Module: anything that can be meaningfully regarded, with respect to some larger system, as a distinct subsystem. Pseudo-code: The pseudo-code presented herein is loosely based on the “Tcl” programming language and CML_Tcl. Session: as defined herein, refers to the entire process by which any transfer of data, according to some protocol, begins, progresses, and completes. The term session, as used herein, encompasses data transfers under “connectionless” protocols, such as UDP. In the case of UDP, the entire process of data transfer is completed with the transmission of a single packet. For other protocols, such as TCP, a minimum of three packets are needed simply to establish the beginning of a session. SID: Session ID. Any value that uniquely identifies each session, as managed by a traffic controller. System: Can be comprised of hardware, software, or any combination of hardware and software. Unless indicated otherwise, the term “system” is understood as also referring to anything that can be regarded as a subsystem. Tcl: a scripting language created by John Ousterhout in 1988. The name was originally an acronym of “Tool Command Language.” Since 2000, Tcl has been maintained by the Apache Software Foundation, a not-for-profit corporation. Traffic control: any technique or techniques by which the transmission of packets within a network is controlled. Traffic controller: any device that is capable of performing traffic control. With regard to the products of A10 NETWORKS, a traffic controller can include, but is in no way limited to, the following: an Application Bandwidth Manager of the EX Series. Traffic type: a result of an effort to classify the one or more packets that comprise a session. Such types can typically be grouped into two categories: application or content. Application and content are relative: an application is a way in which to transmit content. User: refers to the one or more persons that work together, for purposes of using a traffic controller, as a single administrative entity. Thus, a user of a traffic controller can include, but is not limited to, any of the following: an individual person or an individual company. For the case of a “user” that is an individual company, any of its employees or officers, in the course of their utilization of a traffic controller, may be referred to herein as a “user.” VID: Variable ID. Any symbol used to identify a variable in a CML program.
(105) While the invention has been described in conjunction with specific embodiments, it is evident that many alternatives, modifications and variations will be apparent in light of the foregoing description. Accordingly, the invention is intended to embrace all such alternatives, modifications and variations as fall within the spirit and scope of the appended claims and equivalents.