--- IPFlow Automatic Shutdown ---

IPFlow Automatic Shutdown is a feature that allows the collector to be automatically stopped after a delay or at a specified date.

Stopping the collector after a delay

options {
    stop-in {
        days 8;
        hours 5;
        minutes 30;
    };
};
In this example, the collector will be stopped automatically in 8 days, 5 hours and 30 minutes after startup.

You can use these keywords to specify time:

Stopping the collector at a specified date

options {
    stop-at {
        date 2003-06-21;
        time 21:00;
    };
};
In this example, the collector will be stopped exactly at 2003-06-21, 9:00pm. If you specify a time anterior to the collector startup time, the collector will shutdown immediately after its initialization process. If you don't indicate a date but only a time, the current day will be used as reference.


Last Update: 2003/06/16