Created
August 2, 2017 02:41
-
-
Save PhirePhly/78f2e539131fd8a740a42972e8ed8f7f to your computer and use it in GitHub Desktop.
Config files for Raspberry Pi BlackFlower Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/dnsmasq.conf | |
# Specify what the local domain is | |
local=/eventlan.net/ | |
domain=eventlan.net | |
# Hardcode the LAN domain to point at the CAD server | |
address=/eventlan.net/10.44.4.1 | |
# Bind to the wlan0 interface specifically | |
interface=wlan0 | |
# Expand bare hostnames to hostname.eventlan.net | |
expand-hosts | |
# Specify the range of IP addressses to give out and for how long | |
dhcp-range=10.44.4.100,10.44.4.199,20m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface=wlan0 | |
driver=nl80211 | |
ssid=GoBox | |
hw_mode=g | |
channel=1 | |
wmm_enabled=0 | |
macaddr_acl=0 | |
auth_algs=1 | |
ignore_broadcast_ssid=0 | |
wpa=2 | |
wpa_passphrase=dispatch | |
wpa_key_mgmt=WPA-PSK | |
wpa_pairwise=TKIP | |
rsn_pairwise=CCMP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1 localhost | |
::1 localhost ip6-localhost ip6-loopback | |
ff02::1 ip6-allnodes | |
ff02::2 ip6-allrouters | |
10.44.4.1 gobox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/network/interfaces | |
auto lo | |
iface lo inet loopback | |
iface eth0 inet manual | |
allow-hotplug wlan0 | |
iface wlan0 inet static | |
address 10.44.4.1 | |
netmask 255.255.255.0 | |
network 10.44.4.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment