• Idefisk
  • Tools
  • Tutorials
  • Reviews
  • VoIP Providers
  • Archives
ZOIPER softphone
Back to Tutorials

9. Astertest - asterisk stress testing tool

Astertest is a Windows application that can test the CPU load of your Asterisk PBX server. In order to use it you must have advanced knowledge in VoIP. To complete the test you must have an Asterisk PBX server that originates the calls and one more Asterisk server which to be tested. You can download the application from http://astertest.com/downloads/. You will need most of the things there. Let us start doing the things one by one.

1.Select the servers

You must have clear idea which machine will be used as Origination server and which one as Test server.

2.Audio Files

The audio files are stored in /usr/src/asterisk/sounds/. Copy astertest-rtp.gsm from http://astertest.com/downloads/ to the Origination server. On the Test server you have to copy all the sound file formats you wish to test. For alaw you need some *.alaw audio file for example - ast-test-al.al. You can use your own files with different name, but make sure when you configure the extensions.conf on the Test server to use the correct audio file name with the Playback command, ast-test-gsm.gsm for gsm tests, ast-test-ul.ul for ulaw, ast-test-ilbc.ilbc etc. Now when you have the audio files for the test you have to implement some new modules in asterisk that will give you the information for the actual CPU load while testing.

3.New Asterisk Modules

The modules below must be installed on both Asterisk servers:
app_securax_cpuinfo.c
app_securax_serverload.c
securax_utils.c
securax_utils.h

Copy these files in /usr/src/asterisk/asterisk/apps/ on both Origination server and Test server.

4. Changing the application’s Makefile

Now Asterisk has to be told that these modules really exits and they have to be loaded. For this purpose you have to change the Makefile in /usr/src/asterisk/asterisk/apps/. Open the Makefile that you have downloaded and copy the bolded lines to their corresponding places in the original Makefile.

So you have to add these two modules in the beginning in “APPS” - app_securax_serverload.so and app_securax_cpuinfo.so – here is how this part of your Makefile has to look after you change it.

Further on you have to add the following module definitions (this is used when you compile Asterisk).

securax_utils.o: app_securax_utils.c
$(CC) -pipe $(CFLAGS) -c -o app_securax_utils.o app_securax_utils.c


app_securax_cpuinfo.o: app_securax_cpuinfo.c
$(CC) -pipe -I/usr/local/pgsql/include $(CFLAGS) -c -o app_securax_cpuinfo.oapp_securax_cpuinfo.c


app_securax_cpuinfo.so: app_securax_cpuinfo.o
$(CC) -pipe $(CFLAGS) -c -o securax_utils.o securax_utils.c
$(CC) $(SOLINK) -o $@ $< securax_utils.o


app_securax_serverload.o: app_securax_serverload.c
$(CC) -pipe -I/usr/local/pgsql/include $(CFLAGS) -c –o app_securax_serverload.o app_securax_serverload.c


app_securax_serverload.so: app_securax_serverload.o
$(CC) -pipe $(CFLAGS) -c -o securax_utils.o securax_utils.c
$(CC) $(SOLINK) -o $@ $< securax_utils.o


Here is how this part of the Makefile should look after you change it:

You have to change this Makefile in both Origination and Test server. In order these changes in the Makefile to take effect you have to recompile the Asterisk on both of the servers.

5.Re-compiling Asterisk

Go to the Asterisk source - /usr/src/asterisk/asterisk and recompile it.
cd /usr/src/asterisk/asterisk
make
make install

Now your Asterisk servers have the modules implemented. We have now to add just some more things in the managers.conf and securax_serverload.conf files (/etc/asterisk)

6.Configuring securax_serverload.conf

This file also has to be downloaded to /etc/asterisk/. You can also create file with same name in the mentioned directory and write in the data needed. Here is how you can do it:
cd /etc/asterisk
vi securax_serverload.conf
[general]
push_level=1

This file has to exist again on both – Origination and Test servers.


7.Configuring managers.conf

In this file which is placed in /etc/asterisk you have to create a user on the Origination server and one on the Test server, so you should have users on both servers in managers.conf. When you start the application and before beginning a test you will be prompted to provide username and password for each server (Origination and Test). This is username and password for the relevant user in /etc/asterisk/managers.conf. Below you can see my configuration.

Above the [general] account is disabled by default i.e. enabled = no. So first you have to change this to yes. Then you have to create an account.

[test]
this is the username

secret=test
the password is set to test

read=system,call,log,verbose,command,agent,user
write=system,call,log,verbose,command,agent,user
this is authorization level for the user for the various classes


You need to add some users and extensions to servers now.

8.Configuring iax.conf

Astertest uses some certain users for the test. Here is what you have to add to Asterisk Test servers, no specified users are needed for the Origination server. Here are the users you have to add to /etc/asterisk/iax.conf on the server you are going to test.

Here is the complete list of all users you can have. For every audio codec format you want to test you must have separate user.

[testg723]
type=friend
host=dynamic
context=astertest
disallow=all
allow=g723

[testgsm]
type=friend
host=dynamic
context=astertest
disallow=all
allow=gsm

[testulaw]
type=friend
host=dynamic
context=astertest
disallow=all
allow=ulaw

[testalaw]
type=friend
host=dynamic
context=astertest
disallow=all
allow=alaw

[testg726]
type=friend
host=dynamic
context=astertest
disallow=all
allow=g726

[testadpcm]
type=friend
host=dynamic
context=astertest
disallow=all
allow=adpcm

[testslin]
type=friend
host=dynamic
context=astertest
disallow=all
allow=slin

[testlpc10]
type=friend
host=dynamic
context=astertest
disallow=all
allow=lpc10

[testg729]
type=friend
host=dynamic
context=astertest
disallow=all
allow=g729

[testspeex]
type=friend
host=dynamic
context=astertest
disallow=all
allow=speex

[testilbc]
type=friend
host=dynamic
context=astertest
disallow=all
allow=ilbc


9. Configuring extensions.conf

Astertest also needs some certain extensions on both the Origination and the Test server. This file is in /etc/asterisk/.

Origination Server

This context and extensions have to be added in among your extensions.


Test Server

The following context has to be added in extensions.conf of your Test server.

Now you have all the things you need to start the test. Restart Asterisk on both of the servers and then enter the command line (CLI). To make sure that the new modules are working – check if they are loaded. Type in CLI show modules and if app_securax_serverload.so and app_securax_cpuinfo has a corresponding 1 that means they are loaded. Another way to check this is to type show modules like app_securax – this will again show you the modules with that name. Every module will have value 0 if it is not loaded and 1 if it is loaded. So if everything seems correct we may start the test itself, and if you have some problems check whether you followed precisely the steps above.

As you see above you need to have separate extensions for the different users, so as in my file not all possible extensions are used, here is the full list of extensions for all the users.

exten => test02g723,1,Answer();
exten => test02g723,2,Playback(ast-test-g723);
exten => test02g723,3,Hangup();

exten => test02gsm,1,Answer();
exten => test02gsm,2,Playback(ast-test-gsm);
exten => test02gsm,3,Hangup();

exten => test02ulaw,1,Answer();
exten => test02ulaw,2,Playback(ast-test-ul);
exten => test02ulaw,3,Hangup();

exten => test02alaw,1,Answer();
exten => test02alaw,2,Playback(ast-test-alaw);
exten => test02alaw,3,Hangup();

exten => test02g726,1,Answer();
exten => test02g726,2,Playback(ast-test-g726);
exten => test02g726,3,Hangup();

exten => test02adpcm,1,Answer();
exten => test02adpcm,2,Playback(ast-test-adpcm);
exten => test02adpcm,3,Hangup();

exten => test02slin,1,Answer();
exten => test02slin,2,Playback(ast-test-siln);
exten => test02siln,3,Hangup();

exten => test02lpc10,1,Answer();
exten => test02lpc10,2,Playback(ast-test-lpc10);
exten => test02lpc10,3,Hangup();

exten => test02g729,1,Answer();
exten => test02g729,2,Playback(ast-test-g729);
exten => test02g729,3,Hangup();

exten => test02speex,1,Answer();
exten => test02speex,2,Playback(ast-test-speex);
exten => test02speex,3,Hangup();

exten => test02ilbc,1,Answer();
exten => test02ilbc,2,Playback(ast-test-ilbc);
exten => test02ilbc,3,Hangup();


10. Starting Astertest

1.Run the application - astertest.exe


Here you can start new test, make again an existing test or edit an existing test. Choose “Start a new test” and click Next.

2.Choose type and name for the test


Type the name you want to give to the test in the ‘Name’ field at the top and choose type (answer, playback or meetme) for the test. When done click ‘Next’.

3.Provide information for the servers


In the “Origination server” part type the IP address for the Origination server, leave the port as by default – 5038. Then type the username and password that you created in managers.conf on the corresponding Asterisk server.

In the “Test server” part type again the IP of the Asterisk server that you are going to test and the username and password for the user you created in managers.conf on the relevant server. When done click next to proceed.

4.Final adjustments for the test


On the top check the amount of calls you want to do while testing – test till overload of the tested server or test certain amount of calls. I will run the test for a hundred calls.

Speed – is the speed of origination for the calls. Normal is approximately 1 call in a second.

Protocol – is the protocol type that asterisk will use. As we registered our users in iax.conf we have to use IAX2 protocol for the test.

In Transcoding you have to choose codec for the origination server and for the tested server. There will be no transcoding if you choose the same codecs for original and resulting codec.

At the bottom check “Send RTP” – this way the media file will be send. If you do not check it you will have just answer in the test, without real voice pressure over the server.

When done click ‘Finish’ to start the test.

5.Testing


This is the test ready to be started, just click “Start” to run the test.

At the upper part you can see information for the origination server – calls at the moment (on the small graph on the left), CPU load (the graph on the right, showing Idle load, system load, user load), and below more information for the calls made and channels used at the moment.

At the bottom part you see the same information for the test server.

While the test is executed you can magnify the CPU load graph. You can do this by clicking left mouse button and move left to right. Here is a magnified graph.

When you again click the left mouse button and move the mouse from right to left at the same time and the graph will be minimized to its normal size.

When the test is done – the calls reach the certain amount you wanted or the server is overloaded the test is done. Then the calls are unloaded. Here you see a progress bar while all the calls are hanging up.

Then you can see the graph from the test.

You now have the test and when you run again Astertest, you can redo the test without doing the settings again (step 1 to 4), or you can also change a little bit the test – for example increase or decrease the amount of calls, change the codec, etc.

 
User Comments
brukaits (lainhagss at gmail dot com)
30 June 2022 05:50:22
https://techplanet.today/post/live-streaming-2022-air-show-canada-day-live2022free
https://techplanet.today/post/live-streaming-rogue-mma-3-ryan-mills-vs-isi-fitikefu-live2022free
https://techplanet.today/post/live-streaming-pfl-6-rory-macdonald-vs-sadibou-sy-live2022free
https://techplanet.today/post/live-streaming-pfl-6-kayla-harrison-vs-julia-budd-live2022free
https://techplanet.today/post/pfl-6-ray-cooper-iii-vs-brett-cooper
https://techplanet.today/post/live-streaming-fusion-fight-league-boom-town-brawls-live2022free
https://techplanet.today/post/open-fighting-championship-20
ruyteess (jajangkois at gmail dot com)
29 June 2022 10:03:19

https://wapka.id/view/FsWHjvAdqu
https://rentry.co/2f99c
https://paste.md-5.net/debufenazu.rb
https://justpaste.it/2048w
https://paste.ec/paste/cH5TzIeg#ni3fzq-0ZkIFt1J4o6BSk1h+EIHSLKIHtXgYiqUmxaK
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129739423965#comments
https://www.lomarfarms.com/blogs/news/people?comment=129497825437#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129602224385#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129739456733#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130344288495#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/51d9b3e9
https://pasteio.com/xlvor2etV3HA
https://dotnetfiddle.net/101paS
https://paste2.org/etfbkfd4
najutee (molkire at gmail dot com)
29 June 2022 09:51:56
https://c.realme.com/global/post-details/1542009364436537344
https://c.realme.com/global/post-details/1542010679162056704
https://c.realme.com/global/post-details/1542011259909582848
https://c.realme.com/global/post-details/1542011865810391040
https://c.realme.com/global/post-details/1542012507408838656
https://c.realme.com/global/post-details/1542013073002344448
sxiken (lgtraabiya at gmail dot com)
29 June 2022 08:32:37
https://wapka.id/view/4IwajpujUc
https://rentry.co/2n2bd
https://paste.md-5.net/eponakisil.rb
https://justpaste.it/1ykf2
https://paste.ec/paste/JVT5uOc+#SI4rEVFFsBQXFLi9jyohO07lttUYgbkf8a+FHnQVcj5
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129738768605#comments
https://www.lomarfarms.com/blogs/news/people?comment=129497432221#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129601536257#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129738801373#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130343731439#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/aaa52044
https://pasteio.com/xkay0iAy1FQc
https://dotnetfiddle.net/szLC7t
https://paste2.org/mcetyEfa
krotaanss (palitrus at gmail dot com)
29 June 2022 08:19:38
https://c.realme.com/global/post-details/1542000964675842048
https://c.realme.com/global/post-details/1542002988733747200
https://c.realme.com/global/post-details/1542004112836538368
https://c.realme.com/global/post-details/1542005225048518656
https://c.realme.com/global/post-details/1542006221313200128
https://c.realme.com/global/post-details/1542007118978142208
https://c.realme.com/global/post-details/1542008279802064896
sdbsdbs (rungame22 at gmail dot com)
28 June 2022 05:25:41
https://wapka.id/view/DR9PZbso9L
https://rentry.co/v6ho6
https://paste.md-5.net/egakexiqap.rb
https://justpaste.it/69pgh
https://paste.ec/paste/z4mXwlsm#aQTC3EwrfpBVkEG68IBupcJCP0KuKkqE2EYLKa8ty0a
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129735786717#comments
https://www.lomarfarms.com/blogs/news/people?comment=129491239069#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129595474177#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129735819485#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130338390255#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/43beffbd
https://pasteio.com/x0jOsgwBFc51
https://dotnetfiddle.net/TVj33A
https://paste2.org/IgG609NO
nhhhgaaa (axxx33 at gmail dot com)
28 June 2022 05:17:43
https://www.cityballetsf.org/profile/save-yourself-full-movie-online-on-123movies/profile
https://www.cityballetsf.org/profile/secret-society-of-second-born-royals-full-movie-online-on-123movies/profile
https://www.cityballetsf.org/profile/save-yourself-horror-full-movie-online-on-123movies/profile
https://www.cityballetsf.org/profile/paycheck-2003-full-movie-online-on-123movies/profile
https://www.cityballetsf.org/profile/august-underground-full-movie-online-on-123movies/profile
https://www.cityballetsf.org/profile/smile-2022-online-hd-full-movie/profile
https://www.cityballetsf.org/profile/deadlock-2021-online-hd-full-movie/profile
https://www.cityballetsf.org/profile/silver-bears-1977-online-hd-full-movie/profile
https://www.cityballetsf.org/profile/the-man-from-toronto-2021-full-movie-now-available-online/profile
https://www.cityballetsf.org/profile/domino-2005-online-hd-full-movie/profile
https://www.cityballetsf.org/profile/domino-2005-online-hd-full-movi/profile
https://www.cityballetsf.org/profile/barbarian-2022-online-hd-full-movie/profile
sbsbs (murii22 at gmail dot com)
26 June 2022 23:47:35

https://wapka.id/view/6dBl6pWn3f
https://rentry.co/k3h5q
https://paste.md-5.net/buyesupatu.rb
https://justpaste.it/981aq
https://paste.ec/paste/KJ5lCrOv#BUtWGcdw9Q67VgKk1NWmh9rhsnPZ5wQIDZjGb2Ykfl1
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129722155229#comments
https://www.lomarfarms.com/blogs/news/people?comment=129481113757#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129589510401#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129722187997#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130331508975#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/ae457382
https://pasteio.com/xSAly9C544Tf
https://dotnetfiddle.net/rKUE6P
https://paste2.org/0OVheX8f
SDVBSDBAA (zaree3 at gmail dot com)
26 June 2022 23:40:48
https://vk.com/@702617417-gtwatch123movielt-save-yourself-full-movie-online-on123movie
https://vk.com/@702617417-gtwatch123movielt-secret-society-of-second-born-royals-full
https://vk.com/@702617417-gtwatch123movielt-save-yourself-horror-full-movie-online-on1
https://vk.com/@702617417-gtwatch123movielt-paycheck-2003-full-movie-online-on123movie
https://vk.com/@702617417-gtwatch123movielt-august-underground-full-movie-online-on123
https://vk.com/@702617417-smile2022
sdvsdvsx (zaree3 at gmail dot com)
26 June 2022 22:40:39
https://wapka.id/view/R2ZOEXj4hC
https://rentry.co/pho29
https://paste.md-5.net/iwopuzoqep.cpp
https://justpaste.it/70ykp
https://paste.ec/paste/0HzEv-v2#EBuDW6NPPoL-xv4ZujQNj61acAJXC+QbIJAs/6Dl83b
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129721991389#comments
https://www.lomarfarms.com/blogs/news/people?comment=129480851613#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129589313793#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129722024157#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130331345135#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/b86cdfe6
https://pasteio.com/xTupQ7RCA3FT
https://dotnetfiddle.net/1Hb1oP
https://paste2.org/WsxFyXED
SVSDVEE (murii22 at gmail dot com)
26 June 2022 22:32:40
https://techplanet.today/post/watch-the-man-from-toronto-full-movie-online-on123movies
https://techplanet.today/post/watch123movie-the-man-from-toronto-online-hd-full-movie
https://techplanet.today/post/watch-passenger-2016-full-movie-online-on123movies
https://techplanet.today/post/watch123movie-passenger-2016-online-hd-full-movie
https://techplanet.today/post/watch-silver-bears-1977-full-movie-online-on123movies
https://techplanet.today/post/watch123movie-silver-bears-1977-online-hd-full-movie
https://techplanet.today/post/watch-deadlock-2021-full-movie-online-on123movies
https://techplanet.today/post/watch123movie-deadlock-2021-online-hd-full-movie
https://techplanet.today/post/watch-elvis-2022-full-movie-online-on123movies-1
https://techplanet.today/post/watch123movie-elvis-2022-full-movie-now-available-online
https://techplanet.today/post/watch-buzz-lightyear-2022-full-movie-now-available-online
https://techplanet.today/post/buzz-lightyear-2022
sdvbsdzz (murii22 at gmail dot com)
26 June 2022 01:43:48
https://youtu.be/ohP76oVmpT4
https://youtu.be/mmqHmJbPGtE
https://youtu.be/UWKrwi_IsMQ
https://youtu.be/-4KljPlUmP0
https://youtu.be/AgBhAMNbS3E
https://youtu.be/tjHVkFz0MbQ
https://youtu.be/JECAWpap72k
https://youtu.be/iLgwQGPcy9Q
https://youtu.be/fXPB1hvem94
https://youtu.be/u4lKaNjc2mQ
sdbsdbs (zaree3 at gmail dot com)
26 June 2022 00:19:18
https://wapka.id/view/T6OKklemNV
https://rentry.co/75su2
https://paste.md-5.net/ozifenezob.cpp
https://justpaste.it/8wghe
https://paste.ec/paste/iMauIe+T#M6Bl8oyp1FD7KwRrBW5ZJzlexPoexF6VmSba-5D2kvg
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129721270493#comments
https://www.lomarfarms.com/blogs/news/people?comment=129478492317#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129586233601#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129721303261#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130327085295#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/d052bb90
https://pasteio.com/xtM0eNX5UwUc
https://dotnetfiddle.net/sIqlR8
https://paste2.org/V0a4DJBa
bleckksyw (kokomariah at gmail dot com)
26 June 2022 00:12:30
https://vin.gl/p/4551198?wsrc=link
https://vin.gl/p/4551196?wsrc=link
https://vin.gl/p/4551195?wsrc=link
https://vin.gl/p/4551192?wsrc=link
https://vin.gl/p/4551189?wsrc=link
https://vin.gl/p/4551187?wsrc=link
https://vin.gl/p/4551186?wsrc=link
https://vin.gl/p/4551183?wsrc=link
https://vin.gl/p/4551179?wsrc=link
https://vin.gl/p/4551172?wsrc=link
byyyrwee (kokomariah at gmail dot com)
26 June 2022 00:04:08
https://wapka.id/view/lhiMkBjcAA
https://rentry.co/rgy68
https://paste.md-5.net/ovavivogox.cpp
https://justpaste.it/5m6ex
https://paste.ec/paste/JrSIroqs#z2NJAo1LHrJ05WIZL9IF3NLpMNHgoZLjxUvtRaxG7pm
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129721139421#comments
https://www.lomarfarms.com/blogs/news/people?comment=129478426781#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129586135297#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129721172189#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130326888687#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/f570d270
https://pasteio.com/x3RGwkw5c4PQ
https://dotnetfiddle.net/j31Sbc
https://paste2.org/JNsDs7ef
sdbsdbxxvz (rungame22 at gmail dot com)
25 June 2022 23:53:14
https://vin.gl/p/4551219?wsrc=link
https://vin.gl/p/4551217?wsrc=link
https://vin.gl/p/4551216?wsrc=link
https://vin.gl/p/4551213?wsrc=link
https://vin.gl/p/4551210?wsrc=link
https://vin.gl/p/4551206?wsrc=link
https://vin.gl/p/4551203?wsrc=link
https://vin.gl/p/4551202?wsrc=link
https://vin.gl/p/4551200?wsrc=link
gedfd (zaree3 at gmail dot com)
25 June 2022 01:12:31
https://youtu.be/l4DQqeP7-g0
https://youtu.be/dUV5G-0E_t0
https://youtu.be/tclppAiVlEQ
https://youtu.be/svrQQIhyb3o
https://youtu.be/gfexiiagiKI
https://youtu.be/-k41kySI06U
https://youtu.be/lwUkDgrw4OA
https://youtu.be/itZW1Pr8Llo
https://youtu.be/AyKoEQ_uXDk
https://youtu.be/Cm5oYuth_Dg
sdgsdvxz (zaree3 at gmail dot com)
25 June 2022 00:13:33
https://wapka.id/view/8PgEe1Z983
https://rentry.co/86qm3
https://paste.md-5.net/eposiqugek.cpp
https://justpaste.it/3q491
https://paste.ec/paste/ZrX8Mo7z#aL-svauF8OKYNHazW5Z6qFEdmr6VK17a13lidYBhUFh
https://paste.itefix.net/?01bd51e7447d3fcc#6qcL4h1yjLfQJYkakqx3AJnjsMvqQrFpwFTDbVaop5xC
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129719075037#comments
https://www.lomarfarms.com/blogs/news/people?comment=129476427933#comments
https://www.kassausa.com/challenge#comment_form
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129719107805#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130322268399#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/16053887
https://pasteio.com/xvDbfsmin5wm
https://dotnetfiddle.net/mvWYOQ
https://paste2.org/MXIaMY3f
gssgxx (murii22 at gmail dot com)
25 June 2022 00:03:55
https://youtu.be/l4DQqeP7-g0
https://youtu.be/dUV5G-0E_t0
https://youtu.be/tclppAiVlEQ
https://youtu.be/svrQQIhyb3o
https://youtu.be/gfexiiagiKI
https://youtu.be/-k41kySI06U
https://youtu.be/lwUkDgrw4OA
https://youtu.be/itZW1Pr8Llo
https://youtu.be/AyKoEQ_uXDk
https://youtu.be/Cm5oYuth_Dg
fgnfgnf (kokomariah at gmail dot com)
24 June 2022 23:54:50
https://wapka.id/view/5cri2uU7n6
https://rentry.co/bqxba
https://paste.md-5.net/yofapicipa.cpp
https://justpaste.it/2dbzx
https://paste.ec/paste/7iPQVUvZ#V4ig1AYVVbdjDV+JssSMX9uZv0jZeOsrxUidi9y50X3
https://paste.itefix.net/?cf6ec11b071825d4#DMadLrkE47tfmAvCENooUxmS4gkpnGKHgc3EBNNET5bE
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129718911197#comments
https://www.lomarfarms.com/blogs/news/people?comment=129476329629#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129583874305#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129718943965#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130322137327#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/f23561df
https://pasteio.com/xS0Gqvw87Ih3
https://dotnetfiddle.net/lub7gs
https://paste2.org/YH38jIJx
dfnd (murii22 at gmail dot com)
24 June 2022 23:45:30
https://youtu.be/GRYuzeKQNoE
https://youtu.be/5RWvEN3CPu4
https://youtu.be/02qjPwA11Ow
https://youtu.be/AHtA8Uu0P2A
https://youtu.be/Ehi0tEEH2zk
https://youtu.be/2SgzCHqqJb4
https://youtu.be/fJmKqr2Ot84
https://youtu.be/tR0swKiN58s
https://youtu.be/uir789LVzOw
https://youtu.be/cAjrRfd2W2c
sdvbsd (kokomariah at gmail dot com)
22 June 2022 01:20:19
https://wapka.id/view/0XjRhAu3xW
https://rentry.co/wm7mb
https://paste.md-5.net/oropifozor.cpp
https://justpaste.it/3g4jl
https://paste.ec/paste/oLLfxDDI#f1SQYpKSQXffoTxSltAa8Xmcb1-IiRiwknMbuydRzLi
https://paste.itefix.net/?d12ea48b45e68eca#FeHEiY4PpFVsC1X4WrSszHKdYabY6oKyjtwcM4LvwXEx
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129711505629#comments
https://www.lomarfarms.com/blogs/news/people?comment=129463189661#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129574994177#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129711538397#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130309128431#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/ba13109c
https://pasteio.com/x41b9ZoSa2F7
https://dotnetfiddle.net/Kn5dlK
https://paste2.org/5WN4OgBt
sdbdsb (kokomariah at gmail dot com)
22 June 2022 01:11:42
https://www.scoop.it/topic/konten-saya
https://www.scoop.it/topic/watch-123movie-gameboys-the-movie-2022
https://www.scoop.it/topic/the-black-phone-2022
https://www.scoop.it/topic/free-watch-gameboys-the-movie-2022
https://www.scoop.it/topic/watch-123movie-blacklight-2022-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-fruits-basket-prelude-2022-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-revolution-of-our-times-2022
https://www.scoop.it/topic/free-watch-blacklight-2022-watch-online-streaming-free-at-home
https://www.scoop.it/topic/watch-123movie-fruits-basket-prelude-2022
https://www.scoop.it/topic/free-watch-revolution-of-our-times-2022-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-the-northman-2022-full-movie-now-available-online
https://www.scoop.it/topic/watch-123movie-the-batman-2022-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-the-batman-2022-watch-online-free-at-home
https://www.scoop.it/topic/free-watch-the-northman-2022
https://www.scoop.it/topic/watch-123movie-abandoned-2022-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-everything-everywhere-all-at-once-2022-watch-online-free-at-home
dbdfnx (murii22 at gmail dot com)
21 June 2022 21:49:51
https://wapka.id/view/YJJZ2sRRFp
https://rentry.co/ppwko
https://paste.md-5.net/ugahowerux.cpp
https://justpaste.it/7u5de
https://paste.ec/paste/Ci-YgcIl#PdpgJPxpxNMS-QV9CD6V+KwiNSEtWxgp1ywq6THCHUD
https://paste.itefix.net/?5916f41ead2fbef6#9aGbeEt8cwEkmQnLU7NxsHcyteXjuU9YrNJwJb6FeEjA
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129711243485#comments
https://www.lomarfarms.com/blogs/news/people?comment=129461944477#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129574437121#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129711276253#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130308210927#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/a5c9eba9
https://pasteio.com/xAsXMU1h6H2F
https://dotnetfiddle.net/XerJAf
https://paste2.org/5aM4veIZ
mhgmgh (murii22 at gmail dot com)
21 June 2022 21:41:38
https://www.scoop.it/topic/watch-123movie-ms-marvel-2022-full-movie-now-available-online
https://www.scoop.it/topic/watch-123movie-everything-everywhere-all-at-once-2022-full-movie-now-available-online
https://www.scoop.it/topic/watch-123movie-superman-lois-season-2
https://www.scoop.it/topic/free-watch-superman-lois-season-2
https://www.scoop.it/topic/watch-123movie-free-guy-2021
https://www.scoop.it/topic/watch-123movie-the-boys-season-3-episode-5-watch-online-free-at-home
https://www.scoop.it/topic/free-watch-free-guy-2021watch-online-free-at-home
https://www.scoop.it/topic/free-watch-the-boys-season-3-episode-5
https://www.scoop.it/topic/watch-123movie-brooklyn-nine-nine-season-5-watch-online-free-at-home
https://www.scoop.it/topic/free-watch-brooklyn-nine-nine-season-5-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-fbi-most-wanted-season-3-watch-online-free-at-home
https://www.scoop.it/topic/free-watch-fbi-most-wanted-season-3
https://www.scoop.it/topic/watch-123movie-ah-girls-go-army-again
https://www.scoop.it/topic/free-watch-harry-potter-and-the-chamber-of-secrets-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-harry-potter-and-the-chamber-of-secrets-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-ah-girls-go-army-again-watch-online-free-at-home
ssacx (zaree3 at gmail dot com)
21 June 2022 19:35:10
https://wapka.id/view/yQzG8prfp8
https://rentry.co/pc6qb
https://paste.md-5.net/upefivuvab.cpp
https://justpaste.it/1lx3l
https://paste.ec/paste/KaJlixFC#9KNu8lcm5rhTrOX4r3eOOOBjabZ9DjnUFb7zdgNtkoO
https://paste.itefix.net/?06cd2c0d5868b40f#FNi3YSbardY1KMLrbh14KjhJjxBH53DCyKnXMVmwcLHc
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129710883037#comments
https://www.lomarfarms.com/blogs/news/people?comment=129461715101#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129574011137#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129710915805#comments
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130306343151#comments
https://bitbin.it/DZpjv02u/
https://controlc.com/06153557
https://pasteio.com/xvrRIemNAlRk
https://dotnetfiddle.net/PTn9Wj
https://paste2.org/87gp1VJN
vbbbaw (zaree3 at gmail dot com)
21 June 2022 19:23:26
https://www.scoop.it/topic/watch-123movie-the-summer-i-turned-pretty-new-series-2022-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-the-summer-i-turned-pretty-new-series-2022-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-the-old-man-2022-season-1-episode-2-full-movie-now-available-online
https://www.scoop.it/topic/free-watch-the-old-man-2022-season-1-episode-2
https://www.scoop.it/topic/watch-123movie-the-summer-i-turned-pretty-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-love-island-season-8-episode-15-watch-online-free-at-home
https://www.scoop.it/topic/watch-123movie-love-island-season-8-episode-15-watch-online-free-at-home-by-elminiaa
https://www.scoop.it/topic/free-watch-love-island-season-8-episode-15-watch-online-free-at-home
sdvds (dadansanjaya220 at gmail dot com)
20 June 2022 22:31:33
https://wapka.id/view/PPN69WyDQ0
https://rentry.co/98r27
https://paste.md-5.net/xebemideti.rb
https://justpaste.it/9f5sg
https://paste.ec/paste/YOtQRHpf#qSYJNbdGsFltizBw73Rd6-d8D+cLiQ5l21uqXZFZEiY
https://paste.itefix.net/?ca14d2ed372f5ab0#5xqGiddhabZEKw11uy77FWGtREL2yQDxo4eny2rgJxzv
https://cacaocuvee.com/blogs/news/great-news-thank-you-for-voting?comment=129709408477#comments
https://www.lomarfarms.com/blogs/news/people?comment=129458176157#comments
https://sneakerbinge.com/blogs/news/top-5-kanye-west-yeezy-sneakers?comment=129709441245#comments
https://www.kassausa.com/blogs/feature/vinyl-christmas-coffee-cup?comment=129571848449#comments
https://collection.casey.vic.gov.au/objects/954/plaque-riding-of-the-bounds-champion-rider
https://www.luckydogvolleyball.com/blogs/lucky-dog-blog/78086023-volleyball-people-are-such-good-people?comment=130302476527#comments
http://www.strandabyggd.is/gestabok/
https://www.hotel-reulein.de/english/guestbook/
https://bitbin.it/DZpjv02u/
https://controlc.com/0f434a41
https://pasteio.com/xiqtdxiLG1AY
https://dotnetfiddle.net/YInDyS
https://paste2.org/M5mNpDyV
avavas (dadansanjaya220 at gmail dot com)
20 June 2022 22:24:40
https://www.bluemoundtexas.org/profile/pegexapo/profile
https://www.bluemoundtexas.org/profile/mafuzi/profile
https://www.bluemoundtexas.org/profile/soqazowe/profile
https://www.bluemoundtexas.org/profile/qukugoka/profile
https://www.bluemoundtexas.org/profile/jahikefu/profile
https://www.bluemoundtexas.org/profile/nimarilu/profile
https://www.bluemoundtexas.org/profile/hixyqo/profile
azithromycin for sale (arielleschmitztuyfttul at clifors dot xyz)
30 August 2020 23:49:33
azithromycin for sale https://azithromycinx250.com/
buy pills erection generic (jasperpaspalis at spambog dot ru)
09 July 2020 10:59:56
buy pills erection generic http://www.cialij.com/
Denruip (denRar at margel dot xyz)
01 March 2020 14:02:55
Hair Thinning Propecia http://abuycialisb.com - cialis 40 mg Asthmahaler Mist Buy <a href=http://abuycialisb.com>Buy Cialis</a> cheap generic accutane
Krfhenoxism (SobSobSob at gmail dot com)
21 June 2018 02:01:10
<a href="http://cottagegroveresources.com/#Levitra">cheapest levitra 20mg</a> pfizer viagra without prescriptionviagra without perscription cheapgeneric viagra without visa
generic viagra online without rxviagrawithout a prescriptionviagra without prescription australia <a href="http://ryangikas.com/#cialis-no-Prescription">buy cialis without doctor prescription</a>
female viagra without prespriviagra without perceptionviagra without prescription <a href=http://ryangikas.com/#buy-cialis-online>cheap cialis no prescription buy</a>
prescription order viagra withoutviagra without a prescription usapurchase viagra without precription http://ryangikas.com/#Without-Prescription
YrheoWep (Plails at truckmetalworks dot com)
23 May 2018 06:17:26
<a href="http://shandatea.com/">cialis price</a> cialis prezzo in linea basso we use it 50 mg cialis dose
overnight cialis tadalafil where cheapest cialis
cialis super kamagra price cialis per pill <a href="http://www.mayavanrosendaal.com/">cialis without a doctors prescription</a>
cialis generico lilly prezzo cialis a buon mercato
cialis 20 mg effectiveness cialis pills in singapore <a href=http://www.mayavanrosendaal.com/>buy cialis no prescription</a>
wow look it cialis mexico sublingual cialis online
cialis online deutschland cialis 20mg preis cf
http://www.mayavanrosendaal.com/
Bichu (uy4m91vgbnc at gmail dot com)
09 October 2015 17:46:20
The exstpeire shines through. Thanks for taking the time to answer. http://ubmndil.com [url=http://bwwvjxjxpui.com]bwwvjxjxpui[/url] [link=http://zqcelfg.com]zqcelfg[/link]
Pepi (uhl5mlpe at mail dot com)
09 October 2015 09:31:26
Your answer shows real <a href="http://wtebuyojig.com">ingetlilence.</a>
Makori (65mr0vavnmt at yahoo dot com)
09 October 2015 03:11:35
Call me wind because I am abtusolely blown away. http://qeecaesu.com [url=http://hddnyhzvf.com]hddnyhzvf[/url] [link=http://gtepaige.com]gtepaige[/link]
nusrat (nusrat_vonair at yahoo dot com)
10 February 2009 07:37:13
If i use sipp foe originating the calls is it possible?
jerry (haro1981 at 163 dot com)
19 February 2008 07:31:31
I\\\'m trying to compile it on Asterisk 1.2.18, on redhat9.0 linux.

there are missing astertest-rtp.gsm file & somewrong in Re-compiling.

make[1]: *** No rule to make target `app_qcall.so\\\', needed by `all\\\'. Stop.
make[1]: Leaving directory `/usr/src/asterisk-1.2.18/apps\\\'
make: *** [subdirs] Error 1
Kevin Zhong (jzho008 at yahoo dot co dot nz)
21 February 2007 04:18:09
I set up the original and test server by following the instruction. but while I start to astertest on windows, I got "No Route to Host" error, what might be the problem, and as above,the original does not make any call.
Need advice.

Many thanks,
BoneyM Thomas (boneymtom at rediffmail dot com)
09 February 2007 05:41:35
This tool works bit hard to get it running in the first place. The only stress test tool i could find for free. It is worth the time sent setting it up.
Seb (sebb dot clarke at gmail dot com)
18 October 2006 17:53:55
Managed to get it to compile with the user comments on this page but, like almost everyone else, the orgination server does not make any calls.

Looks like its pretty broken
Anand Kumar Gupta (kumaranandgupta at gmail dot com)
16 October 2006 12:28:43
HI ALL, THERE IS SOME MISTAKES IN THE ABOVE DOCUMENT, SO PLEASE CORRECT IT.

1.) app_securax_cpuinfo.o: app_securax_cpuinfo.c
$(CC) -pipe -I/usr/local/pgsql/include $(CFLAGS) -c -o app_securax_cpuinfo.oapp_securax_cpuinfo.c

THE ABOVE LINE WILL BE

app_securax_cpuinfo.o: app_securax_cpuinfo.c
$(CC) -pipe -I/usr/local/pgsql/include $(CFLAGS) -c -o app_securax_cpuinfo.o app_securax_cpuinfo.c

THERE WILL BE A SPACE BETWEEN app_securax_cpuinfo.o and app_securax_cpuinfo.c IN THE LAST LINE OF THE ABOVE LINE.

2.) IF YOU ARE GETING THE ERROR IN THE LAST FEW LINES --"You must include stdio.h before file.h"

OPEN THE BELOW FILE WITH VI ONE BY ONE

app_securax_cpuinfo.c
app_securax_serverload.c
securax_utils.c

AND INCLUDE LINE #include <stdio.h> JUST BEFORE #include <asterisk/file.h> AND DELETE THE #include <stdio.h> after the #include <asterisk/file.h> to avoid repetition of the line.

Best Regards,
Anand Kumar Gupta
Product Engg.
Troop Software Pvt. Ltd.
RuleKinG (ruleking at gmail dot com)
16 August 2006 15:47:28
I tried everything, different asterisk versions, all kind of configs but the orginating server is not making any calls. Because it is not open source i have no idea what is happening. Does anybody has a clue at least how to debug this...?
Roeland (roelandwerring at hotmail dot com)
14 August 2006 14:04:30
i changed the Makefile cause the files these day are not called app_securax_utils.c but securax_utils.c :$:) Sorry for bothering..
Roeland (roelandwerring at hotmail dot com)
14 August 2006 13:14:59
I'm trying to compile it on Asterisk 1.2.10, on debian linux.

Postgresql is installed. I have the feeling it has something to do with my compiler settings, although asterisk compiles fine without Astertest. There are no files missing, i followed the instruction step by step.

anyone...? tia

make[1]: Entering directory `/usr/src/asterisk-1.2.10/apps'
gcc -pipe -I/usr/local/pgsql/include -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -Iinclude -I../include -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -DZAPTEL_OPTIMIZATIONS -fomit-frame-pointer -fPIC -c
gcc: no input files
make[1]: *** [app_securax_serverload.o] Error 1
make[1]: Leaving directory `/usr/src/asterisk-1.2.10/apps'
make: *** [subdirs] Error 1
eyasterisk (eyasterisk at gmail dot com)
29 July 2006 09:33:17
Hi,
I installed the tool and performed the steps given in the tutorials.
But i couldnt find any astertest-rtp.gsm file.When i usedast-test-gsm.gsm,no calls are orginating from the server.Please help me if anybody suceedded in the test..


Thanks
vivek (kumarvivek_24 at sify dot com)
24 July 2006 08:37:22
In our testing, origination server doesn't make any calls. What might be the problem?
neo (job_ppa at yahoo dot co dot in)
12 July 2006 12:24:02
I want to test the trancoding for amr in asterisk. Is their any tool that test the trancoding for amr in asterisk. This tool doesn't support for amr....
Anthony Ho (anthonyh at mcsb dot com)
30 June 2006 03:15:45
Hey guys by the way you all know where can find the astertest-rtp.gsm file? I couldn't get it from http://astertest.com/downloads/ . Can i use other gsm like ast-test-gsm.gsm files to subtitute the astertest-rtp.gsm? Thankz
Anthony Ho (anthonyh at mcsb dot com)
28 June 2006 12:32:44
gcc -pipe -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -Iinclude -I../include -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -fomit-frame-pointer -fPIC -c -o securax_utils.o securax_utils.c
gcc -shared -Xlinker -x -o app_securax_serverload.so app_securax_serverload.o securax_utils.o -L/usr/local/pgsql/lib -lpq
/usr/bin/ld: cannot find -lpq
collect2: ld returned 1 exit status
make[1]: *** [app_securax_serverload.so] Error 1


All these can be eliminated by installing the postgresql's Devel packages. I've done that and it compiled and loaded successfully.
Adam (ajlong at worldlink dot net)
11 June 2006 19:44:13
Edit the file called app_securax_serverload.c
add in the line

#include <stdio.h>

at the top of the group of #include statements or at least before line 17

Recompile... you may have to do this with the other source files as well
boneym (boneymtom at rediffmail dot com)
25 May 2006 08:12:53
Hi ,
i am running a asterisk 1.2.7.1 on fedora 4. Asterisk is workign fine but i get the following error while compiling astertest. i ahev installed postgresql 8.1 too. If anyone can point out the mistake it would have been very helpful . I am including my console output.
[root@asteriskServer apps]# make
cc -pipe -I/usr/local/pgsql/include -fPIC -c -o app_securax_serverload.o app_securax_serverload.c
In file included from /usr/include/asterisk/manager.h:28,
from app_securax_serverload.c:15:
/usr/include/asterisk/lock.h: In function &#8216;ast_mutex_init&#8217;:
/usr/include/asterisk/lock.h:525: error: &#8216;PTHREAD_MUTEX_RECURSIVE&#8217; undeclared (first use in this function)
/usr/include/asterisk/lock.h:525: error: (Each undeclared identifier is reported only once
/usr/include/asterisk/lock.h:525: error: for each function it appears in.)
In file included from app_securax_serverload.c:17:
/usr/include/asterisk/file.h:27:2: error: #error You must include stdio.h before file.h!
In file included from app_securax_serverload.c:17:
/usr/include/asterisk/file.h: At top level:
/usr/include/asterisk/file.h:56: error: syntax error before &#8216;*&#8217; token
/usr/include/asterisk/file.h:57: error: syntax error before &#8216;*&#8217; token
app_securax_serverload.c: In function &#8216;scx_load&#8217;:
app_securax_serverload.c:97: warning: passing argument 3 of &#8216;ast_pthread_create_stack&#8217; from incompatible pointer type
make: *** [app_securax_serverload.o] Error 1


Thanks
Marcus (marcus_pocus at hotmail dot com)
15 May 2006 18:41:59
Running:
Asterisk 1.2.7.1
CentOS4.3

Compilation - all ok...
Error: receiving this error message when executing asterisk...

May 14 12:34:27 VERBOSE[8469] logger.c: [app_securax_cpuinfo.so]May 14 12:34:27 WARNING[8469] loader.c: /usr/lib/asterisk/modules/app_securax_cpuinfo.so: undefined symbol: scx_get_cpuinfo
May 14 12:34:27 WARNING[8469] loader.c: Loading module app_securax_cpuinfo.so failed!

any clue ??
Adam L (ajlong at worldlink dot net)
25 April 2006 06:42:47
I've gotten as far as compiling (must have postres SQL dev libs installed, thats the -lpq error issue) and when running the tests both asterisk servers show the management user logging in properly, and then the graph's start scrolling on the windows test client, but no calls are originated at all... very strange... any ideas?
Kim (autofolder at gmail dot com)
21 April 2006 15:52:03
Is there anybody succeed in test recently?
henry otasowere (henry at eportelnet dot com)
18 April 2006 03:49:51
hello,
I´m new to linux and Asterisk. I needed a help. I have a Lucent Max TNT and neew to configure it with Asterisk@Home 2.8, can any one help me out on what to do.
Regards
Gian Luca (au_perth12 at yahoo dot it)
13 April 2006 16:11:09
Hi Jane i think i have the same problem like you.
How did you solve it?

Other does this stress-tool work?

make[1]: Leaving directory `/usr/src/asterisk/asterisk-1.2.7/pbx'
/bin/sh: line 1: curl-config: command not found
make[1]: Entering directory `/usr/src/asterisk/asterisk-1.2.7/apps'
gcc -pipe -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -Iinclude -I../include -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -DZAPTEL_OPTIMIZATIONS -fomit-frame-pointer -fPIC -c -o securax_utils.o securax_utils.c
gcc -shared -Xlinker -x -o app_securax_serverload.so app_securax_serverload.o securax_utils.o -L/usr/local/pgsql/lib -lpq
/usr/bin/ld: cannot find -lpq
collect2: ld returned 1 exit status
make[1]: *** [app_securax_serverload.so] Error 1
make[1]: Leaving directory `/usr/src/asterisk/asterisk-1.2.7/apps'
make: *** [subdirs] Error 1

Gian Luca
Jane (yanguilin1982 at yahoo dot com dot cn)
17 March 2006 02:19:15
Why there should be two * servers? How about on * server?
Can anyone tell me why the original server doesn't make any calls?

Thank you very much.
Jane (yanguilin1982 at yahoo dot com dot cn)
10 March 2006 04:33:07
Does Astest work with Asterisk-1.2.4? When I recompile it with Asterisk-1.2.4,I got the following info:
gcc -pipe -I/usr/local/pgsql/include -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -Iinclude -I../include -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -fomit-frame-pointer -fPIC -c -o app_securax_serverload.o app_securax_serverload.c
app_securax_serverload.c: In function `scx_load_config':
app_securax_serverload.c:73: warning: implicit declaration of function `ast_load'
app_securax_serverload.c:73: warning: initialization makes pointer from integer without a cast
app_securax_serverload.c:84: warning: implicit declaration of function `ast_destroy'
app_securax_serverload.c: In function `scx_load':
app_securax_serverload.c:96: warning: passing arg 3 of `ast_pthread_create_stack' from incompatible pointer type
gcc -pipe -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -g3 -Iinclude -I../include -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -fomit-frame-pointer -fPIC -c -o securax_utils.o securax_utils.c
gcc -shared -Xlinker -x -o app_securax_serverload.so app_securax_serverload.o securax_utils.o -L/usr/local/pgsql/lib -lpq
/usr/bin/ld: cannot find -lpq
collect2: ld returned 1 exit status
make[1]: *** [app_securax_serverload.so] Error 1

Any advice will be really appreciated!

Tang Luong (xuantang09 at yahoo dot com)
24 February 2006 07:12:13
In our testing, origination server doesn't make any calls. What might be the problem?
Tang Luong (xuantang09 at yahoo dot com)
23 February 2006 11:31:01
In our testing, origination server doesn't make any calls. What might be the problem?
Tang Luong (xuantang09 at yahoo dot com)
22 February 2006 07:08:01
I builded success 2 files app_securax_serverload.so and app_securax_cpuinfo.so but when start asterisk this 2 module don't load.

http://www.asteriskguru.com/tutorials/astertest.html

$asterisk -gvvvv -c

display :

[app_securax_cpuinfo.so] => (Securax cpuinfo manager function)
== Manager registered action CPUInfo
Feb 22 01:04:55 WARNING[25502]: app_securax_cpuinfo.c:71 scx_load: Securax cpuinfo manager function loaded.
[app_securax_serverload.so]Feb 22 01:04:55 WARNING[25502]: loader.c:325 __load_resource: /usr/lib/asterisk/modules/app_securax_serverload.so: undefined symbol: ast_load
Feb 22 01:04:55 WARNING[25502]: loader.c:554 load_modules: Loading module app_securax_serverload.so failed!
Ouch ... error while writing audio data: : Broken pipe
Warning, flexibel rate not heavily tested!

please help me fix it!!!

thanks
faraz majid (faraz dot m dot ali at gmail dot com)
23 January 2006 12:15:50
Well i managed to load the modules on Asterisk version 1.2.1. edit the file apps/app_securax_serverload.c , on line 75 change : 'ast_load' to 'ast_config_load' & similarly on line 86 change 'ast_destroy' to ast_config_destroy' save the changes and recomplie asterisk... u r done..

For testing SIP calls:
----------------------
In /etc/asterisk/sip.conf
under the [general] section set as follows

[general]
context=astertest
allowguest=yes

all is done,
if u run into trouble then u can contact me
allen (qsun at mdc dot cn)
09 January 2006 03:29:23
useless!!!!!
allen (qsun at mdc dot cn)
31 December 2005 06:53:58
mechanix <dmitry dot muntean at gmail dot com>
11 November 2005 16:20:53
does it work with asterisk 1.2beta?
i get following during asterisk startup:
[app_securax_serverload.so]Nov 11 17:26:18 WARNING[16466]: loader.c:325 __load_resource: /usr/lib/asterisk/modules/app_securax_serverload.so: undefined symbol: ast_load
Nov 11 17:26:18 WARNING[16466]: loader.c:554 load_modules: Loading module app_securax_serverload.so failed!
Ouch ... error while writing audio data: : Broken pipe


yes,we meet the same problem as above,can someone te us the reason.
we all followed by the steps as shown in this article.
thanks a lot.
Geongo (geongo at yahoo dot com)
28 December 2005 20:36:18
What is the maximum number of calls that you achieved and the maximum Calls per Second Rate? What was your hardware configuration for the servers?
mechanix (dmitry dot muntean at gmail dot com)
11 November 2005 16:20:53
does it work with asterisk 1.2beta?
i get following during asterisk startup:
[app_securax_serverload.so]Nov 11 17:26:18 WARNING[16466]: loader.c:325 __load_resource: /usr/lib/asterisk/modules/app_securax_serverload.so: undefined symbol: ast_load
Nov 11 17:26:18 WARNING[16466]: loader.c:554 load_modules: Loading module app_securax_serverload.so failed!
Ouch ... error while writing audio data: : Broken pipe
spyke (cosimo dot fadda at gmail dot com)
27 October 2005 16:09:06
It is the same to me; I'm using sip instead of iax and I'm not able to choose the codec translaction.
C.
opeVoce (support at vocee dot com)
19 October 2005 00:43:39
Yes, we exactly followed the instructions. In manager.conf, we change 'push_level=1' to 'push_rate=1'. We saw manager registered on both servers. We saw login, status commands in both asterisks. We saw 'cpuinfo commands' only on the test server. There is nothing else.

I will send you screenshots from email.
ivan (support at asteriskguru dot com)
18 October 2005 11:07:31
Do you follow exactly the steps above. Did you tested it on some other pc successfully. What does the test shows. Can you send some screenshots and description of what you are doing.
opeVoce (support at vocee dot com)
18 October 2005 07:01:43
In our testing, origination server doesn't make any calls. What might be the problem?
ivan (support at asteriskguru dot com)
20 September 2005 10:41:50
All the screenshots above in the tutorial are results from a real test
Senad (Senad at bicom dot us)
16 September 2005 19:32:23
Hi,

Have you any test results published yet?
 
Add Comment
Name:
Email:
Comment:
In order to prevent automatic posting on our website, we kindly request you to type in the number you see in the picture below.
Image Verification:
 

Latest Headlines:

  • T.38 faxing with Zoiper 2.15 is now easier than ever
    section: voip software
  • Asterisk 1.4.21 Released
    section: Asterisk
  • Asterisk 1.4.20 Released
    section: Asterisk
  • Asterisk 1.4.20-rc2 Released
    section: Asterisk
  • Asterisk 1.4.20-rc1 Now Available
    section: Asterisk
  • News Archives (older news)

Latest Tutorials:

  • Sending Fax from Zoiper to Zoiper using T.38
    added 08/Dec/2008 18:16
  • VMAuthenticate (dialplan application)
    added 01/Mar/2008 15:57
  • Siptronic ST-530
    added 06/Nov/2007 17:57
  • Siemens C455 IP hardphone
    added 05/Nov/2007 10:24
  • Zoiper
    added 22/Oct/2007 17:53

Latest Comments:

  • https://www.medmotion.org/profile/china-...
    tutorial: Digium Wildcard TE405 / Wildcard TE410P
  • оплата кредитов при Ñ€Ð...
    tutorial: SIP with NAT or Firewalls
  • Alesse <a href=\"https://upharmu.com/ \"...
    tutorial: SIP with NAT or Firewalls
  • Buspar <a href=\"https://upharmu.com/ \"...
    tutorial: SubString (dialplan application)
  • cialis 5mg cost per pill <a href=\"https...
    tutorial: Monitor (dialplan application)
 
contact us at: support@asteriskguru.com - asterisKGuru.com © all rights reserved   |   *asterisk is registered trademark of © Digium™