Conference call

Hi All,

I have two extensions.
I have enabled the ztdummy module.
I have created the conference room,
and when i get and incoming call from a destination to an extension, i get successfully connected
and then when i enter the conference room number it says the number cannot be found,

My extensions.conf
exten => s,1,Answer
exten => s,2,MeetMe()
exten => s.3,Hangup()

My meetme.conf
[general]

[rooms]
conf => 1234

Please give me some idea how to execute the conference call

Regards
Karthik

Change the :
exten => s,2,MeetMe()
in
exten => s,2,MeetMe(1234) ; search cmd meetme asterisk for paramters of meetme

and I guess the conference will be up and running.

[quote=“lesouvage”]Change the :
exten => s,2,MeetMe()
in
exten => s,2,MeetMe(1234) ; search cmd meetme asterisk for paramters of meetme

and I guess the conference will be up and running.[/quote]

I have tried the above you said

but my confenence not working…

can you help me out???

Run “asterisk -vvvr” then dial into your conference room. Post the console log of what happens. It sounds to be like MeetMe isn’t loaded or something to that effect.

whether the meetme command will pop up on the screen when it executes???

or there is any problem in ztdummy activation ???

i have given three things in activating the ztdummy.

in the zaptel file i have replaced all the mudules with ztdummy.

then i have removed the “#” in the make file of the zaptel dir…

and i hav changed the kernel version also in the zaptel c file…

and i have use these command before starting the asterisk

“sudo service zaptel start”

and is there someother changes have to be done before making the conference calls??

help me out …

here is my console log when i get my incoming call for my dial plan …

-- Executing Wait("SIP/6666-090fa858", "1") in new stack
-- Executing Answer("SIP/6666-090fa858", "") in new stack

== Spawn extension (testconf, 7890, 3) exited non-zero on ‘SIP/6666-090fa858’

how i should ensured that meetme is loaded or not??/

regards,
dinesh.K

but when i give the command lsmod
[root@system107 ~]# lsmod
Module Size Used by
wcusb 19456 0
i915 23360 2
drm 72789 3 i915
autofs4 25413 2
hidp 24129 2
rfcomm 45912 0
l2cap 31681 10 hidp,rfcomm
bluetooth 58917 5 hidp,rfcomm,l2cap
sunrpc 158333 1
ztdummy 7944 0
wctdm 37056 0
wcfxo 15520 0
wctdm24xxp 63168 0
wcte11xp 27552 0
wct1xxp 17952 0
wct4xxp 276800 0
tor2 92576 0
zaptel 182564 9 wcusb,ztdummy,wctdm,wcfxo,wctdm24xxp,wcte11xp,wct1xxp,wct4xxp,tor2

im bit confused now …please explain me when meetme command works or how it should make it to work??

regards,
Dinesh.K

Which softphone you are using for login into Conference room.

Thanks,
Suresh.

[quote=“agni_suresh896”]Which softphone you are using for login into Conference room.

Thanks,
Suresh.[/quote]

I am using SJ phone

Hello All,

I have had the same difficulty in implementing conference calls with ztdummy as well. It never seems to work. I shelved the whole idea until further notice esepecially now that zaptel does not seem to completely install if at all on the current FC5 kernel.

Did you loaded the ztdummy module using MODPROBE r not ?

Thanks,
Suresh.

[quote=“agni_suresh896”]Did you loaded the ztdummy module using MODPROBE r not ?

Thanks,
Suresh.[/quote]

No, i didnt

I have the kernel version as “2.6.18-1.2798.fc6-i58”

I have downloaded the zaptel-1.2-current tar file

whether it suits with my kernel ???

help me out

Try to load the ztdummy using modprobe after that try to execute conference dial plan.

Thanks,
Suresh.

[quote=“agni_suresh896”]Try to load the ztdummy using modprobe after that try to execute conference dial plan.

Thanks,
Suresh.[/quote]

yeah i have tried it by using MODPROBE zaptel

But conference not working…

What can i do??

help me out

how you are dailing into conferece

i am getting incoming call from an extension

and then i am entering the conference number after which i am enabling the conf button…in

Sj phone

What ever you are doing it is related with three way call conference not related with Zaptel or MeetMe.

To use MeetMe follow the below instructions in dial plan,

Create a new extension no in extensions.conf

 exten => 777,1,MeetMe(confroom);
 exten => 777,2,Hangup()

Deselect CONF button on SJPHONE.

Dial 777 in sjphone pannel. you will be placed in conf room.

Thanks,
Suresh.

Hi Suresh,

My new configuration as you said in the previous post
[testconf]
exten => 111,1,Wait,1
exten => 111,2,Answer
exten => 111,3,Dial(SIP/6000,rTt)

exten => 777,1,MeetMe(5001)
exten => 777,2,Hangup()

i get an incoming call to the extension 6000 from outside and then
i dial 777 at the calling party(outside party). i get 404 not found.

I have posted the same query in the Asterisk general index.

  1. Is the configurations given below means three way calling?
    [testconf]
    exten => 111,1,Wait,1
    exten => 111,2,Answer
    exten => 111,3,Dial(SIP/6000,rTt)
    exten => 111,4,MeetMe(5001)

  2. Is the configurations given below means conference call?
    [testconf]
    exten => 111,1,Wait,1
    exten => 111,2,Answer
    exten => 111,3,MeetMe(5001)

Regards
Dinesh

Yes it’s correct.

Thanks,
suresh