• Try Us Out - See our Demo Tabs Above

    Sports Bars

    Experience our Sports Bar TV, Audio and Lighting Control System with our awesome demo! We provide multiple TV control systems that will easily integrate your Audio/Video and environmental components into one easy to use package. Let multiple hand-held remotes be a thing of the past and experience hassle free one-touch control. With the versatility of myServer 6, you may be able to retrofit existing equipment into the control system which makes it economical to get the most value out of your technology investment.

    Residential

    With a whole new exciting look and feel our transparent "Moonlight" user interface allows clarity and ease in maneuvering your lighting floor plan, climate control, security cameras, and security keypad as well as entertainment options. Control all aspects of your home with simplicity and confidence.

    Digital Signage

    Allonis makes it easy to control and launch your media content. We have created software that ties in seamlessly to your bar or restaurant control system. Upload new images and videos, discard old ones, decide what to play or post and where with just a few selections.

  • Sports Bar & Restaurant Demo

    Select a source on the left and then select the TVs you would like to change on the right.

    Along the bottom are options for a DirecTV remote, TV Guide, Audio, Favorites & AppleTV. In addition you can touch the video camera on the left hand source options to get a live preview of what's playing on that source. Be sure to click around and try everything.

    Read More

     

    Customer Listening Experience

    Pan from left to right and up and down to see all the TVs.

    Customers can select the TV closest to them to tune in to the audio.

    Read More

     

    No Floorplan Option.

    If you are not interested in a navigable floor plan we can provide a generic interface instead.

    The same features are supported.

    Read More
  • Residential Demo

    Below is our residential simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More
  • Digital Signage

    In the large window select a player on the left. Then select an option layout on the right. Select available assets from the list provided. You can add a ticker of either a message or weather by checking the boxes. When you are finished making selections click “send to player”. Your choice will appear on the corresponding player above. To pause a video click the player once.

    Read More
  • SmartRemote Demo

    Below is our SmartRemote simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More

Our Products

See the latest myServer 6 products, available for individual purchase or part of a custom Allonis system built especially for your project.
Software
Hardware
Sports Bars
Services


Install Root Certificate Into Workstations

For your laptops/desktops/workstations, you’ll need to install the root certificate into your trusted certificate repositories. This can get a little tricky. Some browsers use the default operating system repository. For instance, in Windows both IE and Chrome use the default certificate management.  Go to IE, Internet Options, go to the Content tab, then hit the Certificates button. In Chrome going to Options and Under The Hood, and Manage certificates. They both take you to the same place, the Windows certificate repository. You’ll want to install the root CA certificate (not the key) under the Trusted Root Certificate Authorities tab.

However, in Windows Firefox has its own certificate repository, so if you use IE or Chrome as well as Firefox, you’ll have to install the root certificate into both the Windows repository and the Firefox repository. In a Mac, Safari, Firefox, and Chrome all use the Mac OS X certificate management system, so you just have to install it once on a Mac. With Linux, I believe it’s on a browser-per-browser basis.

Create A Certificate (Done Once Per Device)

Every device that you wish to install a trusted certificate will need to go through this process. First, just like with the root CA step, you’ll need to create a private key (different from the root CA).

openssl genrsa -out device.key 2048

Once the key is created, you’ll generate the certificate signing request.openssl req -new -key device.key -out device.csrYou’ll be asked various questions (Country, State/Province, etc.). Answer them how you see fit. The important question to answer though is common-name.

Common Name (eg, YOUR name) []: 10.0.0.1

Whatever you see in the address field in your browser when you go to your device must be what you put under common name, even if it’s an IP address.  Yes, even an IP (IPv4 or IPv6) address works under common name. If it doesn’t match, even a properly signed certificate will not validate correctly and you’ll get the “cannot verify authenticity” error. Once that’s done, you’ll sign the CSR, which requires the CA root key.

openssl x509 -req -in device.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out device.crt -days 500 -sha256

This creates a signed certificate called device.crt which is valid for 500 days (you can adjust the number of days of course, although it doesn’t make sense to have a certificate that lasts longer than the root certificate). The next step is to take the key and the certificate and install them in your device. Most network devices that are controlled via HTTPS have some mechanism for you to install. For example, I’m running F5’s LTM VE (virtual edition) as a VM on my ESXi 4 host. Log into F5’s web GUI (and should be the last time you’re greeted by the warning), and go to System, Device Certificates, and Device Certificate.

In the drop down select Certificate and Key, and either past the contents of the key and certificate file, or you can upload them from your workstation.

After that, all you need to do is close your browser and hit the GUI site again. If you did it right, you’ll see no warning and a nice greenness in your address bar.

And speaking of VMware, you know that annoying message you always get when connecting to an ESXi host?

You can get rid of that by creating a key and certificate for your ESXi server and installing them as /etc/vmware/ssl/rui.crt and /etc/vmware/ssl/rui.key.