Configure rsyslog Server RHEL 6.x
=====================================================
# yum -y install rsyslog
# vim /etc/rsyslog.conf
remove '#'
-----------------------------------------------------
# Provides UDP syslog reception
#$ModLoad imudp
#$UDPServerRun 514
# Provides TCP syslog reception
#$ModLoad imtcp
#$InputTCPServerRun 514
-----------------------------------------------------
to
-----------------------------------------------------
# Provides UDP syslog reception
$ModLoad imudp
$UDPServerRun 514
# Provides TCP syslog reception
$ModLoad imtcp
$InputTCPServerRun 514
-----------------------------------------------------
# service rsyslog restart
# netstat -antup | grep 514
=====================================================
ProCurve Series 6120 Switches Management and Configuration Guide
http://h20565.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02617338
P. 557, C-39 Configuring Debug/Syslog Operation
=====================================================
Check State
(config) # show debug
(config) # logging <rsyslog-server-ip-address>
(config) # logging severity debug
(config) # logging system-module all-pass
(config) # show debug
(config) # write memory
=====================================================