Hi everyone, Can someone swing the clue bat at me, and provide me with information on where I should look to find out how to disable detail log files for specific NASs only? I need to keep the detail files for legacy purposes, but only for specific NASs, and I'd like to disable the rest of them from logging there. Is this possible? Steve
Steve Bertrand wrote:
Can someone swing the clue bat at me, and provide me with information on where I should look to find out how to disable detail log files for specific NASs only?
$ man unlang
I need to keep the detail files for legacy purposes, but only for specific NASs, and I'd like to disable the rest of them from logging there.
Is this possible?
It's trivial. accounting { ... if (Packet-Src-IP-Address != 1.2.3.4) { detail } ... } Alan DeKok.
Alan DeKok wrote:
Steve Bertrand wrote:
Can someone swing the clue bat at me, and provide me with information on where I should look to find out how to disable detail log files for specific NASs only?
$ man unlang
I need to keep the detail files for legacy purposes, but only for specific NASs, and I'd like to disable the rest of them from logging there.
Is this possible?
It's trivial.
accounting { ...
if (Packet-Src-IP-Address != 1.2.3.4) { detail } ... }
Beautiful. Thanks Alan! Steve
participants (2)
-
Alan DeKok -
Steve Bertrand