Re: [Sipp-users] Having a timer in script

2014-07-13 Thread Rob Day
On 13/07/14 04:44, Praveen Bandari wrote: > Hi All, > > I have requirement to perform REGISTER method for every 5 minutes. > Right now, I am doing this using a loop created with the use of > 'label', but this is causing too many requests being sent to > server. This is the way I would do it. I'm

Re: [Sipp-users] Having a timer in script

2014-07-13 Thread Volkan KUMBASAR
Hi Paveen, You may fulfil this requirement using shell script as framework: #!/bin/bash while : do sipp 172.0.0.0 -i 5060 -inf user.csv -sf register.xml # paste your sipp script sleep 300 done Regards, v On 13 Jul 2014, at 06:44, Praveen Bandari mailto:[email protected].

[Sipp-users] Having a timer in script

2014-07-12 Thread Praveen Bandari
Hi All, I have requirement to perform REGISTER method for every 5 minutes. Right now, I am doing this using a loop created with the use of 'label', but this is causing too many requests being sent to server. To avoid this, I am thinking of using a counter. Could you please look into this and let