Handling traffic by VLAN [Документация VAS Experts]

Differences

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

Link to this comparison view

Next revision
Previous revision
en:dpi:dpi_components:platform:vlan_traffic_handling [2024/09/26 15:29] – created - external edit 127.0.0.1en:dpi:dpi_components:platform:vlan_traffic_handling [2025/09/02 13:59] (current) elena.krasnobryzh
Line 1: Line 1:
 {{indexmenu_n>10}} {{indexmenu_n>10}}
 ======Handling traffic by VLAN====== ======Handling traffic by VLAN======
 +<note warning>The ''vlan group'' data has been migrated from UDR to SDR. Global rules for ''vlan drop'', ''vlan pass'', ''vlan hide'', ''vlan permit'', previously set by the legacy CLI command ''vlan group'', have been converted and migrated from UDR to SDR with removal from UDR.</note>
 +  - Drop traffic without analysis from a specific VLAN:<code bash>fdpi_cli vlan group <id> drop</code>
 +  - Dropping traffic with preliminary analysis, but without transferring it to Netflow statistics from a specific VLAN (Used to deal with asymmetric traffic when a site receives a double of traffic from another site. It is necessary to analyze and drop the traffic so that it is not included in the statistics):<code bash>fdpi_cli vlan group <id> hide</code>
 +  - Passing traffic without any analysis from a specific VLAN:<code bash>fdpi_cli vlan group <id> pass</code>
 +  - Display existing settings in the UDR: <code bash>fdpi_cli vlan group 0 show all</code>Example output of the command:<code bash>fdpi_cli vlan group 0 show all
 +<proto> <vlan> <service-name> <policy> <delay>
 +all 4000 *  hide 0
 +all 4002 *  hide 0
 +all 4003 *  hide 0</code>In this example, you can see that all protocols belonging to VLAN 4000, 4002, 4003 are affected by hide, that is, traffic from one site is duplicated to another site.
 +  - Output all properties for a group with a specific id:<code bash>fdpi_cli vlan group <id> show all</code>Here ''id'' is the number of the VLAN for which you want to output Service-Name information. 
  
-Drop traffic without analysis from a specific VLAN: +<note tip>For more informationsee[[en:dpi:bras_bng:bras_pppoe#configuring_service-name_for_vlan|Configuring Service-Name for VLAN]]</note>
-<code bash>fdpi_cli vlan group <id> drop</code> +
- +
-Dropping traffic with preliminary analysisbut without transferring it to Netflow statistics from a specific VLAN (Used to deal with asymmetric traffic when a site receives a double of traffic from another site. It is necessary to analyze and drop the traffic so that it is not included in the statistics): +
-<code bash>fdpi_cli vlan group <id> hide</code> +
- +
-Passing traffic without any analysis from a specific VLAN+
-<code bash>fdpi_cli vlan group <id> pass</code>+