-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Poly Phones
- Desk and IP Conference Phones
- Re: wake up event VVX 410

Create an account on the HP Community to personalize your profile and ask a question
06-17-2014 01:07 AM
Hi,
I was wondering if there is a way to send a "wake up event" to polycom vvx410, so when users come in their offices to find their phone display on.
I am using tftp to configure my phones ( 45*VVX410) My power options are :
<powerSaving
powerSaving.enable="1"
powerSaving.enable.VVX410="1">
<powerSaving.idleTimeout
powerSaving.idleTimeout.offHours="1"
powerSaving.idleTimeout.officeHours="480"
powerSaving.idleTimeout.userInputExtension="10">
<powerSaving.motionDetection
powerSaving.motionDetection.frameRate="10">
<powerSaving.officeHours.duration
powerSaving.officeHours.duration.monday="12"
powerSaving.officeHours.duration.tuesday="12"
powerSaving.officeHours.duration.wednesday="12"
powerSaving.officeHours.duration.thursday="12"
powerSaving.officeHours.duration.friday="12"
powerSaving.officeHours.duration.saturday="0"
powerSaving.officeHours.duration.sunday="0">
<powerSaving.officeHours.startHour
powerSaving.officeHours.startHour.monday="7"
powerSaving.officeHours.startHour.tuesday="7"
powerSaving.officeHours.startHour.wednesday="7"
powerSaving.officeHours.startHour.thursday="7"
powerSaving.officeHours.startHour.friday="7"
powerSaving.officeHours.startHour.saturday="8"
powerSaving.officeHours.startHour.sunday="8">
<powerSaving.userDetectionSensitivity
powerSaving.userDetectionSensitivity.offHours="2"
powerSaving.userDetectionSensitivity.officeHours="10">
<vvx
ind.pattern.powerSaving.step1.state.VVX410="1">
I tried using a script that ping phones IPAddresses but is not working. Is there any other option or a trick I can use ?
Thank you in advance.
Solved! Go to Solution.
Accepted Solutions
07-09-2014 10:12 AM
Hi
This is probably the easiest option I can think of:
Enable http on the phne as default with:
<httpd>
<httpd httpd.enabled="1" />
</httpd>Then enable the apps push feature and configure the username/password you want:
<apps>
<apps.push.serverRootURL apps.push.serverRootURL="" />
<apps.push.username apps.push.username="Push" />
<apps.push.password apps.push.password="Push" />
<push apps.push.messageType="5" />
</apps>then have your script send a push to your phone, for example make the phone "press" the menu button twice - effectively opening and closing the menu screen:
curl --digest -u Push:Push -d $'<PolycomIPPhone><Data priority="all">Key:Menu\nKey:Menu</Data></PolycomIPPhone>' --header "Content-Type: application/x-com-polycom-spipx" http://***Phone_IP_ADDRESS***/push
Or something like that anyways 🙂 hope this helps
Cheers
Dave
07-09-2014 10:12 AM
Hi
This is probably the easiest option I can think of:
Enable http on the phne as default with:
<httpd>
<httpd httpd.enabled="1" />
</httpd>Then enable the apps push feature and configure the username/password you want:
<apps>
<apps.push.serverRootURL apps.push.serverRootURL="" />
<apps.push.username apps.push.username="Push" />
<apps.push.password apps.push.password="Push" />
<push apps.push.messageType="5" />
</apps>then have your script send a push to your phone, for example make the phone "press" the menu button twice - effectively opening and closing the menu screen:
curl --digest -u Push:Push -d $'<PolycomIPPhone><Data priority="all">Key:Menu\nKey:Menu</Data></PolycomIPPhone>' --header "Content-Type: application/x-com-polycom-spipx" http://***Phone_IP_ADDRESS***/push
Or something like that anyways 🙂 hope this helps
Cheers
Dave