community.network.ce_sflow module – Manages sFlow configuration on HUAWEI CloudEngine switches.
Note
This module is part of the community.network collection (version 5.1.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.network.
To use it in a playbook, specify: community.network.ce_sflow.
Note
The community.network collection has been deprecated and will be removed from Ansible 12. See the discussion thread for more information.
DEPRECATED
- Removed in:
- version 6.0.0 
- Why:
- This collection and all content in it is unmaintained and deprecated. 
- Alternative:
- Unknown. 
Synopsis
- Configure Sampled Flow (sFlow) to monitor traffic on an interface in real time, detect abnormal traffic, and locate the source of attack traffic, ensuring stable running of the network. 
Aliases: network.cloudengine.ce_sflow
Parameters
| Parameter | Comments | 
|---|---|
| Specifies the IPv4/IPv6 address of an sFlow agent. | |
| Specifies the maximum length of sFlow packets sent from an sFlow agent to an sFlow collector. The value is an integer, in bytes. It ranges from 1024 to 8100. The default value is 1400. | |
| Specifies the description of an sFlow collector. The value is a string of 1 to 255 case-sensitive characters without spaces. | |
| Specifies the ID of an sFlow collector. This ID is used when you specify the collector in subsequent sFlow configuration. Choices: 
 | |
| Specifies the IPv4/IPv6 address of the sFlow collector. | |
| Specifies the name of a VPN instance. The value is a string of 1 to 31 case-sensitive characters, spaces not supported. When double quotation marks are used around the string, spaces are allowed in the string. The value  | |
| Configures the device to send sFlow packets through service interfaces, enhancing the sFlow packet forwarding capability. The enhanced parameter is optional. No matter whether you configure the enhanced mode, the switch determines to send sFlow packets through service cards or management port based on the routing information on the collector. When the value is meth, the device forwards sFlow packets at the control plane. When the value is enhanced, the device forwards sFlow packets at the forwarding plane to enhance the sFlow packet forwarding capacity. Choices: 
 | |
| Specifies the UDP destination port number of sFlow packets. The value is an integer that ranges from 1 to 65535. The default value is 6343. | |
| Indicates the ID list of the counter collector. | |
| Indicates the counter sampling interval. The value is an integer that ranges from 10 to 4294967295, in seconds. The default value is 20. | |
| Configures the sFlow packets sent by the switch not to carry routing information. Choices: 
 | |
| Indicates the ID list of the collector. | |
| Enables flow sampling in the inbound or outbound direction. Choices: 
 | |
| Specifies the maximum length of sampled packets. The value is an integer and ranges from 18 to 512, in bytes. The default value is 128. | |
| Specifies the flow sampling rate in the format 1/rate. The value is an integer and ranges from 1 to 4294967295. The default value is 8192. | |
| Full name of interface for Flow Sampling or Counter. It must be a physical interface, Eth-Trunk, or Layer 2 subinterface. | |
| Specifies the source IPv4/IPv6 address of sFlow packets. | |
| Determines whether the config should be present or not on the device. Choices: 
 | 
Notes
Note
- This module requires the netconf system service be enabled on the remote device being managed. 
- Recommended connection is - netconf.
- This module also works with - localconnections for legacy playbooks.
Examples
---
- name: Sflow module test
  hosts: ce128
  connection: local
  gather_facts: false
  vars:
    cli:
      host: "{{ inventory_hostname }}"
      port: "{{ ansible_ssh_port }}"
      username: "{{ username }}"
      password: "{{ password }}"
      transport: cli
  tasks:
  - name: Configuring sFlow Agent
    community.network.ce_sflow:
      agent_ip: 6.6.6.6
      provider: '{{ cli }}'
  - name: Configuring sFlow Collector
    community.network.ce_sflow:
      collector_id: 1
      collector_ip: 7.7.7.7
      collector_ip_vpn: vpn1
      collector_description: Collector1
      provider: '{{ cli }}'
  - name: Configure flow sampling.
    community.network.ce_sflow:
      sflow_interface: 10GE2/0/2
      sample_collector: 1
      sample_direction: inbound
      provider: '{{ cli }}'
  - name: Configure counter sampling.
    community.network.ce_sflow:
      sflow_interface: 10GE2/0/2
      counter_collector: 1
      counter_interval: 1000
      provider: '{{ cli }}'
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| check to see if a change was made on the device Returned: always Sample:  | |
| k/v pairs of configuration after module execution Returned: verbose mode Sample:  | |
| k/v pairs of existing configuration Returned: verbose mode Sample:  | |
| k/v pairs of parameters passed into module Returned: verbose mode Sample:  | |
| commands sent to the device Returned: always Sample:  | 
Status
- This module will be removed in version 6.0.0. [deprecated] 
- For more information see DEPRECATED. 
