08-15-2005 10:58 AM
View the following and tell me if all this does is clears the memory at the times specified in the command. This is a snippit from the Microsoft LCS load-balancing document I got my hands on.
flow permanent port1 5060
flow permanent port2 5061
cmd-sched record MS_LCS5060-off 0 2 * * * "conf;no flow permanent port1;exit"
cmd-sched record MS_LCS5060-on 2 2 * * * "conf;flow permanent port1 5060;exit"
cmd-sched
cmd-sched record MS_LCS5061-off 0 3 * * * "conf;no flow permanent port2;exit"
cmd-sched record MS_LCS5061-on 2 3 * * * "conf;flow permanent port2 5061;exit"
Any info would be appreciated.
Solved! Go to Solution.
08-15-2005 11:31 AM
with these functions, each time the script is runned, all flow that are idled will be marked as so and eventually will be garbage collected.
So, it does clean up the flow table.
You can do a 'flow stat' to see the number of free flows. This number should not get to zero.
You will not see this number increasing as soon as the script runs, but it should after that if the number of free flows was low.
There are some discussions on flows and FCB on this forum that you can read if you are interested.
Gilles.
08-15-2005 11:31 AM
with these functions, each time the script is runned, all flow that are idled will be marked as so and eventually will be garbage collected.
So, it does clean up the flow table.
You can do a 'flow stat' to see the number of free flows. This number should not get to zero.
You will not see this number increasing as soon as the script runs, but it should after that if the number of free flows was low.
There are some discussions on flows and FCB on this forum that you can read if you are interested.
Gilles.
08-15-2005 12:27 PM
Thanks for your insight. I will browse the other discussions on flows as well.
Steve.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide