News & Reviews
More How-To's & Tips More News
More Reviews Device Configuration Tools
No account yet? Create one
Forgot your Username or Password?

Welcome to the Voxilla VoIP Forum.

Voxilla has been a trusted source for accurate, up-to-date information on the IP Communications industry since 2002. A dedicated staff of reporters and engineers produce feature articles and product reviews to keep industry watchers abreast of the people, companies, and trends driving a fast moving market.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.




Top Rated VoIP Resources
VoIP Small Business Essentials
PBX Buyers Guide
IP Phone Comparison Guide

Closed Thread
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old August 8th, 2005, 04:25 PM
amigliora amigliora is offline
Member
 
Join Date: Jan 2005
Posts: 60
amigliora
Default Buddy watch

Anyone know how to set this feature with Asterisk to check the status of other phones in the network?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2 (permalink)  
Old August 8th, 2005, 07:54 PM
mberlant's Avatar
mberlant mberlant is offline
Senior Member
 
Join Date: Aug 2004
Location: USA or Japan
Posts: 5,015
mberlant is an unknown quantity at this point
Default RE: Buddy watch

If you Google for "asterisk buddy watch" you will find a few examples of people who have accomplished what you want.
__________________
Please do not send technical questions via PM.
Please post all questions to the forum.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old August 8th, 2005, 09:27 PM
amigliora amigliora is offline
Member
 
Join Date: Jan 2005
Posts: 60
amigliora
Default

Thanks mberlant,
I did it, but no good results.
The examples I've seen are a little confusing for me.

for example, it is not clear for me the sintax of "hint"

If I want to monitor status of ext 2004 from my phone 2000 (Polycom ip501) which is the sintax?

exten => 2004,hint,sip/2004 or exten => 2004,hint,sip/2000

It should be right before my
exten => 2004,1,Macro(exten-vm,2011@default,2004)

In My Polycom, I create the <MAC ADDR>-directory.xml changing <bw> to 1.
I've checked in:
Directories+1-contact directory and I can see the extension I've added in the file but no changes.

So, I'm lost and I don't know how to follow with this features which by the way, it is very interesting and I need it.

Did you try this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4 (permalink)  
Old August 8th, 2005, 11:53 PM
MillsapsPE MillsapsPE is offline
Member
 
Join Date: Feb 2005
Location: Texas
Posts: 78
MillsapsPE
Default

It looks like you already found my post at SF.net. For those who haven't, it is at http://sourceforge.net/forum/forum.p...orum_id=420324

The 2 key links in that thread are:
http://lists.digium.com/pipermail/as...ly/115285.html
http://www.voip-info.org/tiki-index....isk%20Presence

Based on the info I posted there, it appears as if you/me/we may have to use a CVS-Head version of Asterisk (that AAH does not have/use).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old August 10th, 2005, 02:42 AM
MillsapsPE MillsapsPE is offline
Member
 
Join Date: Feb 2005
Location: Texas
Posts: 78
MillsapsPE
Default Re: RE: Buddy watch

Quote:
Originally Posted by mberlant
If you Google for "asterisk buddy watch" you will find a few examples of people who have accomplished what you want.
When you do, this page shows up as the first link, and one of the links I provided right above here is the second. Noe are specifice to Asterisk@Home. For me, I'm interested in how to get the Hint priority working with AAH. I think amigliora is also using AAH, but I could be wrong.

Just today, someone posted to the SF.net AAH forum (link above) stating the Hint priority will work with AAH v1.0 or greater and unfortunately (for me) didn't give enough detailed explanation of how to implement it. I hope he posts more details.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old August 10th, 2005, 02:42 AM
  #6 (permalink)  
Old August 10th, 2005, 05:36 PM
amigliora amigliora is offline
Member
 
Join Date: Jan 2005
Posts: 60
amigliora
Default RE: Re: RE: Buddy watch

Hi MillsapsPE,
I'm finally have my Buddy watch working, I'll try to do my best to expain how to do it.

First, be sure you have the first (top) line in your Polycom registered after the others two (if you are using multiline registration)

Add before any extension to be watched, the hint command, I did in [ext-local] in extensions_additional and in [ext-local-custom] in extensions_custom.conf, because I know AAH will overrite extensions_additional when you boot your AAH box.
I know there is a way to write in the database to have this changes for ever, but I don't know how to do it, yet

[ext-local]
exten => 2004,hint,SIP/2004
exten => 2004,1,Macro(exten-vm,2011@default,2004)
exten => ${VM_PREFIX}2004,1,Macro(vm,2004)
exten => 2005,hint,SIP/2005
exten => 2005,1,Macro(exten-vm,2005@default,2005)
exten => ${VM_PREFIX}2005,1,Macro(vm,2005)

Be sure you have the Precense feature enabled in your Polycom, it is in the sip.cfg file.
Then create the <MAC>-directory.xml file with the extensions you want to monitor, and that's it.

I'm still need to understand if the hint command in the extensions_custom.cfg is enough or if I need to add this hints commands to the config data base to avoid AMP clean the config file.
The other fix I have to find a solution is how to do to change the orther on the registration process, I mean, AMP order the station by numeric order, and the Polycom First key have to be the last registered key, or the phone no check the buddies.
OK, let me know if works for you and if you make any improvement.
Regards
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7 (permalink)  
Old August 10th, 2005, 07:10 PM
MillsapsPE MillsapsPE is offline
Member
 
Join Date: Feb 2005
Location: Texas
Posts: 78
MillsapsPE
Default Re: RE: Re: RE: Buddy watch

Quote:
Originally Posted by amigliora
Be sure you have the Precense feature enabled in your Polycom, it is in the sip.cfg file.
I've looked in the Admin manual and I cannot find any specific attribute that is labeled "presence" or would appear to be related to Presence in the SIP.cfg file (or any Polycom file). Can you provide the specific attribute name? I already have the people entered in the phone specific directory file with BW=1.

I'm starting to feel really stupid. Between your info and the info posted on SF.net, I still can't get it working.

[EDIT]
I did find presence in the ipmid.cfg file under the feature.x.name attribute. Mine is enabled. (pg 109 of the manual)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8 (permalink)  
Old August 10th, 2005, 07:59 PM
MillsapsPE MillsapsPE is offline
Member
 
Join Date: Feb 2005
Location: Texas
Posts: 78
MillsapsPE
Default Re: RE: Re: RE: Buddy watch

I don't know what I did, but they are working now.

What exactly do you see on your phone when someone is on a call? I have an IP600 where the first line is a "line" (ext. 205). The 5 remaining lines are the first 5 entries in the speed dial list. It just so happens, I have 5 other extensions I want to monitor. I was hoping the icon (or the light on the IP600) would change indicating that an extension was in use. This way, when my admin person answers the incoming call, she will know who is already on an active call. The only change I see by using the Hint priority is when you select the Buddy list. But... when you are on a call, the Buddy softbutton is not present.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9 (permalink)  
Old August 11th, 2005, 01:42 AM
amigliora amigliora is offline
Member
 
Join Date: Jan 2005
Posts: 60
amigliora
Default RE: Re: RE: Re: RE: Buddy watch

Congratulations!!!
Sorry I was traveling, if you have access to the buddy list, you already had your "Presecens" feature enable.

I'm seeing the same, I have to check in the Buddy list to see if someone is "on the phone"

I know the Snom phone works in the same way you want, it has some leds you can activate with hint giving a visual signaling.
But please, check.

Regards
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #10 (permalink)  
Old February 7th, 2006, 06:27 PM
Iota Iota is offline
Junior Member
 
Join Date: Feb 2006
Posts: 3
Iota
Default Help... Losing my mind

Okay.. I too am having probs with the buddy watch on an Polycom 600 phone. I've searched until my eyes bleed, only to find tons of conflicting information from the type to dtmfmode all of which seem to work for the user that posted.

Hopefully, I'm missing something really stupid that someone can point out.
I've dumbed down my phone configuration to eliminate any potential problems..

in my sip.conf

[1101]
type=peer
context=fromsip
subscribecontext=fromsip
notifyringing=yes
callerid="Name" <1101>
host=dynamic
canreinvite=yes
username=1101
regexten=1101
notifyringing=yes
dtmfmode=inband
mailbox=1101@default
progressinband=no

(I've tried canreinvite=no, dtmfmode=rfc2833, and a bunch of others. this is the config i ended up when i posted here.)

in my extensions.conf

exten => _XXXX,hint,SIP/${EXTEN}
exten => _XXXX,1,NoOp(I hinted ${EXTEN})
exten => _XXXX,2,Dial(SIP/${EXTEN},20,t)
exten => _XXXX,n,Voicemail(su${EXTEN}@default)
exten => _XXXX,n,Congestion
exten => _XXXX,n,Hangup

(Trying to keep it simple, again, i elimated any weird call handling functions/routines for the time being. )

I've got the contacts added to my Directory.xml file with speed dials associated with them as well as Buddy watch enabled. (bw=1).
The contact names appear on Soft keys 2 &amp; 3. (Key 1 is my line registration).

As soon as the phone boots, the presence of lines 2&amp;3 is automatically showing 'Away' (viewed through buddies button) and the red lights flash.
The presence doesn't appear to be updating at all.

Thanks in advance for your help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old February 7th, 2006, 06:27 PM
Closed Thread


Thread Tools
Display Modes Rate This Thread
Rate This Thread:



Similar Threads for: Buddy watch
Thread Thread Starter Forum Replies Last Post
Watch Out ! Calling UK service help line costs 0.27c/min SteveCP Other Providers 8 February 8th, 2005 03:19 PM
Watch for upcoming news / Press! jwilliams Broadvox Direct Support Forum 0 September 1st, 2004 01:32 AM



All times are GMT. The time now is 10:58 PM.


vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. SEO by vBSEO 3.0.0 ©2007, Crawlability, Inc. Logos and trademarks are the property of Voxilla or their respective owner. All other content © 2003-2007 by Voxilla, Inc.