Browse Community
Help
Log In
Responses(2)
Solutions(0)
tchstnut
1 Rookie
•
16 Posts
1
January 31st, 2023 10:00
tiger1444
2 Posts
0
February 1st, 2023 10:00
Thanks for sharing.
Dell Support Resources
View All
Top
tchstnut
1 Rookie
•
16 Posts
1
January 31st, 2023 10:00
We have used the following process to send syslog to splunk, Problem is it seems you have to do it after each upgrade:
#backup /etc/services#
cp /etc/services /ifs/data/Isilon_Data/Servicesbackup/services.bak
#make working copy of service#
cp /etc/services /ifs/data/Isilon_Data/Servicesbackup/services.working
#comment out and add port to services.working with VI. Ports are in numerical order
.
#syslog 514/udp
.
.syslog XXXX/udp #syslog for splunk
#copy working to /etc on all nodes
isi_for_array cp /ifs/data/Isilon_Data/Servicesbackup/services.working /etc/services
#restart syslog deamon#
isi_for_Array -s 'pkill -HUP sylogd'isi aud
You should now be able to run a tcpdump for the port and see the logs passing.
tiger1444
1 Rookie
•
2 Posts
0
February 1st, 2023 10:00
Thanks for sharing.