Download Print this page

Advertisement

Quick Links

Proxicast, LLC
312 Sunnyfield Drive
Suite 200
Glenshaw, PA 15116
1-877-77PROXI
1-877-777-7694
1-412-213-2477
Fax:
1-412-492-9386
E-Mail:
support@proxicast.com
Internet:
www.proxicast.com
Controlling the ezOutlet5-2R
Tech Note MSNTN06
© Copyright 2024, Proxicast LLC. All rights reserved.
Proxicast is a registered trademark and EtherLINQ, PocketPORT and
LAN-Cell are trademarks of Proxicast LLC. All other trademarks
mentioned herein are the property of their respective owners.

Advertisement

loading
Need help?

Need help?

Do you have a question about the ezOutlet5-2R and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

Summary of Contents for Proxicast ezOutlet5-2R

  • Page 1 1-412-492-9386 E-Mail: support@proxicast.com © Copyright 2024, Proxicast LLC. All rights reserved. Internet: www.proxicast.com Proxicast is a registered trademark and EtherLINQ, PocketPORT and LAN-Cell are trademarks of Proxicast LLC. All other trademarks mentioned herein are the property of their respective owners.
  • Page 2: Document Revision History

    IMPORTANT NOTES By default, the Auto Reset function (power-cycle on Internet loss) is DISABLED. You must use one of the methods above to enable Auto Reset if you want the ezOutlet5-2R to automatically power-cycle your equipment. When Auto Reset is enabled, the reset event will occur up to 3 times by default. This number can be increased up to infinity.
  • Page 3 (+) sign to add a new device to your list. Tap the model of the product you wish to locate (EZ-73a). ezDevice will scan for all ezOutlet5-2R’s. If one is found, its serial number will be shown. Tap the Connect button to begin the add process.
  • Page 4 MSNTN06: Controlling the EzOutlet5-2R On the Settings page, change the Outlet Mode to “Auto Reset” to enable power-cycling upon Internet loss. Remember to tap Save to send the new setting to the ezOutlet5-2R. Page 3...
  • Page 5 MSNTN06: Controlling the EzOutlet5-2R 2. Cloud4UIS.com Device Management Portal Open the Cloud4UIS.com web site using any web browser: http://Cloud4UIS.com If you do not yet have an account, create one on the site. If you previously created an account using ezDevice, use the same login credentials for Cloud4UIS.com.
  • Page 6 MSNTN06: Controlling the EzOutlet5-2R Click Next to add the wired device by serial number found on the bottom label of the ezOutlet5-2R. Enter the ezOutlet5-2R’s 10-digit serial number and click Next. Page 5...
  • Page 7 MSNTN06: Controlling the EzOutlet5-2R To place the ezOutlet5-2R into “Add Mode”, unplug the LAN cable for approximately 1 second, then reinsert it into the ezOutlet5-2R. Click Next and Cloud4UIS will confirm that it can communicate with your unit. Click any of the devices added to Cloud4UIS to manage them. You can see various status information and change most of the ezOutlet5-2R’s settings.
  • Page 8 Holding the Function button in for 10 seconds will perform a factory reset – all configuration settings will be lost and the ezOutlet5-2R must be re-added to the Cloud for remote access. A factory reset can also be performed via the OLED menu or the ezOutlet5-2R’s internal web server.
  • Page 9 Access to the ezOutlet5-2R’s functionality is available via its internal web server pages. To access the web server, enter the ezOutlet5-2R’s IP address into any web browser. The IP addresses of the Wi-Fi and/or Ethernet interfaces can be found on the OLED status display.
  • Page 10 MSNTN06: Controlling the EzOutlet5-2R 5. REST API Basic functions of the ezOutlet5-2R can be controlled through a series of HTTP Packet Requests. Examples in this section are shown using cURL for Windows. Any software capable of sending and processing HTTP packets can be used.
  • Page 11 EXAMPLE: Enable Auto Reset curl "http://192.168.0.69/cgi-bin/control2.cgi?user=admin&passwd=126065&target=0&control=1" OUTPUT <?xml version='1.0'?> <request> <outlet_status>1,1</outlet_status> <outlet_mode>1</outlet_mode> </request> Get the Status of the ezOutlet5-2R HTTP Packet Request "GET" <target> "HTTP/1.1"CRLF "Host:" <host ip>CRLF "Keep-Alive: 300"CRLF "Connection: keep-alive"CRLF "Authorization:Basic" <auth>CRLFCRLF ;auth:encoded account(admin:1234) with base-64 HTTP URL: “http://<auth>< IP>/xml/outlet_status.xml”...
  • Page 12 MSNTN06: Controlling the EzOutlet5-2R “<no_of_reset>”{no_of_reset}”</no_of_reset>” “</request>” XML Description: site: uuu.uuu.uuu.uuu or google.com site_mode: 0 = http, 1 = ping site_lost: 0 = ping successful, 1 = ping failed outlet_status: 0 = off, 1 = on outlet_mode: 0 = manual control, 1 = auto reset...