If the internet is not working, the first thing to check is that
the black WiFi antennae are
still upright and have not been knocked sideways.
First, make sure you understand the physical cabling:
Both expo laptops Clowley and Aziraphale use DHCP over wifi to get an IP4 address and the identity of a DNS nameserver. Neither laptop has any other configuration.
If you connect your laptop or phone to the Potato hut wifi you will connect in the same way.
The Gasthof WiFi - which you can use if you are close enough - is "StaudnGast" and has no WiFi password but there is a login webpage. It allocates IP addresses in the range 192.168.2.x etc. The antenna is now on the first-floor balcony within sight of the tatty hut window. You can get the password from the Gasthof front desk, or during expo it is usally written on the whiteboard in the potato hut. In the scripts published in this handbook we use the word GASTSECRET instead of the real password.
If you are not actively using the internet, the Gasthof system will close the connection and you will have to re-login again, typing the password into the login page.
The potato hut WiFi has SSID "tattyhut" with our usual cavey:beery password. Like almost every other wifi anywhere it is running DHCP and allocating IP addresses to your device.
The DHCP system is issuing IP4 addresses of the form 192.168.1.x where x is a number between 11 and 199 with a lifetime of 48 hours.
The Expo laptops acquire a dynamic local address of this form, as does any other laptop or phone connecting to this wifi.
The Acer Aspire One netbook is running Debian Linux operating system with the lightweight [xfce] window mananger. It runs a script once every 60s which checks whether it can access the internet. If it can't, it attempts a re-login to the Gasthof wifi system, which takes 5-10 seconds. If it still can't access the internet it deletes nearly all the configuration and reloads everything - which takes about 30s.
Because of a permissions difficulty, the scripts on the netbook live in /root/fakenet so that the cron job (running as root) can access them. [This is not the usual Linux place to keep such things.] The cron file lives in the usual place in /etc/cron/cron.d/fakenet.
When the netbook powers up, the script /etc/init.d/fakenet runs which sets everything going for the first time.
The netbook needs to have its persistent networking set up correctly in addition to the other scripts. This is the wicd gui program that has an icon in the top-right of the sceen in the system panel. (Or search in all applications in the Internet section for the wicd application). Set the checkboxes so that the netbook does not connect to any network except the StaudnGast wifi network, and also tick the 'automatically reconnect' checkbox for the "StaudnGast" network.
The Netgear ethernet/wifi hub holds the radio transceiver that provides the wifi coverage inside the potato hut. It is configured using its web control panel. It has an online manual but it needs no configuration at all during expo. Just turn it on at the beginning of expo and off again at the end.
While you can use 5Ghz wifi and IP6 to connect within the hut, there is no IP6 connectivity to the external internet. Sorry. We are dependent on the Gasthof system for this.
To understand how the network is configured, you need to realise that we have to manage these different 'networks':
DNS is what connects a computer name (such as expo.survex.com) with an internet address (such as 78.129.164.125). To make the internet work, we need to tell every laptop and phone where to find a DNS nameserver, or what machine to ask in order to get DNS queries forwarded to a DNS nameserver.
The DNS configuration happens in the netbook. The Netgear box just forwards DNS queries to the netbook, and tells laptops connected to the hut wifi to use that too.
DHCP is what decides what the x is when the wifi issues an address that a laptop must use when it connects to the wifi as 192.168.1.x.
We have done this in two different ways:
The benefit of doing it in the Netgear box is that you get to play with a graphical web interface not text files.
The benefit of doing it in the netbook is that all the configuration is in the same place, and you only have to learn one way of doing things instead of having to use text files and a web interface. Aslo, by making the Netgear box completely dumb, it is swap-replaceable if it dies with no reconfiguration required.
The netbook has two interfaces: the Alfa wifi antenna (which has an address issud by the Gasthof wifi system), and its ethernet cable socket which is configured to have the address 10.0.1.2.
The Netgear box has its yellow ethernet cable socket set to the address 10.0.1.1. The four other ethernet sockets are all on the address range 192.168.1.x and the wifi network interface is set to 192.168.1.1 on the same network range.
Because the netbook is on a different network from the laptops connecting to the hut wifi, you can't directly login to the netbook using ssh to the IP address (ssh expo@10.0.1.2), but you can using its name, so ssh expo@tclaspire3.potatohut should work if everything has been configured correctly. This is the address to use for configuring it using ssh when everything else has failed. So to manage the connection to the Gasthof WiFi you would use
ssh expo@192.168.200.100
/root/fakenet/runfakenetThis used to need running once or twice a day when the internet stops working, but it was radically fettled in 2022 and so should be much more reliable. Sometimes you may have to walk over to the blue Acer Aspire netbook and run this script directly by typing on its keyboard as the network has collapsed so badly that ssh doesn't work.
Prior to 2017 we used to run an unconnected local network with our own DNS domain name "potato.hut", our own server holding all the website and survey data, and published WiFi as SSID "tattyhut". Updates to the rest of the world were done by taking an up-to-date laptop which had been in the tatty hut to a real internet connection and pushing the changes to the distributed version control system on expo.survex.com to be merged.
In 2017 we arrived on expo to discover that our hard-drive in the hut had died (taking the music collection with it) which triggered the general reconfiguration to connect the tattyhut to the internet continuously and not to have our own local server. This coincided with a much-improved WiFi service at the Gasthof. We continued with the wifi service in the hut but now it also connects to the external internet instead of to a 'pretend' internet (which is why the system is called 'fakenet').
In 2018 and 2019 we had good Internet access at basecamp, but the high-gain system was returned to its owner during Covid.
In 2022 Wifi reception from the Gasthof was very poor. The connection script was improved so that dropped connections were restored more quickly. However the basic bandwidth with a cheap antenna was not enough.
In 2023 a new Wifi device (the Alfa) should restore decent connectivity. We hope this will improve everything to how it was in 2019. However this Alfa has proved to be a right bastard to find the right drivers for. Wookey has had to be inventive in using an Ubuntu PPA to make it work with the Acer Aspire 1.
Also during winter 2023/23 Wookey upgraded the operating system on the Acer Aspire One netbook from whatever ancient Debian it had been running to a decently almost-modern Debian distribution. This required much coaxing. As of 26 March, it is still a couple of Debian versions behind where we would want it to be.
The structure of the system was created by Wookey in 2013 who used the fakenet principle and the netbook to run training sessions for the Cave Survey Group in the UK. [This is why the script has an extra level of parameter setting that might seem necessary: it has 'csg' and 'expo' options, but the two configurations have diverged so much over the years that this is merely a fossil.]
The part of the script that logs into the Gasthof wifi was written by Mark Shinwell in 2017 and re-edited by Sam Wenham in 2019. Wookey made it more robust on expo in 2022.