Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Alle ARSnova-Produkte als „Software as a Service“ auf einem tragbaren Server (Mini-PC NUC) in einem eigenen WLAN-Netzwerk, siehe https://arsnova.thm.de/blog/work-in-progress-arsnova-router

Notifications You must be signed in to change notification settings

thm-projects/arsnova-router

Repository files navigation

ARSnova Router

ARSnova Router delivers the ARSnova experience into classrooms that either have poor or no internet connection at all.

With ARSnova Router, you "Bring Your Own Network" (BYON), with a local Wifi just for you and your students. You access ARSnova without outside interference for a fast, reliable, and secure experience.

Please see our white paper for further details (currently german only):

"Strategien für die Bereitstellung eines skalierbaren Audience-Response-Systems: Vom ARS-Router bis zum Cloud-Deployment"

ARSnova Router consists of two parts: a Wifi "Router" to create the wireless infrastructure, and a "Server" hosting a local ARSnova installation. Throughout this README, we will refer to "Router" and "Server" to mean the Wifi router and the computer, respectively.

This repository is for the technical setup of both the Wifi "Router" and the ARSnova "Server."

Alpha Bundle

The "Alpha Bundle" is our first working prototype of ARSnova Router consisting of a Linksys WRT3200ACM (the Router) and an Intel NUC i7 (the Server).

In the following sections, we explain the technical details of our setup. Here is a short overview of how the Bundle should be used:

Prerequisite: The Router and Server should be connected with a network cable. After booting both devices, the "ARSnova" wifi is available.

  1. Teachers announce wifi SSID and password, as well as the URL to ARSnova.
  2. Students connect to the wifi, and depending on the usage scenario, the teachers also connect their devices.
  3. Both parties point their browsers to the given URL to access ARSnova.
  4. ARsnova Voting contains the tagline "ARSnova Router", which allows users to verify they have a working connection.

Usage scenarios

The following usage scenarios are possible with the Alpha Bundle: Headless, and using a video projector.

Headless

The NUC can work "headless", ie. without connecting it to a monitor or a video projector in the classroom. This is useful if ARSnova should be controlled from a separate machine such as a laptop, for example, to show a slide presentation and to switch back and forth between the presentation and ARSnova.

For this setup, Router and Server need to be wired up exactly as explained above, but no further steps are necessary. The separate laptop connects to the ARSnova wifi like all other users.

Using a video projector

It is also possible to directly present from the NUC by connecting it with an HDMI cable to the video projector. A mouse and keyboard are then necessary to control the browser.

Linksys WRT3200ACM

As our wifi router, we selected the Linksys WRT3200ACM, because it has a good wifi capacity. However, the OEM firmware allows only a very limited configuration. After experimenting with this firmware, we decided that it would be easier to use OpenWRT, which is open source and supports extensive configuration options.

Details about installing OpenWRT can be found at the project site. As of writing this document (spring 2019), the Router runs the LEDE branch of OpenWRT, release version 17.

Three services need to be enabled in OpenWRT: DHCP, SSH, and DNS. We detail our usage of DNS in the next section since it depends on the interplay between Router and Server.

For wifi, we found that best results are reached when only the "bng" network is activated (radio 1). Security should be enabled so that smartphones do not complain about the network being unencrypted.

The Alpha Bundle contains a network cable to connect Router and Server, which is supposed to be plugged into the Router's port 1, ie. not the internet uplink port. Although the Server could also use the wifi connection, we think that the fewer clients use the network, the better the overall performance will be.

Intel NUC i7

ARSnova Voting is installed directly on the NUC following the official documentation. This means that the NUC contains an Apache CouchDB and runs Apache Tomcat to serve both ARSnova's backend and its mobile client.

The nginx configuration is available in the repository (etc/nginx/sites-available/arsnova.voting). It has built-in support for a local MathJax installation (documented here), which has to be downloaded to the folder /home/arsnova/arsnova/mathjax. Note the arsnova subfolder inside the arsnova home directory, this is due to technical reasons. Also don't forget to update the path to Mathjax in ARSnova's properties file, which will be at http://voting.arsnova.eu/mathjax.

Voting is available at voting.arsnova.eu.

DNS

The NUC should be usable as a regular desktop PC if not connected to the Router. This prohibits the usage of a static IP address, even though this would make it a lot easier to work with the Router. This is because the network interface would need to be reset to DHCP in cases of regular Internet usage.

When set to DHCP, however, the Router could change the Server's IP address at any time. This would mean that the domain records need to be changed accordingly.

The Server, therefore, monitors its own IP address and whenever a change is detected, and the Server is connected to the Router, a DNS change is initiated. This is implemented with a cron job that periodically invokes a script (src/nuc/monitor_ip.sh) to check for an IP address change. This cron job is really simple and is invoked every minute:

* * * * * /bin/sh /home/arsnova/arsnova-router/src/nuc/monitor_ip.sh >/home/arsnova/dns.log 2>&1

The script uploads a new DNS host file to the Router, so that the DNS entries are updated to the new IP address. The Router has a specific directory for this, which by default is configured to be at /tmp/hosts. We then send dnsmasq (the tool we use for DNS) the HUP signal, which forces it to re-read all host files. The advantage of this approach is that we do not need to restart DNS whenever we change the host files.

Technical issues

Usage of HTTPS/WSS

Since we have a local network, we are unable to provide an official SSL certificate. Self-signed certificates are not an option anymore, because modern browsers display huge warning messages which kill usability and user experience.

A possible solution would be to request an official certificate for the fake domains we use in the local network and then to install them on the Server. While this could work for the case of our single Alpha Bundle, a couple of issues arise in this scenario:

  1. Free certificates like "let's encrypt" are only valid for short periods of time. An update process would be necessary to renew the certificates in time, which would mean the NUC must be connected to the Internet before the certificate expires.
  2. Installing the certificates on the Server means to give up control. Effectively, the certificate is passed to a third-party. This is against the TOS of most certificate providers, including "let's encrypt." To counter this problem, the third-party would need to request their own certificates for the ARSnova domains.
  3. Every new Bundle would need its own certificate, so new subdomains are needed. Thinking about scale, these domain names will probably get increasingly user-unfriendly the more Bundles are produced.

On domain names

It would be best to use short domain names like "arsnova". However, modern browsers have a search bar instead of an URL bar, which will interpret "arsnova" as a search term, not as a domain name. Only if the name is extended to, eg., "arsnova.eu", will it be correctly parsed and auto-completed to a URL.

Using TLDs like "arsnova.eu" ties back to the problems of the previous section: If a user has ever visited "arsnova.eu" before, the certificate is stored in the browser. Any other certificate (or even a missing certificate) will cause the browser to display warnings. The domain name for the Bundle would thus have to be "fresh."

Credits

ARSnova is powered by Technische Hochschule Mittelhessen - University of Applied Sciences.

About

Alle ARSnova-Produkte als „Software as a Service“ auf einem tragbaren Server (Mini-PC NUC) in einem eigenen WLAN-Netzwerk, siehe https://arsnova.thm.de/blog/work-in-progress-arsnova-router

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •