- Table of Contents
-
- 14-Network Management and Monitoring Configuration Guide
- 00-Preface
- 01-System maintenance and debugging configuration
- 02-NQA configuration
- 03-NTP configuration
- 04-PTP configuration
- 05-Network synchronization configuration
- 06-SNMP configuration
- 07-RMON configuration
- 08-Event MIB configuration
- 09-NETCONF configuration
- 10-EAA configuration
- 11-Process monitoring and maintenance configuration
- 12-Sampler configuration
- 13-Mirroring configuration
- 14-NetStream configuration
- 15-IPv6 NetStream configuration
- 16-TCP connection trace configuration
- 17-Fast log output configuration
- 18-Flow log configuration
- 19-Information center configuration
- 20-GOLD configuration
- 21-Packet capture configuration
- Related Documents
-
Title | Size | Download |
---|---|---|
12-Sampler configuration | 55.44 KB |
Contents
Display and maintenance commands for a sampler
Samplers and IPv4 NetStream configuration examples
Example: Configuring samplers and IPv4 NetStream
Configuring samplers
About sampler
A sampler selects a packet from sequential packets and sends the packet to other service modules for processing. Sampling is useful when you want to limit the volume of traffic to be analyzed. The sampled data is statistically accurate and sampling decreases the impact on the forwarding capacity of the device.
The following sampling modes are available:
· Fixed mode—The first packet is selected from sequential packets in each sampling.
· Random mode—Any packet might be selected from sequential packets in each sampling.
A sampler can sample packets for NetStream. Then, only the sampled packets are sent to and processed by the NetStream module. For more information about NetStream, see "Configuring NetStream."
Creating a sampler
1. Enter system view.
system-view
2. Create a sampler.
sampler sampler-name mode { fixed | random } packet-interval rate
By default, no samplers exist.
Support for the n-power keyword varies by device model.
Display and maintenance commands for a sampler
Execute display commands in any view.
Task |
Command |
Display configuration information about the sampler. |
display sampler [ sampler-name ] [ chassis chassis-number slot slot-number [ cpu cpu-number ] ]
|
Samplers and IPv4 NetStream configuration examples
Example: Configuring samplers and IPv4 NetStream
Network configuration
As shown in Figure 1, configure samplers and NetStream as follows:
· Configure IPv4 NetStream on the device to collect statistics on incoming and outgoing traffic.
· Send the NetStream data to port 5000 on the NetStream server.
· Configure fixed sampling in the inbound direction to select the first packet from 256 packets on GigabitEthernet 1/2/0/1.
· Configure random sampling in the outbound direction to select one packet randomly from 1024 packets on GigabitEthernet 1/2/0/2.
Configuration procedure
# Create sampler 256 in fixed sampling mode, and set the sampling rate to 256. The first packet of 256 packets is selected.
<Router> system-view
[Router] sampler 256 mode fixed packet-interval 256
# Create sampler 1024 in random sampling mode, and set the sampling rate to 1024. One packet from 1024 packets is selected.
[Device] sampler 1024 mode random packet-interval 1024
# Enable IPv4 NetStream to use sampler 256 to collect statistics about the incoming traffic on GigabitEthernet 1/2/0/1.
[Device] interface gigabitethernet 1/2/0/1
[Device-GigabitEthernet1/2/0/1] ip netstream inbound
[Device-GigabitEthernet1/2/0/1] ip netstream inbound sampler 256
[Device-GigabitEthernet1/2/0/1] quit
# Enable IPv4 NetStream to use sampler 1024 to collect statistics about outgoing traffic on GigabitEthernet 1/2/0/2.
[Device] interface gigabitethernet 1/2/0/2
[Device-GigabitEthernet1/2/0/2] ip netstream outbound
[Device-GigabitEthernet1/2/0/2] ip netstream outbound sampler 1024
[Device-GigabitEthernet1/2/0/2] quit
# Configure the address and port number of the NetStream server as the destination for the NetStream data export. Use the default source interface for the NetStream data export.
[Device] ip netstream export host 12.110.2.2 5000
Verifying the configuration
# Display configuration information for sampler 256 and sampler 1024.
[Device] display sampler 256
Sampler name: 256
Mode: Fixed; Packet-interval: 256; IsNpower: N
[Device] display sampler 1024
Sampler name: 1024
Mode: Random; Packet-interval: 1024; IsNpower: N