To configure an AA Cflowd special-study policy

Steps
 

Log in to a station that has access to the NSP system.


Open a console window.


As required, issue the following RESTCONF API call to specify an AA application defined on the router:

Note: In order to issue a RESTCONF API call, you require a token; see the My First NSP API Client tutorial on the Network Developer Portal for information.

POST https://address:443/restconf/data/flowconf:config/filters/aa/special-study/app

where address is the NSP cluster advertised address

The message body is the following:

{

    "app" : [

      {

            "name" : "name",

        }

    ]

}

where name is the name of the AA application defined on the router


As required, issue the following RESTCONF API call to specify an AA application group defined on the router:

Note: In order to issue a RESTCONF API call, you require a token; see the My First NSP API Client tutorial on the Network Developer Portal for information.

POST https://address:443/restconf/data/flowconf:config/filters/aa/special-study/app-grp

where address is the NSP cluster advertised address

The message body is the following:

{

    "app-grp" : [

      {

            "name" : "name",

        }

    ]

}

where name is the name of the AA application group defined on the router


As required, issue the following RESTCONF API call to specify an AA subscriber defined on the router:

Note: In order to issue a RESTCONF API call, you require a token; see the My First NSP API Client tutorial on the Network Developer Portal for information.

POST https://address:443/restconf/data/flowconf:config/filters/aa/special-study/sub

where address is the NSP cluster advertised address

The message body is the following:

{

    "sub" : [

      {

            "sys-ip" : "sys-ip"

            "sub-type" : "sub-type"

            "sub-id" : "sub-id",

        }

    ]

}

where

sys-ip is the router IP address

sub-type is the subscriber type

sub-id is the subscriber ID


As required, issue the following RESTCONF API call to specify an AA subscriber and application defined on the router:

Note: In order to issue a RESTCONF API call, you require a token; see the My First NSP API Client tutorial on the Network Developer Portal for information.

POST https://address:443/restconf/data/flowconf:config/filters/aa/special-study/sub-app

where address is the NSP cluster advertised address

The message body is the following:

{

    "sub-app" : [

      {

            "sys-ip" : "sys-ip"

            "sub-type" : "sub-type"

            "sub-id" : "sub-id"

            "app" : "app",

        }

    ]

}

where

sys-ip is the NE system IP address

sub-type is the subscriber type

sub-id is the subscriber ID

app is the AA application defined on the router


Close the console window.

End of steps