memory
Stores the captured RADIUS messages in memory. Packets stored in memory are available with REST API.
Examples
Example configuration of a memory capture with default (16384) size:
captures {
capture "CAPTURE_TO_MEMORY" {
memory;
}
}
Example configuration of memory capture with custom size:
captures {
capture "CAPTURE_TO_MEMORY" {
memory {
size 32768;
}
}
}