To configure an AA Cflowd special-study policy
Steps
1 |
Log in to a station that has access to the NSP system. |
2 |
Open a console window. |
3 |
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 |
4 |
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 |
5 |
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 |
6 |
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 |
7 |
Close the console window. End of steps |