cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1126
Views
0
Helpful
1
Replies

ESM Syslog question

lni1
Level 1
Level 1

Dear Cisco Guru's,

 

In order to filter our syslog, we stumbled upon ESM (embedded syslog manager), however I don't seem to get it working :

This is a very short example that should filter out all DOT1X syslog messages.

if { $::mnemonic == "DOT1X" }  {
return ""
     } else   {
     return "$::orig_msg"
     }

On the switch : logging filter flash:esm.tcl + logging buffered filtered

 

What am i doing wrong ?

 

Lieven Stubbe

Belgian railways

1 Reply 1

lni1
Level 1
Level 1

It should be facility, but still not working as it should :

 

if { $::facility== "DOT1X" }  {
return ""
     } else   {
     return "$::orig_msg"
     }