hi,
can anyone help me to set conference password to login meetme Bridge using TCL Scripts,
Details:
CCME 4.1
IOS :12.4(15)T1
cisco 3825 ISR Router.
Rgards,
Chaitanya D
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Chaitanya,
how you are trying to set the password? could you please explain more what you are trying to do?
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hi Raghavendra,
i have crated a meet me conference Bridge in my CCME router, i want anyone login to this bridge using PIN number
,
1) dialing conference Bridge number
2) announcment will be played for entring PIN number
3) after enterning PIN only it should connect to conference
4)if PIN is not corrcet it will play announcment to Retry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Ragavendra,
i have created meet me conference Bridge in my CCME Router 3825
senario is like
1) if anyone want to join confrence Bridge dial bridge number
2)play announcment to enter conference PIN
3)if PIN is correct connect to Conference
4)if PIN is wrong Paly announcment to enter correct password
Like wise..
Regards,
Chaitanya
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hi raghavendra,
the senario i have mentioned above need to be created using tcl script, for this only i am requesting for help,
because i am not good at that.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Chaitanya,
Attached TCL script will cover your requirements, you can modify it accordingly.
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hi Raghavendra,
can you tell me the procedure how do i map this script to meetme dn number: 44567, i have uploaded them to flash, but how do i map this script to perticular number in cisco cme, 15.1 IOS cme 8.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi,
To invoke your TCL script, you need to configure the application and then associate the application to inbound dial peer.
for example :
config t
application
service password2call flash:password2call.tcl
param enter-pw-prompt flash: < any audio file >
param password1 <password>
dial-peer voice 1 voip
service password2call
for more information you can refer TCL IVR Videos and programming guide in below link
https://developer.cisco.com/site/collaboration/call-control/voice-gateway/documentation/
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi raghavendra,
i have configured the steps which you have given, but problem is my conference bridge number is 78928,
how do i mapp the script to this perticular number, even now also i dial to 78928 no meesage is playing its dierectly connecting
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
did you configured script under the correct dial peer, make sure that audio file is copied to flash.
please collect logs with below debugs if you still face the issue.
debug voip app
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hi please find the debugs, and also while giving the commads it si showing like enter-pw-prompt flash:enter_pin.au, it is showing namespace is not configured in password2call
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi,
From the logs i don't see TCL script is triggered, please make sure you have configured the script under right incoming dial peer.
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hello, can you please tell me is this solution working or not?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Raghavendra,
I got the same issue. I tried your script and once I inputted the correct password the call was ended and not routed to my MeetMe number.
Is there anything I need to change in your script?
Many thanks,
Jerry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This script actually has nothing to do with MEETME, I would check the following:
1. calling meetme directly without tcl script see if it's working.
2, use this script but just set the destination to a phone see if it's working.
If both are working fine then we need to debug the interworking.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Thanks Yawchen for your quick reply!
1. calling meetme directly without tcl script see if it's working. -- Works
2. use this script but just set the destination to a phone see if it's working. -- Where to set the destination?
The following is the dial-peer I used. I would like the call to 7177 can be rerouted to my MeetMe number after user inputted the correct password. My real MeetMe number is 1111.
dial-peer voice 7177 voip
description MeetMe
service password2call
destination-pattern 7177
session target ipv4:128.224.160.2
incoming called-number 7177
dtmf-relay h245-alphanumeric
codec g711ulaw
no vad
Thanks!
Jerry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Jerry,
Check your meetme number configured with unlocked as below.
ephone-dn 11 octo-line
number 1111
conference meetme unlocked
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hi Raghavendra,
I configured my meetme number just as you posted here.
My question is how can the call to 7177 be routed to my meetme number 1111.
I didn't find any parameter about it in password2call.
Thanks,
Jerry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I did some test and found if I configure the dialed number in dial peer same with the meetme number the call can be routed to meetme successfully.
Wondering how can add a parameter to route call to the specified meetme number.
So the dialed number can be different with the meetme number.
Many thanks,
Jerry
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can configure new param as below in init_ConfigVars procedure.
global meetme_num
if [infotag get cfg_avpair_exists meetme-num] {
set meetme_num [string trim [infotag get cfg_avpair meetme-num]]
} else {
set meetme_num "NONE"
}
and pass above param to handoff command in act_GotDigits procedure
handoff callappl leg_incoming default "DESTINATION=$meetme_num"
Thanks,
Raghavendra
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Checkout MARS MeetMe Password in the link below for the below features
http://www.parsec-tech.com/portfolio.html
Application VIDEO : MARS MeetMe Password for Cisco CUCM - YouTube
MARS Meet-Me Password application adds the following capabilities
1. Remotely start the MeetMe conference
2. Authentication/Password for MeetMe Conference
3. Meeting Host Required/Not Required
4. Start the MeetMe Conference from Jabber Client
5. Start the MeetMe Conference from iOS Based Phone , Android Based Phone
THERE IS NO NEED TO UCCE/UCCX/UNITY for this application
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
0 comments
Please sign in to leave a comment.