TABLE OF CONTENTS
- Overview
- Prerequisites
- Syslog Configuration (Avaya CLI)
- NetFlow (sFlow) Configuration
- Verification (MSSP Only)
Overview
This document details the steps to configure AVAYA network switches for integrating with centralized support, monitoring, and log collection platforms. Proper configuration ensures the seamless forwarding of logs and alerts to support teams or SIEM solutions, enhancing troubleshooting, security analysis, and operational visibility.
Prerequisites
- Administrative SSH or console access to the Avaya switch.
- Correct system date/time and timezone on the switch.
- IP address of the ADR CCE server.
- Firewall rules allowing outbound:
- UDP 514 for Syslog
- UDP 6343 for sFlow.
Syslog Configuration (Avaya CLI)
- SSH to the switch:
ssh admin@<SwitchIP> enable configure terminal - Add Syslog server:
logging host <CCE_IP> vrf default logging facility local7 logging severity informational - Save configuration:
write memory
NetFlow (sFlow) Configuration
- Enter configuration mode:
configure terminal - Set sFlow agent to switch management IP:
sflow agent-ip SwitchManagementIP - Define sFlow collector (CCE):
sflow collector <CCE_IP> udp-port 6343 - Enable sFlow globally:
sflow enable - Enable sFlow on interfaces (e.g., gigabitEthernet 1/0/1):
interface gigabitEthernet 1/0/1 sflow enable exit - Configure sampling and polling:
sflow sample-rate 1024 sflow polling-interval 60 - Save configuration:
write memory
Verification (MSSP Only)
On Switch (CLI)
Check configuration:
show logging
show sflowOn ADR CCE CLI
Capture incoming Syslog and sFlow traffic:
sudo tcpdump -i any port 514 and host <SwitchIP> -AAA
sudo tcpdump -i any port 6343 and host <SwitchIP> -AAAReplace SwitchIPwith the Avaya switch IP
On ADR SIEM UI
Log in to ADR SIEM UI.
Navigate to System Logs and Flows > Collection Status.
Confirm the Avaya switch IP appears under Source Device IP for both logs and flows.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article