<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.emfcamp.org/2022/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ms7821</id>
	<title>Electromagnetic Field 2022 - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.emfcamp.org/2022/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ms7821"/>
	<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/wiki/Special:Contributions/Ms7821"/>
	<updated>2026-04-23T00:55:23Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1531</id>
		<title>Network/802.1X client settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1531"/>
		<updated>2022-06-01T09:29:48Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Add image for Android instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Android ==&lt;br /&gt;
=== App ===&lt;br /&gt;
You can use our Android App to configure the correct WiFi settings on your Android device. Download it here:&lt;br /&gt;
&lt;br /&gt;
* From Google Playstore: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup&lt;br /&gt;
* Source-code: https://github.com/EventInfra/wifisetup&lt;br /&gt;
* APK download: https://eventinfra.org/emfcamp/app-release.apk&lt;br /&gt;
&lt;br /&gt;
[[File:Connecting-to-emfcamp-on-android.png|right|thumb|frame|150px|Connecting on Android]]&lt;br /&gt;
=== Manually ===&lt;br /&gt;
If you don't want to use the app, download the [https://letsencrypt.org/certs/isrgrootx1.pem ISRG Root X1], and [https://support.google.com/pixelphone/answer/2844832 install it] into your device's '''Wi-Fi certificate''' store, giving it any name you like. Then connect to the '''emfcamp''' network using the following information:&lt;br /&gt;
&lt;br /&gt;
{|padding&lt;br /&gt;
| EAP method || TTLS ''(not TLS)''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding-right: 1em&amp;quot; | Phase 2 authentication || PAP&lt;br /&gt;
|-&lt;br /&gt;
| CA certificate || ''(whatever name you gave the ISRG Root X1)''&lt;br /&gt;
|-&lt;br /&gt;
| Domain || radius.emf.camp&lt;br /&gt;
|-&lt;br /&gt;
| Identity || emf&lt;br /&gt;
|-&lt;br /&gt;
| Password || emf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
It's fine to leave '''Online Certificate status''' as &amp;quot;Do not validate&amp;quot;, and leave the '''Anonymous identity''' blank.&lt;br /&gt;
&lt;br /&gt;
== Linux, etc. ==&lt;br /&gt;
=== Network Manager ===&lt;br /&gt;
You can use the following config file:&lt;br /&gt;
&lt;br /&gt;
Please note that some versions of NM are buggy and will only work with 802.1X using MSCHAPv2, or not at all. If that affects you, it may be easiest to use wpa_supplicant.&lt;br /&gt;
&lt;br /&gt;
/etc/NetworkManager/system-connections/emfcamp:&lt;br /&gt;
&lt;br /&gt;
Hint: chmod 600 this file to make the connection work.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;[connection]&lt;br /&gt;
id=emfcamp&lt;br /&gt;
uuid=c80101e2-7b99-4511-846b-2388eb86a5ad&lt;br /&gt;
type=wifi&lt;br /&gt;
permissions=&lt;br /&gt;
secondaries=&lt;br /&gt;
&lt;br /&gt;
[wifi]&lt;br /&gt;
mac-address=42:23:42:23:42:23 &amp;lt;- !! Please change this !!&lt;br /&gt;
mac-address-blacklist=&lt;br /&gt;
mode=infrastructure&lt;br /&gt;
seen-bssids=&lt;br /&gt;
ssid=emfcamp&lt;br /&gt;
&lt;br /&gt;
[wifi-security]&lt;br /&gt;
auth-alg=open&lt;br /&gt;
group=&lt;br /&gt;
key-mgmt=wpa-eap&lt;br /&gt;
pairwise=&lt;br /&gt;
proto=&lt;br /&gt;
&lt;br /&gt;
[802-1x]&lt;br /&gt;
altsubject-matches=DNS:radius.emf.camp&lt;br /&gt;
ca-cert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
eap=ttls;&lt;br /&gt;
identity=emf&lt;br /&gt;
password=emf&lt;br /&gt;
phase2-altsubject-matches=&lt;br /&gt;
phase2-auth=pap&lt;br /&gt;
&lt;br /&gt;
[ipv4]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&lt;br /&gt;
&lt;br /&gt;
[ipv6]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== WiCD ===&lt;br /&gt;
You need an additional crypto setting for WiCD. Put this file into /etc/wicd/encryption/templates/eap-ttls (debian systems, might be different with other *nix flavours):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 name = EAP-TTLS emfcamp&lt;br /&gt;
 author = Felicitus&lt;br /&gt;
 require identity *Identity password *password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
  ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
  scan_ssid=$_SCAN&lt;br /&gt;
  identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
  password=&amp;quot;emf&amp;quot;&lt;br /&gt;
  proto=WPA2&lt;br /&gt;
  key_mgmt=WPA-EAP&lt;br /&gt;
  group=CCMP&lt;br /&gt;
  pairwise=CCMP&lt;br /&gt;
  eap=TTLS&lt;br /&gt;
  ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
  altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
  anonymous_identity=&amp;quot;$_ANONYMOUS_IDENTITY&amp;quot;&lt;br /&gt;
  phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
  #priority=2&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Edit /etc/wicd/encryption/templates/active to include the eap-ttls config template. Restart the WiCD daemon, choose the proper encryption (EAP-TTLS emfcamp) and enter a random username/password.&lt;br /&gt;
&lt;br /&gt;
=== Jolla/connman ===&lt;br /&gt;
/var/lib/connman/emfcampwifi.config :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [service_emfcamp]&lt;br /&gt;
 Type=wifi&lt;br /&gt;
 Name=emfcamp-legacy&lt;br /&gt;
 EAP=ttls&lt;br /&gt;
 Phase2=PAP&lt;br /&gt;
 Identity=emf&lt;br /&gt;
 Passphrase=emf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== wpa_supplicant ===&lt;br /&gt;
This is the default option on Raspberry Pi OS.  Edit /etc/wpa_supplicant/wpa_supplicant.conf and add the network:&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
 	ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
 	key_mgmt=WPA-EAP&lt;br /&gt;
 	eap=TTLS&lt;br /&gt;
 	identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	password=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	# ca path on debian 7.x and raspberry pi OS, modify accordingly&lt;br /&gt;
 	ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
 	phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Interfaces ===&lt;br /&gt;
As an alternative, you can specify the wpa_supplicant config options directly in /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 iface wlan0 inet dhcp&lt;br /&gt;
 	wpa-ssid emfcamp&lt;br /&gt;
 	wpa-identity emf&lt;br /&gt;
 	wpa-password emf&lt;br /&gt;
 	wpa-proto WPA2&lt;br /&gt;
 	wpa-key_mgmt WPA-EAP&lt;br /&gt;
 	wpa-group CCMP&lt;br /&gt;
 	wpa-pairwise CCMP&lt;br /&gt;
 	wpa-eap TTLS&lt;br /&gt;
 	wpa-phase2 &amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 	wpa-ca_cert &amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	wpa-altsubject_match DNS:radius.emf.camp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Netctl ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Description='emfcamp secure WPA2 802.1X config'&lt;br /&gt;
Interface=wls1&lt;br /&gt;
Connection=wireless&lt;br /&gt;
Security=wpa-configsection&lt;br /&gt;
IP=dhcp&lt;br /&gt;
ESSID=emfcamp&lt;br /&gt;
WPAConfigSection=(&lt;br /&gt;
    'ssid=&amp;quot;emfcamp&amp;quot;'&lt;br /&gt;
    'proto=RSN WPA'&lt;br /&gt;
    'key_mgmt=WPA-EAP'&lt;br /&gt;
    'eap=TTLS'&lt;br /&gt;
    'identity=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'password=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;'&lt;br /&gt;
    'altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;'&lt;br /&gt;
    'phase2=&amp;quot;auth=PAP&amp;quot;'&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IWD ===&lt;br /&gt;
&amp;lt;pre&amp;gt;[Security]&lt;br /&gt;
EAP-Method=PEAP&lt;br /&gt;
EAP-Identity=anonymous@emfcamp&lt;br /&gt;
EAP-PEAP-CACert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
EAP-PEAP-ServerDomainMask=radius.emf.camp&lt;br /&gt;
EAP-PEAP-Phase2-Method=MSCHAPV2&lt;br /&gt;
EAP-PEAP-Phase2-Identity=emf&lt;br /&gt;
EAP-PEAP-Phase2-Password=emf&lt;br /&gt;
&lt;br /&gt;
[Settings]&lt;br /&gt;
AutoConnect=true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apple MacOS/iOS ==&lt;br /&gt;
You can use one of these profiles for the correct WiFi-settings for Apple MacOS / iOS:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.mobileconfig emfcamp] (2.4GHz+5GHz, emf user)&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
Import one of these profiles for the correct WiFi-settings for Windows:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.xml emfcamp] (2.4GHz+5GHz)&lt;br /&gt;
&lt;br /&gt;
To import and connect follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Open a command prompt and execute: netsh wlan add profile filename=emfcamp-2022.xml&lt;br /&gt;
# Connect to the emfcamp network; use &amp;quot;emf/emf&amp;quot; as the username/password when prompted. Alternatively, use &amp;quot;outboundonly/outboundonly&amp;quot; as the username/password to enable inbound traffic firewalling.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=File:Connecting-to-emfcamp-on-android.png&amp;diff=1529</id>
		<title>File:Connecting-to-emfcamp-on-android.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=File:Connecting-to-emfcamp-on-android.png&amp;diff=1529"/>
		<updated>2022-06-01T09:22:05Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network&amp;diff=1503</id>
		<title>Network</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network&amp;diff=1503"/>
		<updated>2022-05-31T23:40:42Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: /* Client Settings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Team:NOC]] has tried to build and support the fastest network for you: a network comparable to a medium sized ISP, built up in just a couple of days. It might not be perfect all the time. We will be providing blanket wireless coverage and wired network access to both venues and camping tents.&lt;br /&gt;
&lt;br /&gt;
=== Key points ===&lt;br /&gt;
&lt;br /&gt;
* To use the camp WiFi on most modern devices, connect to the '''emfcamp''' network with a username of '''emf''' and a password of '''emf'''.&lt;br /&gt;
* You have a public IP address and there is limited network firewalling or filtering. [[#Security|Keep safe!]]&lt;br /&gt;
* Don't set up your own wireless access point. This is a serious problem in such a dense event and [[Network/Rogue Access Points|here's why]].&lt;br /&gt;
&lt;br /&gt;
== Wireless ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Network Name (SSID)&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emfcamp&amp;lt;/dd&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Username&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emf&amp;lt;/dd&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Password&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emf&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The whole field has been covered with many wireless access points to ensure the best possible coverage and to allow you to roam seamlessly without interruption. Please note that your device will be reachable by anyone on the internet, please take suitable precautions such as turning on a firewall, and making sure your software is up to date.&lt;br /&gt;
&lt;br /&gt;
You should not bring your own wireless access point, its unlikely to provide better service than the camp ones, and it makes the network worse for everyone else. Any rogue access points will be hunted down and disconnected from the network - see [[Network/Rogue_Access_Points]] if you want to know why. If you have a project that needs to provide its own AP for some reason please contact the NOC and we will find an alternative solution.&lt;br /&gt;
&lt;br /&gt;
Here is the complete list of wireless networks (SSIDs) available:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! emfcamp&lt;br /&gt;
| This is 2.4GHz + 5GHz and should you should use this one in preference, if you can see it. This is the most secure, WPA2-Enterprise.&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;white-space: nowrap&amp;quot; | emfcamp-insecure22&lt;br /&gt;
| '''Warning: insecure''' This is both 5GHz and 2.4GHz, and is for older devices that don't support WPA2-Enterprise. It's unencrypted, and people will likely intercept your traffic. Filtered connection with public IP address. Inbound connections from the rest of the campsite are possible, inbound connections from the Internet are blocked.&lt;br /&gt;
|-&lt;br /&gt;
! spacenet&lt;br /&gt;
| This is 2.4GHz + 5GHz and WPA2-Enterprise, you can connect with a valid account if your hackerspace offers.&lt;br /&gt;
|-&lt;br /&gt;
! eduroam&lt;br /&gt;
| This is 2.4GHz + 5GHz and WPA2-Enterprise, you can connect with a valid account if your university/college/school is offering eduroam. More information can be found at [https://www.eduroam.org/ eduroam.org].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
When connecting to any of the WPA2-Enterprise password, which require a username and password, you can use the following (case-sensitive):&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Username&lt;br /&gt;
! Password&lt;br /&gt;
! Result&lt;br /&gt;
|-&lt;br /&gt;
| emf&lt;br /&gt;
| emf&lt;br /&gt;
| Filtered connection with public IP address. Inbound connections from the rest of the campsite are possible, inbound connections from the Internet are blocked.&lt;br /&gt;
|-&lt;br /&gt;
| allowany&lt;br /&gt;
| allowany&lt;br /&gt;
| Unfiltered connection with public IP address&lt;br /&gt;
|-&lt;br /&gt;
| outboundonly&lt;br /&gt;
| outboundonly&lt;br /&gt;
| Filtered connection with public IP address. Inbound connections from the Internet or camp-site are not possible.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Use of the 5GHz SSIDs is recommended if your device supports them. 802.11b is disabled as it slows everyone else down.&lt;br /&gt;
&lt;br /&gt;
Even if you are using an encrypted network, you should still [[#Encryption|encrypt any sensitive traffic]] sent over the air end-to-end to prevent snooping. Although some SSIDs offer encryption, it is only over-the-air.&lt;br /&gt;
&lt;br /&gt;
We have airtime fairness configured on our wireless controllers, so if you wish to use a lot of bandwidth (e.g. stream videos or download large files), please use a [[#Wired|wired connection]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Client Settings ====&lt;br /&gt;
Also see [[Network/802.1X client settings]] for a list of OS-specific client settings.&lt;br /&gt;
&lt;br /&gt;
 SSID: emfcamp&lt;br /&gt;
 &lt;br /&gt;
 EAP-TTLS:&lt;br /&gt;
 &lt;br /&gt;
 Phase 1: EAP-TTLS&lt;br /&gt;
 Phase 2: PAP&lt;br /&gt;
 &lt;br /&gt;
 PEAP:&lt;br /&gt;
 &lt;br /&gt;
 Phase 1: PEAP&lt;br /&gt;
 Phase 2: MSCHAPv2 or EAP-MSCHAPv2 or PAP&lt;br /&gt;
 &lt;br /&gt;
 CN = radius.emf.camp&lt;br /&gt;
 CA = ISRG Root X1&lt;br /&gt;
&lt;br /&gt;
 SHA256 Fingerprint = B8:3B:F9:39:C4:F2:BF:D0:87:D7:93:5C:A0:DD:18:F3:31:7B:DD:B1:EC:88:3B:22:E0:B2:39:CB:7C:F8:FD:43&lt;br /&gt;
&lt;br /&gt;
Make sure '''you check the certificate''' in order to know you are connecting to the correct network (you should check on both the CN and the CA). Check [[Network/RADIUS_certificate|here]] for the complete certificate.&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu network settings.png|thumb|Ubuntu network settings]]&lt;br /&gt;
On Ubuntu/Debian based distros the certificate file can be found in /etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Android'''&lt;br /&gt;
&lt;br /&gt;
This app will help you get set up: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup. Or follow [[Network/802.1X_client_settings#Manually|these instructions]] to do it manually.&lt;br /&gt;
&lt;br /&gt;
== Wired Ethernet ==&lt;br /&gt;
&lt;br /&gt;
All camping areas are within 60m of a datenklo (or data toilet), where you can connect to the network. If you intend to do so please bring 60-70m of CAT5 cable as we are unable to provide any.&lt;br /&gt;
&lt;br /&gt;
Lay your own cable neatly from your tent back to the nearest Datenklo, and leave 6m of slack coiled on the floor in front of it. And please lay it so that it can be clearly seen that it needs to be plugged in - or you risk having your cable overlooked. At regular intervals a member of the NOC team will connect it up and enable the port.&lt;br /&gt;
&lt;br /&gt;
If you wish to be removed from a Datenklo again on Sunday or Monday, leave your entire cable coiled outside the DK and we will disconnect it. If you need to leave before then, contact the [[Team:InfoDesk|helpdesk]] directly.&lt;br /&gt;
&lt;br /&gt;
All of our edge ports are at least 100 Mbps or 1 Gbps, auto-negotiate, auto-MDX. We are unlikely to have PoE ports for general use.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that most of our ports will not support 10 Mbps - if you need it for old equipment or embedded things, please bring your own switch to convert. !--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Static IPs ==&lt;br /&gt;
&lt;br /&gt;
If you need a static IP on the wired network, contact the NOC.&lt;br /&gt;
&lt;br /&gt;
== IPv6 ==&lt;br /&gt;
&lt;br /&gt;
Naturally, IPv6 is available throughout the network and should &amp;quot;just work&amp;quot; for you. Team:NOC does not recommend disabling IPv6 if you have problems, instead try to understand the problem you are experiencing and get educated in the new world order. Contact the [[Team:InfoDesk|NOC helpdesk]] if you need help.&lt;br /&gt;
&lt;br /&gt;
== Services ==&lt;br /&gt;
&lt;br /&gt;
* DNS: 78.158.87.11 and 78.158.87.12&lt;br /&gt;
* NTP: 78.158.87.11 and 78.158.87.12 (ntp1.emf.camp and ntp2.emf.camp)&lt;br /&gt;
* Nearest Debian mirror: http://debian.mirror.uk.sargasso.net&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Security ==&lt;br /&gt;
&lt;br /&gt;
=== Encryption ===&lt;br /&gt;
&lt;br /&gt;
Please treat the network as wide open and full of attackers. Although [[Team:NOC]] themselves will not monitor the network, always assume that Alice flirting with Bob will be spied upon by The Third Party.&lt;br /&gt;
&lt;br /&gt;
Any sensitive information including passwords must therefore be encrypted. Please make sure you don't use any software or web applications that send sensitive data or passwords in the clear.&lt;br /&gt;
&lt;br /&gt;
The following mechanisms should be safe:&lt;br /&gt;
* Anything that goes through a VPN&lt;br /&gt;
* Any website that uses HTTPS&lt;br /&gt;
* Any application that uses SSL&lt;br /&gt;
** In the case of email, you need to have SSL enabled for both receiving mail (POP, IMAP) and sending it (SMTP)&lt;br /&gt;
* ssh and scp&lt;br /&gt;
* Where possible, use One-time passwords. Real tokens work best, many of those should be compatible with open source radius servers. [http://perlmonks.org/?node=967433 Here] is a simple Perl radius server implementation for [http://tools.ietf.org/html/rfc6238 RFC6238] tokens that works with ssh and other stuff on linux.&lt;br /&gt;
&lt;br /&gt;
The following are almost always unsafe:&lt;br /&gt;
&lt;br /&gt;
* FTP with login/password (are almost always sent in the clear)&lt;br /&gt;
* Telnet with login/password&lt;br /&gt;
* Email if you don't use SSL&lt;br /&gt;
* Webmail that doesn't use HTTPS&lt;br /&gt;
** Someone could trigger a password reminder and then intercept your email&lt;br /&gt;
* Websites that use HTTP (not HTTPS) where you need to fill in a password in the page itself&lt;br /&gt;
&lt;br /&gt;
Possibly unsafe, make sure that you understand what you're doing:&lt;br /&gt;
&lt;br /&gt;
* Websites where you need to fill in a password and your ''browser'' (not the website!) tells you it's going to be sent securely&lt;br /&gt;
* Websites that require an account but remember you're logged in&lt;br /&gt;
** The password ''may'' be protected but not the content or cookies that automatically log you in&lt;br /&gt;
* Any time your browser or other application brings up ''anything'' to do with a certificate&lt;br /&gt;
* Anything not protected with SSL: someone could be faking DNS answers to impersonate certain sites&lt;br /&gt;
&lt;br /&gt;
Remember: if you're being stupid someone may feel the need to teach you a security lesson in a not so subtle way! (No, that doesn't mean it's ok to hack people just to see if their security is in order.)&lt;br /&gt;
&lt;br /&gt;
=== Firewall ===&lt;br /&gt;
&lt;br /&gt;
On the wired network there is no network firewall and on the WiFi network there is limited firewalling in place. We operate an unfiltered network that is wide open to the Internet. There is no NAT, and everybody has a public IP address. This is our definition of &amp;quot;network neutrality&amp;quot; - a network that doesn't do anything whatsoever to your IP connection.&lt;br /&gt;
&lt;br /&gt;
If you are used to feeling secure just because you've been sitting behind a NAT router, think again. You are now wide open to the whole Internet. Ensure your personal firewall is enabled and set to &amp;quot;Public Network&amp;quot; and that you have applied all security updates to your OS and applications.&lt;br /&gt;
&lt;br /&gt;
By default the WiFi network allows inbound connections from the rest of the campsite, but inbound connections from the Internet are blocked. If you want to ensure no inbound connections are possible towards your WiFi device, use the &amp;quot;outboundonly&amp;quot;-login. &lt;br /&gt;
&lt;br /&gt;
In case you want to enable inbound connections towards your WiFi-device, use the &amp;quot;allowany&amp;quot;-login.&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
&lt;br /&gt;
=== Can I bring a server? ===&lt;br /&gt;
&lt;br /&gt;
Sure. You can host a server anywhere on the network, and the long DHCP lease time will effectively give you a static IP address.&lt;br /&gt;
&lt;br /&gt;
If you would like to house your server in our data centre (NOC-DC), please contact us before the event by e-mail to noc@. 1 Gbps copper ports are standard; if you require a 10 Gbps port, you'll need to supply a DAC or SFPs (our end Arista-coded) with fibre.&lt;br /&gt;
&lt;br /&gt;
=== Is there a server I can use to host data on site? ===&lt;br /&gt;
&lt;br /&gt;
Due to lack of demand at the last event, this will not be provided this time.&lt;br /&gt;
&lt;br /&gt;
=== Can I use the 2.4GHz band for non-wifi projects? ===&lt;br /&gt;
&lt;br /&gt;
The following channels are available for adhoc/mesh/other wireless stuff:&lt;br /&gt;
&lt;br /&gt;
* 2.4GHz: Channel 1 &lt;br /&gt;
* 5GHz: Channel 136, 140&lt;br /&gt;
&lt;br /&gt;
We cannot force you to use these channels, but we are trying to build a functional wireless network for the other attendees too. So please, don't do any experiments on other channels.&lt;br /&gt;
&lt;br /&gt;
=== Can I bring an access point? ===&lt;br /&gt;
&lt;br /&gt;
No, this is strictly prohibited! We need all available channels to provide good quality coverage for the rest of the attendees. Please do not be selfish here as you will degrade performance for everyone else, and we WILL track you down.&lt;br /&gt;
&lt;br /&gt;
If you think you can ignore this rule because one little access point can't hurt anyone, think again. This page has the calculations on just how huge a problem it is for an event of our size: [[Network/Rogue Access Points]].&lt;br /&gt;
&lt;br /&gt;
If you are operating a village (using an EMF-supplied tent) that has poor coverage, we may be able to arrange to put an extra access point in it during the event to improve coverage. Stop by the NOC and ask.&lt;br /&gt;
&lt;br /&gt;
=== Can I bring a switch? ===&lt;br /&gt;
&lt;br /&gt;
Yes, but for stability purposes all edge ports are limited to 10 MAC addresses at a time. If you want to connect a switch with more stations, you need to stop by the NOC and ask us to raise the port-security on your port. If you do this, you need to convince us that you know what you're doing and promise not to do anything that may harm the network - in particular, you must not connect the switch to our network by more than 1 cable (not even to a different DK). Make sure that you disable STP and other protocols on your switch which try to be intelligent.&lt;br /&gt;
&lt;br /&gt;
=== My port goes up and down every couple of minutes ===&lt;br /&gt;
&lt;br /&gt;
You have probably tripped port security. Most likely scenario is that you have connected more than 10 stations without consulting us (see answer to previous question). To reduce support calls, the port will automatically be re-enabled after a few minutes. But if you haven't fixed the problem, it will immediately be shut down again.&lt;br /&gt;
&lt;br /&gt;
== Supporters ==&lt;br /&gt;
&lt;br /&gt;
We'd like to extend our immense gratitude to the following people and organisations who have been instrumental in making the EMF network and uplink happen through their donations and sponsorship:&lt;br /&gt;
&lt;br /&gt;
* [https://ethernet.business.sky.com Sky For Business]&lt;br /&gt;
* [http://www.sargasso.co.uk/from/emfcamp Sargasso Networks]&lt;br /&gt;
* [https://eventinfra.org EventInfra]&lt;br /&gt;
* [https://www.lonap.net LONAP]&lt;br /&gt;
* [https://www.comtec.com Comtec Enterprises]&lt;br /&gt;
* [https://www.mythic-beasts.com/ Mythic Beasts]&lt;br /&gt;
* [https://www.i3d.net/ i3D.net]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1502</id>
		<title>Network/802.1X client settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1502"/>
		<updated>2022-05-31T23:38:57Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: /* Manually */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Android ==&lt;br /&gt;
=== App ===&lt;br /&gt;
You can use our Android App to configure the correct WiFi settings on your Android device. Download it here:&lt;br /&gt;
&lt;br /&gt;
* From Google Playstore: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup&lt;br /&gt;
* Source-code: https://github.com/EventInfra/wifisetup&lt;br /&gt;
* APK download: https://eventinfra.org/emfcamp/app-release.apk&lt;br /&gt;
&lt;br /&gt;
=== Manually ===&lt;br /&gt;
If you don't want to use the app, download the [https://letsencrypt.org/certs/isrgrootx1.pem ISRG Root X1], and [https://support.google.com/pixelphone/answer/2844832 install it] into your device's '''Wi-Fi certificate''' store, giving it any name you like. Then connect to the '''emfcamp''' network using the following information:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| EAP method || TTLS ''(not TLS)''&lt;br /&gt;
|-&lt;br /&gt;
| Phase 2 authentication || PAP&lt;br /&gt;
|-&lt;br /&gt;
| CA certificate || ''(whatever name you gave the ISRG Root X1)''&lt;br /&gt;
|-&lt;br /&gt;
| Domain || radius.emf.camp&lt;br /&gt;
|-&lt;br /&gt;
| Identity || emf&lt;br /&gt;
|-&lt;br /&gt;
| Password || emf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
It's fine to leave '''Online Certificate status''' as &amp;quot;Do not validate&amp;quot;, and leave the '''Anonymous identity''' blank.&lt;br /&gt;
&lt;br /&gt;
== Linux, etc. ==&lt;br /&gt;
=== Network Manager ===&lt;br /&gt;
You can use the following config file:&lt;br /&gt;
&lt;br /&gt;
Please note that some versions of NM are buggy and will only work with 802.1X using MSCHAPv2, or not at all. If that affects you, it may be easiest to use wpa_supplicant.&lt;br /&gt;
&lt;br /&gt;
/etc/NetworkManager/system-connections/emfcamp:&lt;br /&gt;
&lt;br /&gt;
Hint: chmod 600 this file to make the connection work.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;[connection]&lt;br /&gt;
id=emfcamp&lt;br /&gt;
uuid=c80101e2-7b99-4511-846b-2388eb86a5ad&lt;br /&gt;
type=wifi&lt;br /&gt;
permissions=&lt;br /&gt;
secondaries=&lt;br /&gt;
&lt;br /&gt;
[wifi]&lt;br /&gt;
mac-address=42:23:42:23:42:23 &amp;lt;- !! Please change this !!&lt;br /&gt;
mac-address-blacklist=&lt;br /&gt;
mode=infrastructure&lt;br /&gt;
seen-bssids=&lt;br /&gt;
ssid=emfcamp&lt;br /&gt;
&lt;br /&gt;
[wifi-security]&lt;br /&gt;
auth-alg=open&lt;br /&gt;
group=&lt;br /&gt;
key-mgmt=wpa-eap&lt;br /&gt;
pairwise=&lt;br /&gt;
proto=&lt;br /&gt;
&lt;br /&gt;
[802-1x]&lt;br /&gt;
altsubject-matches=DNS:radius.emf.camp&lt;br /&gt;
ca-cert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
eap=ttls;&lt;br /&gt;
identity=emf&lt;br /&gt;
password=emf&lt;br /&gt;
phase2-altsubject-matches=&lt;br /&gt;
phase2-auth=pap&lt;br /&gt;
&lt;br /&gt;
[ipv4]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&lt;br /&gt;
&lt;br /&gt;
[ipv6]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== WiCD ===&lt;br /&gt;
You need an additional crypto setting for WiCD. Put this file into /etc/wicd/encryption/templates/eap-ttls (debian systems, might be different with other *nix flavours):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 name = EAP-TTLS emfcamp&lt;br /&gt;
 author = Felicitus&lt;br /&gt;
 require identity *Identity password *password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
  ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
  scan_ssid=$_SCAN&lt;br /&gt;
  identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
  password=&amp;quot;emf&amp;quot;&lt;br /&gt;
  proto=WPA2&lt;br /&gt;
  key_mgmt=WPA-EAP&lt;br /&gt;
  group=CCMP&lt;br /&gt;
  pairwise=CCMP&lt;br /&gt;
  eap=TTLS&lt;br /&gt;
  ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
  altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
  anonymous_identity=&amp;quot;$_ANONYMOUS_IDENTITY&amp;quot;&lt;br /&gt;
  phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
  #priority=2&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Edit /etc/wicd/encryption/templates/active to include the eap-ttls config template. Restart the WiCD daemon, choose the proper encryption (EAP-TTLS emfcamp) and enter a random username/password.&lt;br /&gt;
&lt;br /&gt;
=== Jolla/connman ===&lt;br /&gt;
/var/lib/connman/emfcampwifi.config :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [service_emfcamp]&lt;br /&gt;
 Type=wifi&lt;br /&gt;
 Name=emfcamp-legacy&lt;br /&gt;
 EAP=ttls&lt;br /&gt;
 Phase2=PAP&lt;br /&gt;
 Identity=emf&lt;br /&gt;
 Passphrase=emf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== wpa_supplicant ===&lt;br /&gt;
This is the default option on Raspberry Pi OS.  Edit /etc/wpa_supplicant/wpa_supplicant.conf and add the network:&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
 	ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
 	key_mgmt=WPA-EAP&lt;br /&gt;
 	eap=TTLS&lt;br /&gt;
 	identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	password=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	# ca path on debian 7.x and raspberry pi OS, modify accordingly&lt;br /&gt;
 	ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
 	phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Interfaces ===&lt;br /&gt;
As an alternative, you can specify the wpa_supplicant config options directly in /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 iface wlan0 inet dhcp&lt;br /&gt;
 	wpa-ssid emfcamp&lt;br /&gt;
 	wpa-identity emf&lt;br /&gt;
 	wpa-password emf&lt;br /&gt;
 	wpa-proto WPA2&lt;br /&gt;
 	wpa-key_mgmt WPA-EAP&lt;br /&gt;
 	wpa-group CCMP&lt;br /&gt;
 	wpa-pairwise CCMP&lt;br /&gt;
 	wpa-eap TTLS&lt;br /&gt;
 	wpa-phase2 &amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 	wpa-ca_cert &amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	wpa-altsubject_match DNS:radius.emf.camp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Netctl ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Description='emfcamp secure WPA2 802.1X config'&lt;br /&gt;
Interface=wls1&lt;br /&gt;
Connection=wireless&lt;br /&gt;
Security=wpa-configsection&lt;br /&gt;
IP=dhcp&lt;br /&gt;
ESSID=emfcamp&lt;br /&gt;
WPAConfigSection=(&lt;br /&gt;
    'ssid=&amp;quot;emfcamp&amp;quot;'&lt;br /&gt;
    'proto=RSN WPA'&lt;br /&gt;
    'key_mgmt=WPA-EAP'&lt;br /&gt;
    'eap=TTLS'&lt;br /&gt;
    'identity=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'password=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;'&lt;br /&gt;
    'altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;'&lt;br /&gt;
    'phase2=&amp;quot;auth=PAP&amp;quot;'&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IWD ===&lt;br /&gt;
&amp;lt;pre&amp;gt;[Security]&lt;br /&gt;
EAP-Method=PEAP&lt;br /&gt;
EAP-Identity=anonymous@emfcamp&lt;br /&gt;
EAP-PEAP-CACert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
EAP-PEAP-ServerDomainMask=radius.emf.camp&lt;br /&gt;
EAP-PEAP-Phase2-Method=MSCHAPV2&lt;br /&gt;
EAP-PEAP-Phase2-Identity=emf&lt;br /&gt;
EAP-PEAP-Phase2-Password=emf&lt;br /&gt;
&lt;br /&gt;
[Settings]&lt;br /&gt;
AutoConnect=true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apple MacOS/iOS ==&lt;br /&gt;
You can use one of these profiles for the correct WiFi-settings for Apple MacOS / iOS:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.mobileconfig emfcamp] (2.4GHz+5GHz, emf user)&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
Import one of these profiles for the correct WiFi-settings for Windows:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.xml emfcamp] (2.4GHz+5GHz)&lt;br /&gt;
&lt;br /&gt;
To import and connect follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Open a command prompt and execute: netsh wlan add profile filename=emfcamp-2022.xml&lt;br /&gt;
# Connect to the emfcamp network; use &amp;quot;emf/emf&amp;quot; as the username/password when prompted. Alternatively, use &amp;quot;outboundonly/outboundonly&amp;quot; as the username/password to enable inbound traffic firewalling.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1501</id>
		<title>Network/802.1X client settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1501"/>
		<updated>2022-05-31T23:38:38Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: /* Manually */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Android ==&lt;br /&gt;
=== App ===&lt;br /&gt;
You can use our Android App to configure the correct WiFi settings on your Android device. Download it here:&lt;br /&gt;
&lt;br /&gt;
* From Google Playstore: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup&lt;br /&gt;
* Source-code: https://github.com/EventInfra/wifisetup&lt;br /&gt;
* APK download: https://eventinfra.org/emfcamp/app-release.apk&lt;br /&gt;
&lt;br /&gt;
=== Manually ===&lt;br /&gt;
If you don't want to use the app, download the [https://letsencrypt.org/certs/isrgrootx1.pem ISRG Root X1], and [https://support.google.com/pixelphone/answer/2844832 install it] into your device's '''Wi-Fi certificate''' store, giving it any name you like. Then connect to the '''emfcamp''' network using the following information:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| EAP method || TTLS ''(not TLS)''&lt;br /&gt;
|-&lt;br /&gt;
| Phase 2 authentication || PAP&lt;br /&gt;
|-&lt;br /&gt;
| CA certificate || ''(your name for the ISRG Root X1)''&lt;br /&gt;
|-&lt;br /&gt;
| Domain || radius.emf.camp&lt;br /&gt;
|-&lt;br /&gt;
| Identity || emf&lt;br /&gt;
|-&lt;br /&gt;
| Password || emf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
It's fine to leave '''Online Certificate status''' as &amp;quot;Do not validate&amp;quot;, and leave the '''Anonymous identity''' blank.&lt;br /&gt;
&lt;br /&gt;
== Linux, etc. ==&lt;br /&gt;
=== Network Manager ===&lt;br /&gt;
You can use the following config file:&lt;br /&gt;
&lt;br /&gt;
Please note that some versions of NM are buggy and will only work with 802.1X using MSCHAPv2, or not at all. If that affects you, it may be easiest to use wpa_supplicant.&lt;br /&gt;
&lt;br /&gt;
/etc/NetworkManager/system-connections/emfcamp:&lt;br /&gt;
&lt;br /&gt;
Hint: chmod 600 this file to make the connection work.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;[connection]&lt;br /&gt;
id=emfcamp&lt;br /&gt;
uuid=c80101e2-7b99-4511-846b-2388eb86a5ad&lt;br /&gt;
type=wifi&lt;br /&gt;
permissions=&lt;br /&gt;
secondaries=&lt;br /&gt;
&lt;br /&gt;
[wifi]&lt;br /&gt;
mac-address=42:23:42:23:42:23 &amp;lt;- !! Please change this !!&lt;br /&gt;
mac-address-blacklist=&lt;br /&gt;
mode=infrastructure&lt;br /&gt;
seen-bssids=&lt;br /&gt;
ssid=emfcamp&lt;br /&gt;
&lt;br /&gt;
[wifi-security]&lt;br /&gt;
auth-alg=open&lt;br /&gt;
group=&lt;br /&gt;
key-mgmt=wpa-eap&lt;br /&gt;
pairwise=&lt;br /&gt;
proto=&lt;br /&gt;
&lt;br /&gt;
[802-1x]&lt;br /&gt;
altsubject-matches=DNS:radius.emf.camp&lt;br /&gt;
ca-cert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
eap=ttls;&lt;br /&gt;
identity=emf&lt;br /&gt;
password=emf&lt;br /&gt;
phase2-altsubject-matches=&lt;br /&gt;
phase2-auth=pap&lt;br /&gt;
&lt;br /&gt;
[ipv4]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&lt;br /&gt;
&lt;br /&gt;
[ipv6]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== WiCD ===&lt;br /&gt;
You need an additional crypto setting for WiCD. Put this file into /etc/wicd/encryption/templates/eap-ttls (debian systems, might be different with other *nix flavours):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 name = EAP-TTLS emfcamp&lt;br /&gt;
 author = Felicitus&lt;br /&gt;
 require identity *Identity password *password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
  ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
  scan_ssid=$_SCAN&lt;br /&gt;
  identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
  password=&amp;quot;emf&amp;quot;&lt;br /&gt;
  proto=WPA2&lt;br /&gt;
  key_mgmt=WPA-EAP&lt;br /&gt;
  group=CCMP&lt;br /&gt;
  pairwise=CCMP&lt;br /&gt;
  eap=TTLS&lt;br /&gt;
  ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
  altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
  anonymous_identity=&amp;quot;$_ANONYMOUS_IDENTITY&amp;quot;&lt;br /&gt;
  phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
  #priority=2&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Edit /etc/wicd/encryption/templates/active to include the eap-ttls config template. Restart the WiCD daemon, choose the proper encryption (EAP-TTLS emfcamp) and enter a random username/password.&lt;br /&gt;
&lt;br /&gt;
=== Jolla/connman ===&lt;br /&gt;
/var/lib/connman/emfcampwifi.config :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [service_emfcamp]&lt;br /&gt;
 Type=wifi&lt;br /&gt;
 Name=emfcamp-legacy&lt;br /&gt;
 EAP=ttls&lt;br /&gt;
 Phase2=PAP&lt;br /&gt;
 Identity=emf&lt;br /&gt;
 Passphrase=emf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== wpa_supplicant ===&lt;br /&gt;
This is the default option on Raspberry Pi OS.  Edit /etc/wpa_supplicant/wpa_supplicant.conf and add the network:&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
 	ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
 	key_mgmt=WPA-EAP&lt;br /&gt;
 	eap=TTLS&lt;br /&gt;
 	identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	password=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	# ca path on debian 7.x and raspberry pi OS, modify accordingly&lt;br /&gt;
 	ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
 	phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Interfaces ===&lt;br /&gt;
As an alternative, you can specify the wpa_supplicant config options directly in /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 iface wlan0 inet dhcp&lt;br /&gt;
 	wpa-ssid emfcamp&lt;br /&gt;
 	wpa-identity emf&lt;br /&gt;
 	wpa-password emf&lt;br /&gt;
 	wpa-proto WPA2&lt;br /&gt;
 	wpa-key_mgmt WPA-EAP&lt;br /&gt;
 	wpa-group CCMP&lt;br /&gt;
 	wpa-pairwise CCMP&lt;br /&gt;
 	wpa-eap TTLS&lt;br /&gt;
 	wpa-phase2 &amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 	wpa-ca_cert &amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	wpa-altsubject_match DNS:radius.emf.camp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Netctl ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Description='emfcamp secure WPA2 802.1X config'&lt;br /&gt;
Interface=wls1&lt;br /&gt;
Connection=wireless&lt;br /&gt;
Security=wpa-configsection&lt;br /&gt;
IP=dhcp&lt;br /&gt;
ESSID=emfcamp&lt;br /&gt;
WPAConfigSection=(&lt;br /&gt;
    'ssid=&amp;quot;emfcamp&amp;quot;'&lt;br /&gt;
    'proto=RSN WPA'&lt;br /&gt;
    'key_mgmt=WPA-EAP'&lt;br /&gt;
    'eap=TTLS'&lt;br /&gt;
    'identity=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'password=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;'&lt;br /&gt;
    'altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;'&lt;br /&gt;
    'phase2=&amp;quot;auth=PAP&amp;quot;'&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IWD ===&lt;br /&gt;
&amp;lt;pre&amp;gt;[Security]&lt;br /&gt;
EAP-Method=PEAP&lt;br /&gt;
EAP-Identity=anonymous@emfcamp&lt;br /&gt;
EAP-PEAP-CACert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
EAP-PEAP-ServerDomainMask=radius.emf.camp&lt;br /&gt;
EAP-PEAP-Phase2-Method=MSCHAPV2&lt;br /&gt;
EAP-PEAP-Phase2-Identity=emf&lt;br /&gt;
EAP-PEAP-Phase2-Password=emf&lt;br /&gt;
&lt;br /&gt;
[Settings]&lt;br /&gt;
AutoConnect=true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apple MacOS/iOS ==&lt;br /&gt;
You can use one of these profiles for the correct WiFi-settings for Apple MacOS / iOS:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.mobileconfig emfcamp] (2.4GHz+5GHz, emf user)&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
Import one of these profiles for the correct WiFi-settings for Windows:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.xml emfcamp] (2.4GHz+5GHz)&lt;br /&gt;
&lt;br /&gt;
To import and connect follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Open a command prompt and execute: netsh wlan add profile filename=emfcamp-2022.xml&lt;br /&gt;
# Connect to the emfcamp network; use &amp;quot;emf/emf&amp;quot; as the username/password when prompted. Alternatively, use &amp;quot;outboundonly/outboundonly&amp;quot; as the username/password to enable inbound traffic firewalling.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1500</id>
		<title>Network/802.1X client settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1500"/>
		<updated>2022-05-31T23:38:04Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: More details on Android&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Android ==&lt;br /&gt;
=== App ===&lt;br /&gt;
You can use our Android App to configure the correct WiFi settings on your Android device. Download it here:&lt;br /&gt;
&lt;br /&gt;
* From Google Playstore: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup&lt;br /&gt;
* Source-code: https://github.com/EventInfra/wifisetup&lt;br /&gt;
* APK download: https://eventinfra.org/emfcamp/app-release.apk&lt;br /&gt;
&lt;br /&gt;
=== Manually ===&lt;br /&gt;
If you don't want to use the app, download the [https://letsencrypt.org/certs/isrgrootx1.pem ISRG Root X1], and [https://support.google.com/pixelphone/answer/2844832 install it] into your device's '''Wi-Fi certificate''' store, giving it any name you like. Then connect to the '''emfcamp''' network using the following information:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| EAP method || TTLS&lt;br /&gt;
|-&lt;br /&gt;
| Phase 2 authentication || PAP&lt;br /&gt;
|-&lt;br /&gt;
| CA certificate || ''(your name for the ISRG Root X1)''&lt;br /&gt;
|-&lt;br /&gt;
| Domain || radius.emf.camp&lt;br /&gt;
|-&lt;br /&gt;
| Identity || emf&lt;br /&gt;
|-&lt;br /&gt;
| Password || emf&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
It's fine to leave '''Online Certificate status''' as &amp;quot;Do not validate&amp;quot;, and leave the '''Anonymous identity''' blank.&lt;br /&gt;
&lt;br /&gt;
== Linux, etc. ==&lt;br /&gt;
=== Network Manager ===&lt;br /&gt;
You can use the following config file:&lt;br /&gt;
&lt;br /&gt;
Please note that some versions of NM are buggy and will only work with 802.1X using MSCHAPv2, or not at all. If that affects you, it may be easiest to use wpa_supplicant.&lt;br /&gt;
&lt;br /&gt;
/etc/NetworkManager/system-connections/emfcamp:&lt;br /&gt;
&lt;br /&gt;
Hint: chmod 600 this file to make the connection work.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;[connection]&lt;br /&gt;
id=emfcamp&lt;br /&gt;
uuid=c80101e2-7b99-4511-846b-2388eb86a5ad&lt;br /&gt;
type=wifi&lt;br /&gt;
permissions=&lt;br /&gt;
secondaries=&lt;br /&gt;
&lt;br /&gt;
[wifi]&lt;br /&gt;
mac-address=42:23:42:23:42:23 &amp;lt;- !! Please change this !!&lt;br /&gt;
mac-address-blacklist=&lt;br /&gt;
mode=infrastructure&lt;br /&gt;
seen-bssids=&lt;br /&gt;
ssid=emfcamp&lt;br /&gt;
&lt;br /&gt;
[wifi-security]&lt;br /&gt;
auth-alg=open&lt;br /&gt;
group=&lt;br /&gt;
key-mgmt=wpa-eap&lt;br /&gt;
pairwise=&lt;br /&gt;
proto=&lt;br /&gt;
&lt;br /&gt;
[802-1x]&lt;br /&gt;
altsubject-matches=DNS:radius.emf.camp&lt;br /&gt;
ca-cert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
eap=ttls;&lt;br /&gt;
identity=emf&lt;br /&gt;
password=emf&lt;br /&gt;
phase2-altsubject-matches=&lt;br /&gt;
phase2-auth=pap&lt;br /&gt;
&lt;br /&gt;
[ipv4]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&lt;br /&gt;
&lt;br /&gt;
[ipv6]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== WiCD ===&lt;br /&gt;
You need an additional crypto setting for WiCD. Put this file into /etc/wicd/encryption/templates/eap-ttls (debian systems, might be different with other *nix flavours):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 name = EAP-TTLS emfcamp&lt;br /&gt;
 author = Felicitus&lt;br /&gt;
 require identity *Identity password *password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
  ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
  scan_ssid=$_SCAN&lt;br /&gt;
  identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
  password=&amp;quot;emf&amp;quot;&lt;br /&gt;
  proto=WPA2&lt;br /&gt;
  key_mgmt=WPA-EAP&lt;br /&gt;
  group=CCMP&lt;br /&gt;
  pairwise=CCMP&lt;br /&gt;
  eap=TTLS&lt;br /&gt;
  ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
  altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
  anonymous_identity=&amp;quot;$_ANONYMOUS_IDENTITY&amp;quot;&lt;br /&gt;
  phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
  #priority=2&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Edit /etc/wicd/encryption/templates/active to include the eap-ttls config template. Restart the WiCD daemon, choose the proper encryption (EAP-TTLS emfcamp) and enter a random username/password.&lt;br /&gt;
&lt;br /&gt;
=== Jolla/connman ===&lt;br /&gt;
/var/lib/connman/emfcampwifi.config :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [service_emfcamp]&lt;br /&gt;
 Type=wifi&lt;br /&gt;
 Name=emfcamp-legacy&lt;br /&gt;
 EAP=ttls&lt;br /&gt;
 Phase2=PAP&lt;br /&gt;
 Identity=emf&lt;br /&gt;
 Passphrase=emf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== wpa_supplicant ===&lt;br /&gt;
This is the default option on Raspberry Pi OS.  Edit /etc/wpa_supplicant/wpa_supplicant.conf and add the network:&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
 	ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
 	key_mgmt=WPA-EAP&lt;br /&gt;
 	eap=TTLS&lt;br /&gt;
 	identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	password=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	# ca path on debian 7.x and raspberry pi OS, modify accordingly&lt;br /&gt;
 	ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
 	phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Interfaces ===&lt;br /&gt;
As an alternative, you can specify the wpa_supplicant config options directly in /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 iface wlan0 inet dhcp&lt;br /&gt;
 	wpa-ssid emfcamp&lt;br /&gt;
 	wpa-identity emf&lt;br /&gt;
 	wpa-password emf&lt;br /&gt;
 	wpa-proto WPA2&lt;br /&gt;
 	wpa-key_mgmt WPA-EAP&lt;br /&gt;
 	wpa-group CCMP&lt;br /&gt;
 	wpa-pairwise CCMP&lt;br /&gt;
 	wpa-eap TTLS&lt;br /&gt;
 	wpa-phase2 &amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 	wpa-ca_cert &amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	wpa-altsubject_match DNS:radius.emf.camp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Netctl ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Description='emfcamp secure WPA2 802.1X config'&lt;br /&gt;
Interface=wls1&lt;br /&gt;
Connection=wireless&lt;br /&gt;
Security=wpa-configsection&lt;br /&gt;
IP=dhcp&lt;br /&gt;
ESSID=emfcamp&lt;br /&gt;
WPAConfigSection=(&lt;br /&gt;
    'ssid=&amp;quot;emfcamp&amp;quot;'&lt;br /&gt;
    'proto=RSN WPA'&lt;br /&gt;
    'key_mgmt=WPA-EAP'&lt;br /&gt;
    'eap=TTLS'&lt;br /&gt;
    'identity=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'password=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;'&lt;br /&gt;
    'altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;'&lt;br /&gt;
    'phase2=&amp;quot;auth=PAP&amp;quot;'&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IWD ===&lt;br /&gt;
&amp;lt;pre&amp;gt;[Security]&lt;br /&gt;
EAP-Method=PEAP&lt;br /&gt;
EAP-Identity=anonymous@emfcamp&lt;br /&gt;
EAP-PEAP-CACert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
EAP-PEAP-ServerDomainMask=radius.emf.camp&lt;br /&gt;
EAP-PEAP-Phase2-Method=MSCHAPV2&lt;br /&gt;
EAP-PEAP-Phase2-Identity=emf&lt;br /&gt;
EAP-PEAP-Phase2-Password=emf&lt;br /&gt;
&lt;br /&gt;
[Settings]&lt;br /&gt;
AutoConnect=true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apple MacOS/iOS ==&lt;br /&gt;
You can use one of these profiles for the correct WiFi-settings for Apple MacOS / iOS:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.mobileconfig emfcamp] (2.4GHz+5GHz, emf user)&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
Import one of these profiles for the correct WiFi-settings for Windows:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.xml emfcamp] (2.4GHz+5GHz)&lt;br /&gt;
&lt;br /&gt;
To import and connect follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Open a command prompt and execute: netsh wlan add profile filename=emfcamp-2022.xml&lt;br /&gt;
# Connect to the emfcamp network; use &amp;quot;emf/emf&amp;quot; as the username/password when prompted. Alternatively, use &amp;quot;outboundonly/outboundonly&amp;quot; as the username/password to enable inbound traffic firewalling.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1420</id>
		<title>Network/802.1X client settings</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/802.1X_client_settings&amp;diff=1420"/>
		<updated>2022-05-31T15:16:01Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Instructions for people who don't trust apps&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Android ==&lt;br /&gt;
You can use our Android App to configure the correct WiFi settings on your Android device. Download it here:&lt;br /&gt;
&lt;br /&gt;
* From Google Playstore: https://play.google.com/store/apps/details?id=nl.eventinfra.wifisetup&lt;br /&gt;
* Source-code: https://github.com/EventInfra/wifisetup&lt;br /&gt;
* APK download: https://eventinfra.org/emfcamp/app-release.apk&lt;br /&gt;
&lt;br /&gt;
If you don't want to use the app, download and install the [https://letsencrypt.org/certs/isrgrootx1.pem ISRG X1 Root] into your device's '''Wi-Fi certificate''' store, and then connect using '''EAP-TTLS/PAP''' with the '''ISRG X1 Root''',  the domain '''radius.emf.camp''', identity '''emf''' and password '''emf'''.&lt;br /&gt;
&lt;br /&gt;
== Linux, etc. ==&lt;br /&gt;
=== Network Manager ===&lt;br /&gt;
You can use the following config file:&lt;br /&gt;
&lt;br /&gt;
Please note that some versions of NM are buggy and will only work with 802.1X using MSCHAPv2, or not at all. If that affects you, it may be easiest to use wpa_supplicant.&lt;br /&gt;
&lt;br /&gt;
/etc/NetworkManager/system-connections/emfcamp:&lt;br /&gt;
&lt;br /&gt;
Hint: chmod 600 this file to make the connection work.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;[connection]&lt;br /&gt;
id=emfcamp&lt;br /&gt;
uuid=c80101e2-7b99-4511-846b-2388eb86a5ad&lt;br /&gt;
type=wifi&lt;br /&gt;
permissions=&lt;br /&gt;
secondaries=&lt;br /&gt;
&lt;br /&gt;
[wifi]&lt;br /&gt;
mac-address=42:23:42:23:42:23 &amp;lt;- !! Please change this !!&lt;br /&gt;
mac-address-blacklist=&lt;br /&gt;
mode=infrastructure&lt;br /&gt;
seen-bssids=&lt;br /&gt;
ssid=emfcamp&lt;br /&gt;
&lt;br /&gt;
[wifi-security]&lt;br /&gt;
auth-alg=open&lt;br /&gt;
group=&lt;br /&gt;
key-mgmt=wpa-eap&lt;br /&gt;
pairwise=&lt;br /&gt;
proto=&lt;br /&gt;
&lt;br /&gt;
[802-1x]&lt;br /&gt;
altsubject-matches=DNS:radius.emf.camp&lt;br /&gt;
ca-cert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
eap=ttls;&lt;br /&gt;
identity=emf&lt;br /&gt;
password=emf&lt;br /&gt;
phase2-altsubject-matches=&lt;br /&gt;
phase2-auth=pap&lt;br /&gt;
&lt;br /&gt;
[ipv4]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&lt;br /&gt;
&lt;br /&gt;
[ipv6]&lt;br /&gt;
dns-search=&lt;br /&gt;
method=auto&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== WiCD ===&lt;br /&gt;
You need an additional crypto setting for WiCD. Put this file into /etc/wicd/encryption/templates/eap-ttls (debian systems, might be different with other *nix flavours):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 name = EAP-TTLS emfcamp&lt;br /&gt;
 author = Felicitus&lt;br /&gt;
 require identity *Identity password *password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
  ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
  scan_ssid=$_SCAN&lt;br /&gt;
  identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
  password=&amp;quot;emf&amp;quot;&lt;br /&gt;
  proto=WPA2&lt;br /&gt;
  key_mgmt=WPA-EAP&lt;br /&gt;
  group=CCMP&lt;br /&gt;
  pairwise=CCMP&lt;br /&gt;
  eap=TTLS&lt;br /&gt;
  ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
  altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
  anonymous_identity=&amp;quot;$_ANONYMOUS_IDENTITY&amp;quot;&lt;br /&gt;
  phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
  #priority=2&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Edit /etc/wicd/encryption/templates/active to include the eap-ttls config template. Restart the WiCD daemon, choose the proper encryption (EAP-TTLS emfcamp) and enter a random username/password.&lt;br /&gt;
&lt;br /&gt;
=== Jolla/connman ===&lt;br /&gt;
/var/lib/connman/emfcampwifi.config :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [service_emfcamp]&lt;br /&gt;
 Type=wifi&lt;br /&gt;
 Name=emfcamp-legacy&lt;br /&gt;
 EAP=ttls&lt;br /&gt;
 Phase2=PAP&lt;br /&gt;
 Identity=emf&lt;br /&gt;
 Passphrase=emf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== wpa_supplicant ===&lt;br /&gt;
This is the default option on Raspberry Pi OS.  Edit /etc/wpa_supplicant/wpa_supplicant.conf and add the network:&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
 	ssid=&amp;quot;emfcamp&amp;quot;&lt;br /&gt;
 	key_mgmt=WPA-EAP&lt;br /&gt;
 	eap=TTLS&lt;br /&gt;
 	identity=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	password=&amp;quot;emf&amp;quot;&lt;br /&gt;
 	# ca path on debian 7.x and raspberry pi OS, modify accordingly&lt;br /&gt;
 	ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;&lt;br /&gt;
 	phase2=&amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== Interfaces ===&lt;br /&gt;
As an alternative, you can specify the wpa_supplicant config options directly in /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 iface wlan0 inet dhcp&lt;br /&gt;
 	wpa-ssid emfcamp&lt;br /&gt;
 	wpa-identity emf&lt;br /&gt;
 	wpa-password emf&lt;br /&gt;
 	wpa-proto WPA2&lt;br /&gt;
 	wpa-key_mgmt WPA-EAP&lt;br /&gt;
 	wpa-group CCMP&lt;br /&gt;
 	wpa-pairwise CCMP&lt;br /&gt;
 	wpa-eap TTLS&lt;br /&gt;
 	wpa-phase2 &amp;quot;auth=PAP&amp;quot;&lt;br /&gt;
 	wpa-ca_cert &amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;&lt;br /&gt;
 	wpa-altsubject_match DNS:radius.emf.camp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Netctl ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Description='emfcamp secure WPA2 802.1X config'&lt;br /&gt;
Interface=wls1&lt;br /&gt;
Connection=wireless&lt;br /&gt;
Security=wpa-configsection&lt;br /&gt;
IP=dhcp&lt;br /&gt;
ESSID=emfcamp&lt;br /&gt;
WPAConfigSection=(&lt;br /&gt;
    'ssid=&amp;quot;emfcamp&amp;quot;'&lt;br /&gt;
    'proto=RSN WPA'&lt;br /&gt;
    'key_mgmt=WPA-EAP'&lt;br /&gt;
    'eap=TTLS'&lt;br /&gt;
    'identity=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'password=&amp;quot;emf&amp;quot;'&lt;br /&gt;
    'ca_cert=&amp;quot;/etc/ssl/certs/ISRG_Root_X1.pem&amp;quot;'&lt;br /&gt;
    'altsubject_match=&amp;quot;DNS:radius.emf.camp&amp;quot;'&lt;br /&gt;
    'phase2=&amp;quot;auth=PAP&amp;quot;'&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IWD ===&lt;br /&gt;
&amp;lt;pre&amp;gt;[Security]&lt;br /&gt;
EAP-Method=PEAP&lt;br /&gt;
EAP-Identity=anonymous@emfcamp&lt;br /&gt;
EAP-PEAP-CACert=/etc/ssl/certs/ISRG_Root_X1.pem&lt;br /&gt;
EAP-PEAP-ServerDomainMask=radius.emf.camp&lt;br /&gt;
EAP-PEAP-Phase2-Method=MSCHAPV2&lt;br /&gt;
EAP-PEAP-Phase2-Identity=emf&lt;br /&gt;
EAP-PEAP-Phase2-Password=emf&lt;br /&gt;
&lt;br /&gt;
[Settings]&lt;br /&gt;
AutoConnect=true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apple MacOS/iOS ==&lt;br /&gt;
You can use one of these profiles for the correct WiFi-settings for Apple MacOS / iOS:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.mobileconfig emfcamp] (2.4GHz+5GHz, emf user)&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
Import one of these profiles for the correct WiFi-settings for Windows:&lt;br /&gt;
&lt;br /&gt;
* [https://eventinfra.org/emfcamp/emfcamp-2022.xml emfcamp] (2.4GHz+5GHz)&lt;br /&gt;
&lt;br /&gt;
To import and connect follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Open a command prompt and execute: netsh wlan add profile filename=emfcamp-2022.xml&lt;br /&gt;
# Connect to the emfcamp network; use &amp;quot;emf/emf&amp;quot; as the username/password when prompted. Alternatively, use &amp;quot;outboundonly/outboundonly&amp;quot; as the username/password to enable inbound traffic firewalling.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=AMSAT-UK&amp;diff=151</id>
		<title>AMSAT-UK</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=AMSAT-UK&amp;diff=151"/>
		<updated>2022-02-27T17:53:11Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Village:AMSAT-UK]]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network/Rogue_Access_Points&amp;diff=35</id>
		<title>Network/Rogue Access Points</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network/Rogue_Access_Points&amp;diff=35"/>
		<updated>2022-01-16T00:43:38Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Policy =&lt;br /&gt;
&lt;br /&gt;
The Electromagnetic Field NOC operates a strict policy prohibiting the use of rogue access points.&lt;br /&gt;
&lt;br /&gt;
A rogue access point is defined as any device operating in the 2.4 GHz or 5 GHz spectrums, in any mode other than 802.11 client mode, that is operated by anyone other than the Electromagnetic Field NOC.&lt;br /&gt;
&lt;br /&gt;
This includes access points, phones running Wifi tethering, laptops in ad-hoc (peer to peer) mode, and any other device interfering with the 2.4 GHz or 5 GHz spectrum without approval from the NOC.&lt;br /&gt;
&lt;br /&gt;
Rogue access points are not a trivial affair, and we take the problem seriously. Every beacon transmitted consumes airtime '''significantly''' affects everyone around it. With 1,700 people densely packed and using an average of 2 wifi devices each, we cannot afford the loss of any airtime, let alone the enormous amount consumed by low data rate beacons.&lt;br /&gt;
&lt;br /&gt;
= How big is the problem really? =&lt;br /&gt;
&lt;br /&gt;
Substantial. And if you don't believe us, here are the calculations.&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
* Beacons are transmitted at the default interval of 102.4 milliseconds.&lt;br /&gt;
* Rogue AP beacons are (probably) transmitted at the lowest data rate (1 Mbps) and 802.11b long preamble is used.&lt;br /&gt;
* Beacons are 380 bytes without preamble.&lt;br /&gt;
* EMF NOC transmits 4 beacons for the 4 SSIDs we operate; 18 Mbps beacon-rate in 2.4GHz (802.11g) and 12 Mbps beacon-rate in 5GHz (802.11a).&lt;br /&gt;
* On average there will be 3 EMF APs within range on the same channel (at least on 2.4GHz).&lt;br /&gt;
* For mathematical simplicity, we assume that there are no collisions (this is unlikely, so this calculation is the ''best case'').&lt;br /&gt;
&lt;br /&gt;
Each beacon is transmitted every 102.4 milliseconds and is therefore transmitted 9.765625 times per second.&lt;br /&gt;
&lt;br /&gt;
Long preamble is 144 bits and the PLCP header is 64 bits.&lt;br /&gt;
Beacons of 380 bytes are 3040 further bits.&lt;br /&gt;
Total size of a beacon frame is therefore 3248 bits.&lt;br /&gt;
Each beacon is transmitted 9.765625 times per second so 31718.75 bits per second per beacon.&lt;br /&gt;
&lt;br /&gt;
EMF transmits 4 beacons and there are an average of 3 APs in range on each channel. So 380625 bps are consumed by EMF beacons. At beacon-rate of 1 Mbps, this consumes 380.625 ms per second. However, in 2.4GHz EMF uses a beacon-rate of 18 Mbps, so it will consume 21.15 ms per second.&lt;br /&gt;
&lt;br /&gt;
This means 97.89% of airtime is available for user data.&lt;br /&gt;
&lt;br /&gt;
A single rogue access point added to the above equation causes the following changes:&lt;br /&gt;
&lt;br /&gt;
An additional beacon of 3248 bits transmitted 9.765625 times per second.&lt;br /&gt;
Another 31718.75 bits per second at 1 Mbps is therefore consumed, so 31.71875 ms of airtime is used per second.&lt;br /&gt;
&lt;br /&gt;
The proportion airtime available for user data falls to 94.71%&lt;br /&gt;
&lt;br /&gt;
Compared to the rogue access point not being present, the available bandwidth drops to 94.71 / 97.89 = 96.75%&lt;br /&gt;
&lt;br /&gt;
The bottom line is obvious: '''every single rogue access point reduces the speed of everyone around it by about 4%'''.&lt;br /&gt;
&lt;br /&gt;
= I won't really be transmitting much data, it won't affect anyone =&lt;br /&gt;
&lt;br /&gt;
Irrelevant. It doesn't matter how much you use the rogue access point or even if you use it at all. Just having turned on means it's transmitting beacons and consuming airtime.&lt;br /&gt;
&lt;br /&gt;
= How about if I have a hidden SSID? =&lt;br /&gt;
&lt;br /&gt;
Irrelevant. You will still be transmitting beacons, the only difference is that the SSID field will be null. This is not a solution, it does not offer any improvement. Hidden SSIDs are not allowed. And we can find you just as easily with a hidden SSID, as you still transmit beacons.&lt;br /&gt;
&lt;br /&gt;
= I'm in a far-flung corner of the field, nobody will see it =&lt;br /&gt;
&lt;br /&gt;
Irrelevant. If any of our APs can see yours, they'll back off when they see your beacon and/or will collide with it and the airtime will still be wasted.&lt;br /&gt;
&lt;br /&gt;
= How about if I increase my beacon interval/rate? =&lt;br /&gt;
&lt;br /&gt;
Adjusting the beacon-interval would improve it somewhat, but not significantly. Increasing the beacon-rate does however improve it greatly. &lt;br /&gt;
&lt;br /&gt;
Still, rogue access points are not allowed, irrespective of the beacon interval or data rate. Besides, most consumer access points do not offer any ability to alter the beacon interval/rate.&lt;br /&gt;
&lt;br /&gt;
= How do you find rogue access points? =&lt;br /&gt;
&lt;br /&gt;
A proportion of our access points run in monitor mode, monitoring the air quality around them. When they detect an unauthorised beacon, they raise an alert, and triangulation between monitor APs give us an exact location to within a few metres.&lt;br /&gt;
&lt;br /&gt;
If there are not enough monitors in a location to triangulate, we fall back to a laptop and an antenna on a stick.&lt;br /&gt;
&lt;br /&gt;
Failing that, we will shut off power to your area until you come forward or a neighbour rats you out.&lt;br /&gt;
&lt;br /&gt;
= What will you do if you find a rogue access point? =&lt;br /&gt;
&lt;br /&gt;
First, '''please''' don't put us in this situation; it is unpleasant for all involved, and we'd rather spend our time enjoying the event than being authoritarian.&lt;br /&gt;
&lt;br /&gt;
In the first instance, we will inform you that running your own access point is not permitted and point you to this page to explain why. We hope that you will quickly turn it off and not argue.&lt;br /&gt;
&lt;br /&gt;
If you refuse to turn it off or we later find that it has been turned on again, we will employ sanctions up to and including ejecting you from the site in accordance with the [https://www.emfcamp.org/pay/terms terms and conditions] to which you agreed when purchasing a ticket.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Travel&amp;diff=34</id>
		<title>Travel</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Travel&amp;diff=34"/>
		<updated>2022-01-16T00:43:06Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Ms7821 moved page Travel to Location&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Location]]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Location&amp;diff=33</id>
		<title>Location</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Location&amp;diff=33"/>
		<updated>2022-01-16T00:43:06Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Ms7821 moved page Travel to Location&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Electromagnetic Field 2022 will be held at [[Location|Eastnor Castle Deer Park]], located just east of Ledbury, Herefordshire. This is same site that we used in 2018.&lt;br /&gt;
&lt;br /&gt;
== Public transport ==&lt;br /&gt;
&lt;br /&gt;
=== Train 🚂 ===&lt;br /&gt;
We are close to '''Ledbury''' station which is around [https://traintimes.org.uk/londonpaddington/ledbury/ three hours] direct from London Paddington (on [https://www.gwr.com/ GWR]) and [https://traintimes.org.uk/birminghamnewstreet/ledbury/ one hour] from Birmingham New Street (on [https://www.westmidlandsrailway.co.uk/ West Midlands Railway]). &lt;br /&gt;
&lt;br /&gt;
Trains are likely to be significantly cheaper is you book an Advance ticket (although these tickets can only be used on the exact train booked).&lt;br /&gt;
&lt;br /&gt;
=== Shuttle Bus 🚌===&lt;br /&gt;
&lt;br /&gt;
We will be running a free shuttle bus service between Ledbury station and the site. Details of this are still TBC.&lt;br /&gt;
&lt;br /&gt;
=== Air ✈️ ===&lt;br /&gt;
&lt;br /&gt;
The closest major airport is [https://en.wikipedia.org/wiki/Birmingham_Airport Birmingham ✈(BHX)], which is around [https://traintimes.org.uk/birminghaminternational/ledbury/ 1hr40] by train to Ledbury station; or an hour by road.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Bristol_Airport Bristol ✈(BRS)] and [https://en.wikipedia.org/wiki/Cardiff_Airport Cardiff ✈(CWL)] are around 1hr40 by road, but poorly connected by public transport.&lt;br /&gt;
&lt;br /&gt;
For those travelling long-haul, BHX is likely to be be most useful followed by LHR.&lt;br /&gt;
&lt;br /&gt;
== Driving 🚗 ==&lt;br /&gt;
&lt;br /&gt;
If you plan to drive, you will need to buy a parking ticket (£18) or campervan ticket (£45) available [https://www.emfcamp.org/tickets/other here]. Motorcycles do not require a parking ticket. In an attempt to reduce harmful emissions, please consider [[Location/Lift sharing|carpooling]] instead of utilising your own car. &lt;br /&gt;
&lt;br /&gt;
The site is around 13 mins drive from the M50 Junction 2.&lt;br /&gt;
&lt;br /&gt;
Plan your travel to the south gate (adjacent to A438) - postcode '''HR8 1RQ''' should get you there. The entrance to the site is '''52°01'56&amp;quot;N 2°23'01&amp;quot;W''' / '''OS Grid SO 738 372'''.&lt;br /&gt;
&lt;br /&gt;
Once you leave the motorway, follow the yellow AA signs to EMF, ignoring your sat nav which may try to take you through the town.&lt;br /&gt;
&lt;br /&gt;
Coming with an [[Power/Electric_Vehicles|⚡️ electric vehicle?]] Please add yourself to the [[Power/Electric_Vehicles| EV charging page.]]&lt;br /&gt;
&lt;br /&gt;
{{travel-map}}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=FAQ&amp;diff=32</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=FAQ&amp;diff=32"/>
		<updated>2022-01-16T00:42:36Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
==General==&lt;br /&gt;
&lt;br /&gt;
===Who are you?===&lt;br /&gt;
Electromagnetic Field is a non-profit event run entirely by a group of dedicated volunteers. EMF 2022 is the fifth major festival we've held in the UK, and a lot of us also help run other festivals in Germany and the Netherlands.&lt;br /&gt;
&lt;br /&gt;
===Can I help out?===&lt;br /&gt;
EMF is organised entirely by volunteers. The event's success relies on attendees helping out to the extent they are willing.&lt;br /&gt;
&lt;br /&gt;
More information on helping out during the event will appear on the [[Volunteering]] page in due course. If you are able to help plan and work before the event, check out the [[Teams]] page to see which teams need help.&lt;br /&gt;
&lt;br /&gt;
===How accessible is EMF?===&lt;br /&gt;
We take accessibility very seriously, and we want to let as many people experience the fun of EMF. However, it is ultimately an event in the field, and we can't work miracles with our limited budget.&lt;br /&gt;
&lt;br /&gt;
The site will be well-lit during the event, and we will aim to cover access to the stages with trackway. Travelling between stages may take some time. There will be accessible toilets and the current plan includes an accessible shower with a wheelchair ramp. We cannot guarantee 24/7 power, so it must not be relied on for medical needs, but the power infrastructure team will be on call through the night.&lt;br /&gt;
&lt;br /&gt;
If you will be attending with a carer, they are entitled to a free ticket. Please [mailto:tickets@emfcamp.org email us] once you've got your ticket so we can allocate your carer a ticket. Registered assistance dogs will be allowed. &lt;br /&gt;
&lt;br /&gt;
If you have any other accessibility concerns, please [mailto:accessibility@emfcamp.org drop us an email].&lt;br /&gt;
&lt;br /&gt;
===Is EMF family-friendly?===&lt;br /&gt;
Yes! We want EMF to be a great event for hackers of all ages.&lt;br /&gt;
&lt;br /&gt;
We will have free childcare provided by the award-winning [https://www.nipperbout.com/ Nipperbout], which was exceedingly well-received in 2014, 2016 and 2018. You don’t need to register in advance for childcare, just turn up. There will be a designated family camping area, and a whole track of events and workshops for young people.&lt;br /&gt;
&lt;br /&gt;
EMF has a comprehensive lost-child policy with DBS-checked staff available to help out.&lt;br /&gt;
&lt;br /&gt;
There are a number of things to bear in mind:&lt;br /&gt;
* Children under the age of 14 must be accompanied by an adult at all times.&lt;br /&gt;
* There will be dangerous things on site, but they will be clearly marked.&lt;br /&gt;
* Licensed alcohol sales are only for people of age 18 and over. Bar staff will ask for ID.&lt;br /&gt;
&lt;br /&gt;
===How old do you have to be to attend EMF by yourself?===&lt;br /&gt;
You need to be 16 or over on August 30th, 2018 to attend EMF without an adult.&lt;br /&gt;
&lt;br /&gt;
==Ticket Sales==&lt;br /&gt;
===What does the ticket price include?===&lt;br /&gt;
The ticket price includes admission to the event, admission to all of the talks, and most of the workshops. Some workshop organisers charge a fee in order to cover material costs, and places on most workshops will be limited.&lt;br /&gt;
&lt;br /&gt;
Your ticket also includes:&lt;br /&gt;
* Tent pitch&lt;br /&gt;
* Water&lt;br /&gt;
* Showers &amp;amp; Toilets&lt;br /&gt;
* [[Network|Fast internet]]&lt;br /&gt;
* Electricity&lt;br /&gt;
&lt;br /&gt;
===Can I bring a caravan/camper van?===&lt;br /&gt;
Yes, we will have a dedicated camper van area on site, within the main fence, with 16A power provided. You'll need to buy an additional camper van ticket.&lt;br /&gt;
&lt;br /&gt;
If you are coming with a caravan, parking for your towing car in the car park is included.&lt;br /&gt;
&lt;br /&gt;
Please try to arrive before midday on Friday and leave after midday on Monday to reduce traffic movements on site. If you're planning on leaving earlier, please let us know when you arrive so we can park you close to the exit.&lt;br /&gt;
&lt;br /&gt;
We unfortunately can't provide water hookups or drainage/emptying facilities. You will not be able to empty your tank during the event.&lt;br /&gt;
&lt;br /&gt;
===If I tow a caravan with a campervan, will I need a ticket for each?===&lt;br /&gt;
&lt;br /&gt;
Yes. &lt;br /&gt;
&lt;br /&gt;
(Somehow this is actually a frequently asked question!)&lt;br /&gt;
&lt;br /&gt;
===Do volunteers get a free ticket?===&lt;br /&gt;
Everyone who attends is expected to buy a ticket, including the founders and the core organisation team. So many people contribute to running EMF that it would be financially impossible to give everyone who helps out a free ticket, and unfair to draw a line past which volunteers receive free tickets.&lt;br /&gt;
&lt;br /&gt;
The sole exception to this rule are first aiders, who must be trained to the high standards of our first aid team, and are expected to carry out three eight-hour shifts in return for a free ticket.&lt;br /&gt;
&lt;br /&gt;
===The transaction reference you've provided isn't accepted by my bank!===&lt;br /&gt;
If you are having trouble entering the transaction reference into your online banking, just remove the hyphen. Some banks don't like it and don't tell you why.&lt;br /&gt;
&lt;br /&gt;
===Can I transfer tickets to someone else?===&lt;br /&gt;
&lt;br /&gt;
Yes - once you've bought a ticket you can transfer it to someone else by entering their email address on our site. We recommend you do this if you're buying tickets for other people, so that they can receive updates directly from us.&lt;br /&gt;
&lt;br /&gt;
We would kindly request that you don't sell tickets to other people for more than the price you paid for them.&lt;br /&gt;
&lt;br /&gt;
You can find people who may be interested in getting your ticket at [[Ticket_Exchange]].&lt;br /&gt;
&lt;br /&gt;
===Can I get a refund?===&lt;br /&gt;
&lt;br /&gt;
We may consider issuing refunds to those who can't attend if the event sells out. We will not issue refunds for any reason before then. (However, you can sell your ticket on to someone else - see above.)&lt;br /&gt;
&lt;br /&gt;
===Why do you sell tickets in such annoyingly small batches?===&lt;br /&gt;
&lt;br /&gt;
Because we don't want to take more of your money than necessary.&lt;br /&gt;
&lt;br /&gt;
EMF is a non-profit, and we aim to end the event with enough surplus to let us comfortably run the next event, but not too much more. The budget for EMF isn't solid until about six months prior to the event (especially when we've moved to a new site) but we need cash earlier in order to pay deposits to key suppliers. These secure important things like toilets, temporary structures, and the site itself.&lt;br /&gt;
&lt;br /&gt;
If we were to put all of our tickets on sale early, we would have to set ticket prices higher in order to make provision for potential budget changes. By selling smaller batches earlier, we ensure everyone's ticket is the best value, and that as many people as possible can have the chance to attend EMF.&lt;br /&gt;
&lt;br /&gt;
===Why have I received one barcoded ticket for x people?===&lt;br /&gt;
This is intended, when scanned on the gate the number of tickets used and unused for that barcode will be shown. For people arriving separately, you can either send them a copy of the PDF for use on the gate, or use the transfer tickets option (''preferred'') on the [https://www.emfcamp.org/account/purchases My Account] section of the website to transfer tickets to other people. Doing so will also allow them to receive EMF email communications and use website features that require authentication such as volunteering, customising your event schedule, or adding village/side events to the festival schedule.&lt;br /&gt;
&lt;br /&gt;
==Planning your Attendance==&lt;br /&gt;
===Where is it?===&lt;br /&gt;
The EMF site is Eastnor Castle Deer Park, located just east of Ledbury, Herefordshire. &lt;br /&gt;
&lt;br /&gt;
===How can I get there?===&lt;br /&gt;
See [[Travel]] for more details&lt;br /&gt;
&lt;br /&gt;
=== Can someone take me there? ===&lt;br /&gt;
&lt;br /&gt;
See the [[Travel#Carpooling]] section of the [[Travel]] page&lt;br /&gt;
&lt;br /&gt;
===When can I arrive? When do I have to leave by?===&lt;br /&gt;
The site will open to ticket holders on Thursday at 4pm. All ticket holders must leave the site by noon (12pm) on Monday. Talks and workshops won't start until after midday on the Friday so there's plenty of time to arrive on Friday morning.&lt;br /&gt;
&lt;br /&gt;
We will be there before and afterwards setting up and packing up. If you want to help with this, please let us know (by emailing [mailto:[email address removed] [email address removed]]) and we'll let you know when you can turn up. If we have not confirmed that we're expecting you before or after the event you will not be admitted to the site. '''Anyone arriving before Friday morning or staying beyond Monday afternoon will be expected to help with set-up and tear-down (both of which are mostly manual labour).''' Fewer facilities (eg, no food outlets) will be available on site prior to Friday.&lt;br /&gt;
&lt;br /&gt;
===Can I turn up early to help with Build Up?===&lt;br /&gt;
No you may not. We already have a full allocation for build up. Due to insurance reasons, and not having enough basic facilities and food, unless you are part of the main Orga team, or have been authorised by a Team Lead, you will be not be let into the site until Thursday 4pm.&lt;br /&gt;
&lt;br /&gt;
===When do things kick off?===&lt;br /&gt;
The talks and workshops will begin after lunch on Friday, although people will be setting up earlier in the day.&lt;br /&gt;
&lt;br /&gt;
Talks and workshops run daily through to the evening, although we expect villages will be doing things late into the night! The last talks will finish on Sunday evening by 9pm.&lt;br /&gt;
&lt;br /&gt;
===Can I camp in the campervan area?===&lt;br /&gt;
&lt;br /&gt;
No.&lt;br /&gt;
&lt;br /&gt;
People with campervans can pitch an awning or small tent beside their vehicle but to comply with fire and safety regulations we can't allow people to set up camp there. &lt;br /&gt;
&lt;br /&gt;
If you have friends in the campervan area we suggest you camp in areas G or F which are adjacent.&lt;br /&gt;
&lt;br /&gt;
===What's the mobile phone coverage like?===&lt;br /&gt;
&lt;br /&gt;
Mobile phone (a.k.a. cellphone) coverage is almost non-existent. Of all the carriers, Vodafone seems to be the best, with some signal in some areas - but with 2,500 more people on site there are no guarantees it will work at all.&lt;br /&gt;
&lt;br /&gt;
Basically, you should expect to have no reception across most of the site and most of the time.&lt;br /&gt;
&lt;br /&gt;
For data, that's no problem thanks to the [[Network|excellent WiFi]] across the site. If you need to be reachable by phone during the event, your best options are:&lt;br /&gt;
&lt;br /&gt;
* Use a SIP/VoIP app on your smartphone over the wifi.&lt;br /&gt;
* Bring a DECT phone to connect to the [[DECT|DECT network]]. There will hopefully be a way to get yourself an external phone number to your DECT phone or for outside callers to dial an extension number to reach you.&lt;br /&gt;
* Some networks, such as Three Mobile, support WiFi calling. This often requires activating in an area with mobile phone coverage, so it’s worth doing this before arriving.&lt;br /&gt;
&lt;br /&gt;
===Will there be a bar?===&lt;br /&gt;
Yes, we'll be running a volunteer-staffed licensed bar selling beer and wine, as well as soft drinks and the hacker energy drink Club Mate. Far from the usual crap festival beer, we will be serving real ale from local breweries with all profits going towards making the next iteration of Electromagnetic Field more awesome.&lt;br /&gt;
&lt;br /&gt;
The bar will be open 11am-2am Friday-Saturday, 11am-1am Sunday. Closing times may be earlier subject to demand and volunteer availability.&lt;br /&gt;
&lt;br /&gt;
===Can I bring pets?===&lt;br /&gt;
Sorry, animals (except registered assistance animals) are not allowed.&lt;br /&gt;
&lt;br /&gt;
===Can I smoke?===&lt;br /&gt;
Smoking (including vaping) is not allowed in any of the event tents or in the food/bar area. Elsewhere, please be considerate and very careful to extinguish your cigarettes to avoid setting the dry grass on fire. Please make sure cigarette butts are disposed of in rubbish bins rather than just thrown on the ground as the site is used by livestock at other times of the year, and it's a pain for the clean up crew to pick them up after the camp is over!&lt;br /&gt;
&lt;br /&gt;
===Can I bring X/Y/Z?===&lt;br /&gt;
tl;dr Probably&lt;br /&gt;
&lt;br /&gt;
Please let us know if it's going to be large/tall/use a lot of power/be noisy or anything else you think we should know. We don't want to stop people bringing the latest cool laser helmet for shark 3D printer arduino-powered UAV thing, but we need to plan for it.&lt;br /&gt;
&lt;br /&gt;
Things requiring special permission and may not be allowed: balloons, sky lanterns and the like.&lt;br /&gt;
&lt;br /&gt;
===Can I bring/fly my drone?===&lt;br /&gt;
Yes - lots of attendees will be bringing drones and there will be a dedicated UAV flying field. It is against UK law to fly drones over the campsite unless you hold permission from the UK Civil Aviation Authority. EMF will be enforcing this rule, and for safety we will not allow UAVs to be flown over the site without prior arrangement.&lt;br /&gt;
&lt;br /&gt;
===What power connectors will be available?===&lt;br /&gt;
Mostly 16A IEC309 ('Ceeform'/'Caravan') connectors although there will be some 13A UK sockets. See the [[Power|power page]] for more information.&lt;br /&gt;
&lt;br /&gt;
===What if I don't like camping?===&lt;br /&gt;
Whilst we'd strongly recommend camping (so much happens late into the evening and it's a lot more fun) we realise not everyone wants to. There are several hotels in Ledbury.&lt;br /&gt;
&lt;br /&gt;
===What food will be available?===&lt;br /&gt;
There will be several food vendors on site, and volunteers will receive an excellent meal good by our caterers for each volunteer shift they complete.&lt;br /&gt;
&lt;br /&gt;
===Do I need to bring cash?===&lt;br /&gt;
The bar will take cards, and offer cashback on purchases, but there will be no cashpoints on site. We don't know whether the food vendors will take cards, and some villages will also be running paid-for workshops where you shouldn't expect to be able to pay by card.&lt;br /&gt;
&lt;br /&gt;
===What are villages?===&lt;br /&gt;
[[Villages]] are areas of the campsite self-organised by attendees. The idea is that like-minded people get together, set up in an area of the campsite and enjoy each other's company. Villages are often set up around a topic or existing group (e.g. lock-picking or a hackspace). Some of them will run their own events parallel to the main schedule (for example last year one village hosted a weekend-long LAN party whilst another ran workshops on ring-making).&lt;br /&gt;
&lt;br /&gt;
If you want to find out more, or see which villages are already proposed see the [[Villages| villages page]]&lt;br /&gt;
&lt;br /&gt;
You don't need to join a village to attend.&lt;br /&gt;
&lt;br /&gt;
==At the Event==&lt;br /&gt;
===How do I connect to the wifi?===&lt;br /&gt;
Unless you know of a reason not to, you should connect to the emfcamp network if your device can see it, or emfcamp-legacy18 if not. You'll be prompted for a username and password - you can provide any value you like, but the following have special behaviour if you use them as both the username and password:&lt;br /&gt;
&lt;br /&gt;
'''emf''' - Assigns a public IP address to your device. This will make it accessible to any user on the internet, so please take extra care to ensure your firewall is active, and operating system is up to date.&lt;br /&gt;
&lt;br /&gt;
'''outboundonly''' - Allows only outbound traffic, similar to having your device on a typical coffee shop network. This will provide a bit of extra security, and potentially save battery life.&lt;br /&gt;
&lt;br /&gt;
'''internetofstuff''' - Allows inbound traffic, but only from the camp network. This is specifically intended for devices you'd like to share access to with attendees, but don't want exposed to the internet at large.&lt;br /&gt;
&lt;br /&gt;
If you're unable to connect to either emfcamp or emfcamp-leagcy18, or have other interesting requirements, see [[https://wiki.emfcamp.org/wiki/Network#Wireless this page]] for further details.&lt;br /&gt;
&lt;br /&gt;
===Can I attach a hammock, slackline, or other things, to the trees?===&lt;br /&gt;
Nope. The site owners are very protective about them and have specified that we don't attach anything to them.&lt;br /&gt;
&lt;br /&gt;
===Can I light a fire or BBQ?===&lt;br /&gt;
Yes as long as its contained and raised off of the ground so that the grass/ground arent burnt/scorched etc.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=IRC&amp;diff=31</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=IRC&amp;diff=31"/>
		<updated>2022-01-16T00:38:07Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==IRC==&lt;br /&gt;
We use [http://en.wikipedia.org/wiki/IRC IRC] as a location to meet, discuss and organise the event. Feel free to join the discussion or idle and watch EMF being created!&lt;br /&gt;
&lt;br /&gt;
Server: &amp;lt;tt&amp;gt;irc.libera.chat&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Channel: &amp;lt;tt&amp;gt;#emfcamp&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Connecting to Libera === &lt;br /&gt;
&lt;br /&gt;
Either:&lt;br /&gt;
* Use your own IRC client to connect to the server &amp;lt;tt&amp;gt;irc.libera.chat&amp;lt;/tt&amp;gt; on port 6667 (non-SSL) or 6697 (SSL, recommended)&lt;br /&gt;
https://libera.chat/&lt;br /&gt;
* Use Libera's [https://web.libera.chat/#emfcamp Webbased IRC client]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=TODO&amp;diff=30</id>
		<title>TODO</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=TODO&amp;diff=30"/>
		<updated>2022-01-16T00:34:53Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Add 2020 archive link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is still lots of information that needs to be added to this wiki so that it contains all the information that anyone who has never been to Electromagnetic Field before may need. If you have been to a previous event, you will almost certainly know some of the information that needs filling in: this page contains a (incomplete) list of stuff that needs adding. If you have not been to a previous event, please feel free to use this page to request information that you can't find.&lt;br /&gt;
&lt;br /&gt;
You may find the [https://wiki-archive.emfcamp.org/2018 2018] or [https://wiki-archive.emfcamp.org/2020 2020 wiki archive] useful to copy/paste information over from and update.&lt;br /&gt;
&lt;br /&gt;
== Information that needs adding ==&lt;br /&gt;
If you find any red links on the wiki, please add them here.&lt;br /&gt;
* [[Template:Travel-map]]&lt;br /&gt;
* Pictures: nice (and free to use with/without attribution) pictures of previous events that can be used to illustrate pages.&lt;br /&gt;
* Merge the info from [[FAQ]] into the relevant pages&lt;br /&gt;
* More can be added to [[Good Village Guide]]&lt;br /&gt;
* [ADD ITEMS HERE]&lt;br /&gt;
&lt;br /&gt;
== Wiki feature ideas ==&lt;br /&gt;
If you have an idea for a feature for this wiki, post it below. Use four tildes to sign your name at the end of comments&lt;br /&gt;
* [ADD IDEAS HERE]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=TODO&amp;diff=29</id>
		<title>TODO</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=TODO&amp;diff=29"/>
		<updated>2022-01-16T00:33:57Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is still lots of information that needs to be added to this wiki so that it contains all the information that anyone who has never been to Electromagnetic Field before may need. If you have been to a previous event, you will almost certainly know some of the information that needs filling in: this page contains a (incomplete) list of stuff that needs adding. If you have not been to a previous event, please feel free to use this page to request information that you can't find.&lt;br /&gt;
&lt;br /&gt;
You may find the [https://wiki-archive.emfcamp.org/2018 2018 wiki archive] useful to copy/paste information over from and update.&lt;br /&gt;
&lt;br /&gt;
== Information that needs adding ==&lt;br /&gt;
If you find any red links on the wiki, please add them here.&lt;br /&gt;
* [[Template:Travel-map]]&lt;br /&gt;
* Pictures: nice (and free to use with/without attribution) pictures of previous events that can be used to illustrate pages.&lt;br /&gt;
* Merge the info from [[FAQ]] into the relevant pages&lt;br /&gt;
* More can be added to [[Good Village Guide]]&lt;br /&gt;
* [ADD ITEMS HERE]&lt;br /&gt;
&lt;br /&gt;
== Wiki feature ideas ==&lt;br /&gt;
If you have an idea for a feature for this wiki, post it below. Use four tildes to sign your name at the end of comments&lt;br /&gt;
* [ADD IDEAS HERE]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Contact&amp;diff=28</id>
		<title>Contact</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Contact&amp;diff=28"/>
		<updated>2022-01-16T00:33:10Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Email ==&lt;br /&gt;
For general questions or if you're not sure which team is most appropriate, please email:&lt;br /&gt;
* [mailto:contact@emfcamp.org contact@emfcamp.org]&lt;br /&gt;
&lt;br /&gt;
If you can, please email the specific team for your inquiry. This will ensure emails are dealt with as promptly as possible:&lt;br /&gt;
&lt;br /&gt;
* [mailto:content@emfcamp.org Content] for talks, workshops and installations&lt;br /&gt;
* [mailto:volunteers@emfcamp.org Volunteering] including first aid.&lt;br /&gt;
* [mailto:sponsors@emfcamp.org Sponsorship]&lt;br /&gt;
* [mailto:vendors@emfcamp.org Food/drink vendors]&lt;br /&gt;
* [mailto:villages@emfcamp.org Village Team] for enquries about villages&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
We can also be reached at the following locations:&lt;br /&gt;
&lt;br /&gt;
* [[IRC]]&lt;br /&gt;
* [https://www.twitter.com/emfcamp Twitter]&lt;br /&gt;
* [https://www.facebook.com/emfcamp Facebook]&lt;br /&gt;
&lt;br /&gt;
If you have an informal question, and you're not in a rush, pop onto [[IRC]]. A good number of people idle there, so you'll probably find it best to ask your question and be prepared to wait around for a few minutes for an answer.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Teams&amp;diff=27</id>
		<title>Teams</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Teams&amp;diff=27"/>
		<updated>2022-01-16T00:32:55Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For more information on how EMF is run, and the duties of team leaders, see the [[Organisation]] page.&lt;br /&gt;
&lt;br /&gt;
==Teams currently looking for volunteers==&lt;br /&gt;
{{#ask: [[Category:Teams needing volunteers]]&lt;br /&gt;
|format=ul&lt;br /&gt;
|limit=1500&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''If you're interested in getting involved with a team, please get in touch on [[IRC]], or email [mailto:contact@emfcamp.org contact@emfcamp.org].'''&lt;br /&gt;
&lt;br /&gt;
==Full list of teams==&lt;br /&gt;
&lt;br /&gt;
{{#ask: [[Category:Teams]]&lt;br /&gt;
| mainlabel=Team&lt;br /&gt;
| ?TeamDesc=Description&lt;br /&gt;
| ?TeamLead=Lead&lt;br /&gt;
| ?TeamDeputy=Deputy&lt;br /&gt;
|limit=1500&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Interests&amp;diff=26</id>
		<title>Interests</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Interests&amp;diff=26"/>
		<updated>2022-01-16T00:32:07Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
The villages and attendees on this wiki are categorised by their interests.&lt;br /&gt;
&lt;br /&gt;
== Add an interest ==&lt;br /&gt;
&lt;br /&gt;
To add an interest, enter its name below.&lt;br /&gt;
&lt;br /&gt;
{{#forminput:form=Interest|query string=namespace=Interest|button text=Add interest}}&lt;br /&gt;
&lt;br /&gt;
== List of Interests==&lt;br /&gt;
&lt;br /&gt;
{{#ask: [[Category:Interests]]&lt;br /&gt;
| mainlabel = &lt;br /&gt;
|format=ul&lt;br /&gt;
|limit=1500&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Network&amp;diff=25</id>
		<title>Network</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Network&amp;diff=25"/>
		<updated>2022-01-16T00:31:51Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Wireless ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Network Name (SSID)&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emfcamp&amp;lt;/dd&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Username&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emf&amp;lt;/dd&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Password&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;emf&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The whole field has been covered with many wireless access points to ensure the best possible coverage and to allow you to roam seamlessly without interruption. Please note that your device will be reachable by anyone on the internet, please take suitable precautions such as turning on a firewall, and making sure your software is up to date.&lt;br /&gt;
&lt;br /&gt;
You should not bring your own wireless access point, its unlikely to provide better service than the camp ones, and it makes the network worse for everyone else. Any rogue access points will be hunted down and disconnected from the network - see [[Network/Rogue_Access_Points]] if you want to know why. If you have a project that needs to provide its own AP for some reason please contact the NOC.&lt;br /&gt;
&lt;br /&gt;
== Wired Ethernet ==&lt;br /&gt;
&lt;br /&gt;
All camping areas are within 60m of a datenklo (or data toilet), where you can connect to the network. If you intend to do so please bring 60-70m of CAT5 cable as we are unable to provide any.&lt;br /&gt;
&lt;br /&gt;
Lay your own cable neatly from your tent back to the nearest Datenklo, and leave 6m of slack coiled on the floor in front of it. And please lay it so that it can be clearly seen that it needs to be plugged in - or you risk having your cable overlooked. At regular intervals a member of the NOC team will connect it up and enable the port.&lt;br /&gt;
&lt;br /&gt;
Note that most of our ports will not support 10 Mbps - if you need it for old equipment or embedded things, please bring your own switch to convert.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Power/Electric_Vehicles&amp;diff=24</id>
		<title>Power/Electric Vehicles</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Power/Electric_Vehicles&amp;diff=24"/>
		<updated>2022-01-16T00:31:28Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;List your username, and cars make and model, and supported connector types...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Username !! Car make &amp;amp; model !! Supported charging connectors&lt;br /&gt;
|-&lt;br /&gt;
| name || car || connectors&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Location/Lift_sharing&amp;diff=23</id>
		<title>Location/Lift sharing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Location/Lift_sharing&amp;diff=23"/>
		<updated>2022-01-16T00:30:13Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As always, EMF is looking to reduce its carbon footprint by encouraging attendees to carpool. &lt;br /&gt;
&lt;br /&gt;
Feel free to add your name to either table below. &lt;br /&gt;
&lt;br /&gt;
= Offering Lifts =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Location&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Name&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Arriving&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Leaving&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| Birmingham&lt;br /&gt;
| Dave Example&lt;br /&gt;
| Friday evening&lt;br /&gt;
| Sunday evening&lt;br /&gt;
| I'm an example, copy me!&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Looking for a Lift =&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Location&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Name&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Arriving&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Leaving&lt;br /&gt;
! style=&amp;quot;font-weight:bold;&amp;quot; | Notes&lt;br /&gt;
|-&lt;br /&gt;
| Birmingham&lt;br /&gt;
| John Example&lt;br /&gt;
| From Thursday 2nd&lt;br /&gt;
| I would really like to be home by Sunday evening&lt;br /&gt;
| I'm an example, copy me, contact me by email at john(at)example.com&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Good_Village_Guide&amp;diff=22</id>
		<title>Good Village Guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Good_Village_Guide&amp;diff=22"/>
		<updated>2022-01-16T00:28:52Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Information Coordination ==&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Help:Starting_a_new_page#From_the_search_box Make a page on the wiki] and ensure it is in the villages category using this tag at the bottom: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;[[Category:Villages]]&amp;lt;/nowiki&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Please note that having a wiki page doesn't guarantee you a space - be sure to [https://www.emfcamp.org/villages/register register] on the website to be included in our mapping.&lt;br /&gt;
&lt;br /&gt;
==What should we bring?==&lt;br /&gt;
&lt;br /&gt;
=== Cooking Equipment &amp;amp; Food ===&lt;br /&gt;
&lt;br /&gt;
While EMF provides a great set of food vendors, it may be easier or cheaper for you to get together and cook. Some villages cook for upwards of 100 people each meal, but there’s no reason it can’t just be 5 people.&lt;br /&gt;
Think about the things you’ll need -  a stove, pots &amp;amp; pans, plates/bowls, cutlery and food.&lt;br /&gt;
We’d really appreciate it if you brought reusable plates and cutlery, and low-packaging food. This helps reduce our waste footprint and helps the environment.&lt;br /&gt;
&lt;br /&gt;
Learn more about onsite food [[Food|here]]&lt;br /&gt;
&lt;br /&gt;
== Public/Shared Area ==&lt;br /&gt;
&lt;br /&gt;
You will want somewhere to work together, to show off your toys, to run workshops and more. What you’ll need is a ‘village square’. This can be a few tables and chairs, all the way up to a geodesic dome! &lt;br /&gt;
&lt;br /&gt;
With the unreliability of British weather, we recommend that this area is covered - it can get really sunny and really wet at our site. We’d rather neither you were sunburned nor your laptop flooded.&lt;br /&gt;
&lt;br /&gt;
The village team would really appreciate it if you planned this ahead of the event and could tell us the area in m2, so we can layout the site and get you the best location possible! &lt;br /&gt;
&lt;br /&gt;
EMF are happy for you to bring your own tents and furniture for being social in and cooking in, but you can also rent them for us for the event. We ask that you remove all tents and furniture that you’ve brought at the end of the event - it’s not fair on our volunteers to have to tidy them up, and it’s also bad for the environment.&lt;br /&gt;
&lt;br /&gt;
== What makes a good neighbour? ==&lt;br /&gt;
&lt;br /&gt;
A good neighbour works with those around them so everyone has the best possible event. This includes understanding the area you are camping in and compromising with those nearby! We have both quiet and noisy camping areas. If you intend to have friends over working, partying and enjoying each other’s company until the wee hours, we’d ask that you place yourself in the noisy area. &lt;br /&gt;
&lt;br /&gt;
It’s great if you can share with your neighbours too - maybe you want to group 3-4 villages together into a common theme, and share resources. This could be cooking, hardware or other items. You can get in touch with your neighbours ahead of the event and see if they want to do anything with you - it could be a shared event, or helping with their cooking in exchange for food!&lt;br /&gt;
&lt;br /&gt;
[[Villages|Back to Villages]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Villages]]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=File:Maths-village.jpg&amp;diff=21</id>
		<title>File:Maths-village.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=File:Maths-village.jpg&amp;diff=21"/>
		<updated>2022-01-16T00:28:17Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Villages&amp;diff=20</id>
		<title>Villages</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Villages&amp;diff=20"/>
		<updated>2022-01-16T00:27:31Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
The camping areas at EMF contain a number of villages.&lt;br /&gt;
&lt;br /&gt;
== What is a Village? ==&lt;br /&gt;
A village is a group of friends, like minded people, colleagues or even families. Maybe your village is a collection of sub villages, or maybe it’s just your hackerspace. We also see villages based around themes, shared passions and existing communities - great places in the past have been the Maths village, the HAB Village and groups like Milliways and the Scottish Consulate.&lt;br /&gt;
&lt;br /&gt;
If there is a village based around something you are interested in, then you should definitely visit that village during the event to see what's going on. Or you could even join that village to help make more things go on. If there's not a village based around your interests, then you can start your own village and others will probably join you.&lt;br /&gt;
&lt;br /&gt;
There is no requirement to be part of a village, so if you'd rather camp on your own and just visit some villages this is fine.&lt;br /&gt;
&lt;br /&gt;
If you're planning to bring something especially big or in need of lots of power to your village, please [[Contact|let us know beforehand]] so we can provide you with what you need.&lt;br /&gt;
&lt;br /&gt;
== What can we do as a Village? ==&lt;br /&gt;
[[File:maths-village.jpg|thumb|right|Making intersecting tetrahedra at the Maths Village in 2018]]&lt;br /&gt;
Villages are great as you can share ideas, equipment and space! The sharing doesn’t stop there - it lets you share resources too. You can come up with a cooking and cleaning rota as a group to reduce waste, make the camp cheaper and interrupt your day with a change of activity. Some people spend all their time cooking for others!&lt;br /&gt;
&lt;br /&gt;
Maybe you are working on a group project and want to show off the final result, or you want to spend the weekend building something. Doing this as a village is good fun, and you often find that new friends will appear to share their ideas, opinions and time with you.&lt;br /&gt;
&lt;br /&gt;
Some villages bring pre-made games and activities for other people to take part in, and some run events and parties during the weekend!&lt;br /&gt;
&lt;br /&gt;
If you have a good space, you could run a workshop, a series of lectures or even your own mini-conference, entirely separate from our main program! Some of our favourites from previous years include: &lt;br /&gt;
* [https://wiki-archive.emfcamp.org/2018/w/index.php/Village:Goldsmithing Ring Making Workshop]&lt;br /&gt;
* [https://wiki-archive.emfcamp.org/2018/w/index.php/Village:ObscureCon Obscurecon]&lt;br /&gt;
* [https://wiki-archive.emfcamp.org/2018/w/index.php/Village:Hardware_Hacking_Area Hardware Hacking Village] &lt;br /&gt;
* Personal Introduction to FPGA programming&lt;br /&gt;
* [https://wiki-archive.emfcamp.org/2018/w/index.php/Village:HABville Launching High Altitude Balloons]&lt;br /&gt;
&lt;br /&gt;
=== We're here to help ===&lt;br /&gt;
&lt;br /&gt;
You're welcome to run events in your village.  If you have a cool idea, but need help with planning or logistics of doing things on site, please contact us before hand.  The earlier you let us know your plans, the better we can help you.  &lt;br /&gt;
&lt;br /&gt;
There is also limited funding available for villages that want to put on content.  Please [mailto:villages@emfcamp.org Email the Village People] and we will be very happy to discuss anything you might come up with!&lt;br /&gt;
&lt;br /&gt;
Some areas we’d love to expand are:  &lt;br /&gt;
* Technical presentations&lt;br /&gt;
* Skill shares&lt;br /&gt;
* Workshops&lt;br /&gt;
* Roundtables&lt;br /&gt;
&lt;br /&gt;
== Register a Village ==&lt;br /&gt;
&lt;br /&gt;
Sign up with the [https://www.emfcamp.org/villages/register village registration form] on the main website!&lt;br /&gt;
&lt;br /&gt;
The details you input won't be final - the form can be edited in future - if you're struggling for details, please input speculative numbers and refine them later once ticket sales are closed, or once you've discussed it with us.&lt;br /&gt;
&lt;br /&gt;
You can see [https://www.emfcamp.org/villages/2022 Registered Villages] on the main website.&lt;br /&gt;
&lt;br /&gt;
The Village People plan to be more involved in the placing and layout of villages this year to minimise collisions and disagreements!&lt;br /&gt;
&lt;br /&gt;
We'd very much appreciate it if you could think ahead of time and consider these things the registration form asks:&lt;br /&gt;
&lt;br /&gt;
* The area your village will need in m², and provide us a realistic estimate so we can place you!&lt;br /&gt;
** The number of attendees will influence area&lt;br /&gt;
** If your attendees intend to camp at your village or away from it will influence area&lt;br /&gt;
** Structures you plan to bring will impact how big your village is - tell us their area!&lt;br /&gt;
* If you want to run your own events / stage / workshops&lt;br /&gt;
* If you will be noisy or quiet, and what hours you'll be loud at so we can place you in quiet/noisy areas&lt;br /&gt;
* If you want to do anything spectacular or out the ordinary - just get in touch and we can make it happen&lt;br /&gt;
&lt;br /&gt;
== Being a Good Village ==&lt;br /&gt;
&lt;br /&gt;
We're compiling a guide of what makes a good village, based on our past experience! &lt;br /&gt;
&lt;br /&gt;
If you want to help, add some useful advice to the [[Good Village Guide]]!&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=What_to_bring&amp;diff=19</id>
		<title>What to bring</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=What_to_bring&amp;diff=19"/>
		<updated>2022-01-16T00:26:47Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is an incomplete list and only a suggestion!&lt;br /&gt;
&lt;br /&gt;
== Vital stuff ==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| align=right |⛺|| Tent (or space in someone else's)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🛌|| Bedding - a sleeping bag and a pillow, plus extra blankets in case it is cold&lt;br /&gt;
|-&lt;br /&gt;
| align=right |👚|| Clean clothes&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🚿|| A towel (we have showers!)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🚿|| Shower gel, shampoo, soap, toothbrush, etc.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔦|| Torch and extra batteries. The site will be well lit but there will be darker bits (e.g. inside your tent)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🥑|| Food and/or money for food (the bar will do cashback if you need more money)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |👢|| Walking boots or wellies (the site is a field, good shoes are a must)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🧥|| Waterproofs. This is the UK: we do wet.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |👕|| Warm clothing, for evenings and sleeping in if it gets cold&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🎒|| Rucksack (or similar) for carrying valuables about with you (tents are NOT secure &amp;amp; we cannot guarantee things will be safe anywhere on site)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |💊|| Medicines, hayfever tablets (you will be surrounded by hay bales all day)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🌞|| Sun cream and/or a sun hat&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🎟️|| Your EMF ticket (printed or saved on your phone - these will be issued shortly before the event)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Useful things to bring ==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔌|| A 20-30m power lead. If you can, a 16A plug on the end is useful.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔌|| A long (as long as the power lead) ethernet cable to connect your tent (although we have WiFi as well).&lt;br /&gt;
|-&lt;br /&gt;
| align=right |💻|| Computer, both for personal use and many of our workshops will use them&lt;br /&gt;
|-&lt;br /&gt;
| align=right |📱|| A DECT phone to make and receive phone call via the local DECT network&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔌|| Charging gear (for phones, laptops etc.)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🇪🇺|| Europe to UK plug adaptors (if you have non-UK equipment)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔨|| Making gear (for any/all of your hobbies)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |☕|| A water bottle and/or mug, useful for food &amp;amp; drink (when not got from vendors)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |📼|| Tape, gaffer, LX, what ever, always useful for fixing things wot break (like tents)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🖊️|| Pen and paper&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🚮|| Bin bags (for rubbish and dirty clothes)&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔥|| A few gold and silver space blankets and clothes pins to cover your tent and prevent it from turning into an oven in the morning sun&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Advice for villages/large groups ==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| align=right |☕|| A small camping kettle may come in handy (larger kettles require care). We have food and drink vendors on site.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🍳|| A camping stove shouldn't be needed, but will be permitted as long as it's off the ground.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🖥️|| A network switch may reduce the amount of network cabling required, but please inform [[Network|the NOC]] if you need to connect more than 10 devices. Wireless access points are not allowed at all.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🖥️|| The switches in the DKs won't work at 10Mbps, so if you need 10baseT connectivity (e.g. for old or embedded things) please bring a switch.&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🥛|| A mini fridge may be useful for storing milk.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Things to avoid if possible ==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🍾|| Glass bottles: broken glass is a pain to clean up.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🔥|| Being on fire.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| align=right |🛋️|| Repeatedly jumping on a pile of bean bags in the lounge: bean bag balls are a pain to clean up.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Food&amp;diff=18</id>
		<title>Food</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Food&amp;diff=18"/>
		<updated>2022-01-16T00:26:24Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Eating On Site ==&lt;br /&gt;
&lt;br /&gt;
There will be food vendors on site throughout the event, although we don't yet know which ones specifically will be present, and the Robot Arms will be serving a wide range of drinks. Volunteering is rewarded with free food from our catering crew.&lt;br /&gt;
&lt;br /&gt;
== Bringing Your Own Food ==&lt;br /&gt;
&lt;br /&gt;
You're welcome to bring your own food and drink, but please keep in mind that all open flames must be elevated off the grass. If you need to resupply there is a [https://www.google.com/maps/place/Tesco+Superstore/@52.0412141,-2.4282916,17z/data=!4m5!3m4!1s0x48705460698b2927:0x8c7bf2537561901b!8m2!3d52.0412108!4d-2.4261029 Tesco in Ledbury]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Power&amp;diff=17</id>
		<title>Power</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Power&amp;diff=17"/>
		<updated>2022-01-16T00:26:00Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As usual, our lovely power team will provide power to all our attendees. This guide will tell you how to connect safely.&lt;br /&gt;
&lt;br /&gt;
Power will predominantly be delivered via 16A (Blue IEC60309 &amp;quot;Ceeform&amp;quot;) connectors although some 13A UK sockets will be available within datenklos.&lt;br /&gt;
&lt;br /&gt;
We plan our campsites so that no point will be more than 40 metres away from a source of power, but the majority of power extension leads are 25m or shorter, so please aim to arrive early if you really need power, or try and connect via a neighbour.&lt;br /&gt;
&lt;br /&gt;
If you're coming by yourself, bring a good-quality reel-type extension lead (ideally at least 25m) with a 13A or 16A plug. If you're coming as part of a larger village, try to bring enough equipment to safely distribute within your village.&lt;br /&gt;
&lt;br /&gt;
Power requirements in excess of 16A single-phase are subject to special request - please email us as soon as possible so we can try and sort something out.&lt;br /&gt;
&lt;br /&gt;
== Safety ==&lt;br /&gt;
&lt;br /&gt;
The power network is designed and tested to relevant UK standards. All sockets within the camping area are protected by 30mA RCDs to reduce risk of electrical shock.&lt;br /&gt;
&lt;br /&gt;
You should always make sure that any connections are kept well inside an enclosed area which won't get wet. If you suspect a connection has got wet, please disconnect it yourself or ask for a member of the power team if you don't feel you can.&lt;br /&gt;
&lt;br /&gt;
If it rains, the earth leakage current from a number of slightly damp appliances can add up to enough to trip our larger upstream RCDs, which will inconvenience more people than just you - so please keep try to keep things dry!&lt;br /&gt;
&lt;br /&gt;
== Camper Vans &amp;amp; Caravans ==&lt;br /&gt;
&lt;br /&gt;
As usual, we will provide 1x 16A Ceeform socket in the campervan area for every campervan/caravan ticket sold.&lt;br /&gt;
&lt;br /&gt;
== Electric Vehicles ==&lt;br /&gt;
&lt;br /&gt;
We will provide power for charging electric vehicles in the parking field near the entrance.&lt;br /&gt;
&lt;br /&gt;
Please note that your vehicles will be charged from our (modern, clean) diesel generators - there is still no other economical way of providing power at events like EMF - so please make sure you only charge as much as you need.&lt;br /&gt;
&lt;br /&gt;
Our present plans involve providing power either on standard 16A Ceeform connectors or on UK 13A sockets. Add yourself to the [[Power/Electric_Vehicles| EV charging page]] though.&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Location&amp;diff=16</id>
		<title>Location</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Location&amp;diff=16"/>
		<updated>2022-01-16T00:25:32Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Electromagnetic Field 2022 will be held at [[Location|Eastnor Castle Deer Park]], located just east of Ledbury, Herefordshire. This is same site that we used in 2018.&lt;br /&gt;
&lt;br /&gt;
== Public transport ==&lt;br /&gt;
&lt;br /&gt;
=== Train 🚂 ===&lt;br /&gt;
We are close to '''Ledbury''' station which is around [https://traintimes.org.uk/londonpaddington/ledbury/ three hours] direct from London Paddington (on [https://www.gwr.com/ GWR]) and [https://traintimes.org.uk/birminghamnewstreet/ledbury/ one hour] from Birmingham New Street (on [https://www.westmidlandsrailway.co.uk/ West Midlands Railway]). &lt;br /&gt;
&lt;br /&gt;
Trains are likely to be significantly cheaper is you book an Advance ticket (although these tickets can only be used on the exact train booked).&lt;br /&gt;
&lt;br /&gt;
=== Shuttle Bus 🚌===&lt;br /&gt;
&lt;br /&gt;
We will be running a free shuttle bus service between Ledbury station and the site. Details of this are still TBC.&lt;br /&gt;
&lt;br /&gt;
=== Air ✈️ ===&lt;br /&gt;
&lt;br /&gt;
The closest major airport is [https://en.wikipedia.org/wiki/Birmingham_Airport Birmingham ✈(BHX)], which is around [https://traintimes.org.uk/birminghaminternational/ledbury/ 1hr40] by train to Ledbury station; or an hour by road.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Bristol_Airport Bristol ✈(BRS)] and [https://en.wikipedia.org/wiki/Cardiff_Airport Cardiff ✈(CWL)] are around 1hr40 by road, but poorly connected by public transport.&lt;br /&gt;
&lt;br /&gt;
For those travelling long-haul, BHX is likely to be be most useful followed by LHR.&lt;br /&gt;
&lt;br /&gt;
== Driving 🚗 ==&lt;br /&gt;
&lt;br /&gt;
If you plan to drive, you will need to buy a parking ticket (£18) or campervan ticket (£45) available [https://www.emfcamp.org/tickets/other here]. Motorcycles do not require a parking ticket. In an attempt to reduce harmful emissions, please consider [[Location/Lift sharing|carpooling]] instead of utilising your own car. &lt;br /&gt;
&lt;br /&gt;
The site is around 13 mins drive from the M50 Junction 2.&lt;br /&gt;
&lt;br /&gt;
Plan your travel to the south gate (adjacent to A438) - postcode '''HR8 1RQ''' should get you there. The entrance to the site is '''52°01'56&amp;quot;N 2°23'01&amp;quot;W''' / '''OS Grid SO 738 372'''.&lt;br /&gt;
&lt;br /&gt;
Once you leave the motorway, follow the yellow AA signs to EMF, ignoring your sat nav which may try to take you through the town.&lt;br /&gt;
&lt;br /&gt;
Coming with an [[Power/Electric_Vehicles|⚡️ electric vehicle?]] Please add yourself to the [[Power/Electric_Vehicles| EV charging page.]]&lt;br /&gt;
&lt;br /&gt;
{{travel-map}}&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=MediaWiki:Sidebar&amp;diff=15</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=MediaWiki:Sidebar&amp;diff=15"/>
		<updated>2022-01-16T00:23:35Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|🏠 Main Page&lt;br /&gt;
** recentchanges-url|⏰ Recent Changes&lt;br /&gt;
* The site&lt;br /&gt;
** Villages|⛺️  Villages&lt;br /&gt;
** Power|🔋 Power&lt;br /&gt;
** Network|☎️ Internet&lt;br /&gt;
** Interests|🎲 Interests&lt;br /&gt;
** Food|🍴 Food&lt;br /&gt;
* Getting there&lt;br /&gt;
** Travel|🚂 Location &amp;amp; travel&lt;br /&gt;
** What to bring|🧳 Packing list&lt;br /&gt;
* Helping out&lt;br /&gt;
** Teams|💪 Teams&lt;br /&gt;
** Contact|📨 Contact&lt;br /&gt;
* Wiki&lt;br /&gt;
** TODO|☑️ To Do List&lt;br /&gt;
** randompage-url|🔀 Random Page&lt;br /&gt;
** helppage|ℹ️ Help&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Electromagnetic_Field_2022&amp;diff=14</id>
		<title>Electromagnetic Field 2022</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Electromagnetic_Field_2022&amp;diff=14"/>
		<updated>2022-01-16T00:21:13Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Copy content from 2020&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Emf1.jpg|thumb|left|The EMF sign in 2014]]&lt;br /&gt;
&lt;br /&gt;
Electromagnetic Field (EMF) is a non-profit UK camping festival for those with an inquisitive mind or an interest in making things: hackers, geeks, scientists, engineers, artists, and crafters.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Electromagnetic Field 2020 will take place between Thursday 23rd July and Sunday 26th July 2020 in [[Location|Eastnor Castle Deer Park]] in Herefordshire. Just like in [https://wiki-archive.emfcamp.org/2012 2012], [https://wiki-archive.emfcamp.org/2014/w/index.php/Electromagnetic_Field_2014 2014], [https://wiki-archive.emfcamp.org/2016/w/index.php/Electromagnetic_Field_2016 2016] and [https://wiki-archive.emfcamp.org/2018 2018], hundreds of people will gather in a field for three days of talks and workshops covering pretty much everything. In 2016, this included blacksmithing, crocheting, [https://www.youtube.com/watch?v=wueRcp8QdBM robot dinosaurs], [https://www.youtube.com/watch?v=iqTLQ0T-MxU 3D printed 4D shapes], [https://www.youtube.com/watch?v=AcuwrU_bmUI key impressioning], and much more.&lt;br /&gt;
&lt;br /&gt;
To help matters along, we will arrange [[Power|electrical power]], a [[Network|high-speed internet connection with reliable WiFi]], and a bar stocked with real ale and Club Mate.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
To get an idea what EMF 2018 was like, you can view the [https://wiki-archive.emfcamp.org/2018/w/index.php/Talks list of talks, workshops and performances] and see recordings of a number of them on our [https://www.youtube.com/user/emfcamp1/videos Youtube channel]. If you are inspired by the past content, please consider giving a talk yourself or running a workshop this year!&lt;br /&gt;
&lt;br /&gt;
The campsite will also have a number of [[villages]], where those with something in common can camp together. Keep an eye on this wiki, and pick a village to join, or start your own.&lt;br /&gt;
&lt;br /&gt;
At each EMF event we give our attendees a programmable badge. In 2018, attendees received a MicroPython enabled [https://blog.emfcamp.org/2018/08/26/tilda-mk4-the-emf-2018-badge/ TiLDA Mkδ]. Information about past badges including TiLDA, SiNE and our next badge can be found [https://badge.emfcamp.org here].&lt;br /&gt;
&lt;br /&gt;
We recommend everyone reads the following pages before arrival:&lt;br /&gt;
* [[Travel]]&lt;br /&gt;
* [[Power]]&lt;br /&gt;
* [[Food]]&lt;br /&gt;
* [[What to bring]]&lt;br /&gt;
&lt;br /&gt;
If you want to get in touch, there is info on the [[contact]] page.&lt;br /&gt;
&lt;br /&gt;
If you would like to help to add to this wiki, but you aren't sure where to start, you should visit [[TODO|this to do list]].&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=File:Emf1.jpg&amp;diff=13</id>
		<title>File:Emf1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=File:Emf1.jpg&amp;diff=13"/>
		<updated>2022-01-16T00:21:01Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Main_Page&amp;diff=12</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Main_Page&amp;diff=12"/>
		<updated>2022-01-16T00:19:09Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Ms7821 moved page Main Page to Electromagnetic Field 2022&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Electromagnetic Field 2022]]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2022/w/index.php?title=Electromagnetic_Field_2022&amp;diff=11</id>
		<title>Electromagnetic Field 2022</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2022/w/index.php?title=Electromagnetic_Field_2022&amp;diff=11"/>
		<updated>2022-01-16T00:19:09Z</updated>

		<summary type="html">&lt;p&gt;Ms7821: Ms7821 moved page Main Page to Electromagnetic Field 2022&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;/div&gt;</summary>
		<author><name>Ms7821</name></author>
	</entry>
</feed>