Management [Документация VAS Experts]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:dpi:dpi_options:opt_notify:notify_mgmt:start [2020/02/05 17:35] – ↷ Page moved from en:dpi:dpi_options:base_functionality:opt_notify:notify_mgmt:start to en:dpi:dpi_options:opt_notify:notify_mgmt:start lexx26en:dpi:dpi_options:opt_notify:notify_mgmt:start [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== 3 Management ====== 
-{{indexmenu_n>3}} 
-This service is configured on individual subscribers' level by [[en:dpi:dpi_components:platform:subscriber_management:subsman_cmd:start|fdpi_ctrl]]. 
- 
-Instruction format: 
-<code> 
-fdpi_ctrl command --service 6 [IP_list] 
-</code> 
-You can find more details on the instruction syntax and IP specification methods here: [[en:dpi:dpi_components:platform:subscriber_management:subsman_cmd:start|Control instructions]] 
- 
-Examples: 
- 
-To activate notification for a particular subscriber: 
-<code> 
-fdpi_ctrl load --service 6 --ip 192.168.0.1 
-</code> 
- 
-After successful notification the service is switched off automatically. 
- 
-To create a named profile and to activate notification with a profile for a group of subscribers 
-<code> 
-fdpi_ctrl load profile --service 6 --profile.name  TV_channel_our_football_advertisment --profile.json '{ "redirect" : "http://mysite.ru/landing_our_football", "check" : true }' 
-fdpi_ctrl load --service 6 --profile.name TV_channel_our_football_advertisment --ip 192.168.0.1 
-fdpi_ctrl load --service 6 --profile.name TV_channel_our_football_advertisment --ip 192.168.0.2 
-</code> 
-here the following profile setting using the json format are set\\  
-redirect - redirection page\\  
-check : true/false - check or not to check if the redirection succeeded (redirection checking allows you to increase the reliability of this service, but requires the requests to the redirection page being routed through the dpi) 
- 
-To activate the notification service with the anonymous profile (profile without a name existing up to the subscriber's service deactivation) for a particular subscriber: 
-<code> 
-fdpi_ctrl load --service 6 --profile.json '{ "redirect" : "http://mysite.ru/landing_nash_football", "check" : true }' --ip 192.168.0.2 
-</code> 
- 
-To search the subscribers with active notification service with the given profile name 
-<code> 
-fdpi_ctrl list all --service 6 --profile.name TV_channel_our_football_advertisment 
-</code> 
- 
-To delete a named profile (there should be no subscribers using this profile) 
-<code> 
-fdpi_ctrl del profile --service 6  --profile.name tariff_10 
-</code> 
- 
-To change the service (profile) settings (new settings are applied to all the subscribers with specified service profile) 
-<code> 
-fdpi_ctrl load profile --service 6 --profile.name TV_channel_our_football_advertisment --profile.json '{ "redirect" : "http://mysite.ru/landing_nash_football", "check" : true }' 
-</code> 
- 
-The maximum number of profiles for notification is set by corresponding option in /etc/dpi/fastdpi.conf file: 
-<code>  
-max_profiles_ntf=65535 
-</code> 
-here 65535 is the default and the greatest possible value.\\ 
-It is not the "on the fly" setting, so it requires to restart the service. 
-