Skip to content

Instantly share code, notes, and snippets.

@PhirePhly
Created August 2, 2017 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhirePhly/78f2e539131fd8a740a42972e8ed8f7f to your computer and use it in GitHub Desktop.
Save PhirePhly/78f2e539131fd8a740a42972e8ed8f7f to your computer and use it in GitHub Desktop.
Config files for Raspberry Pi BlackFlower Server
# /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
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
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
10.44.4.1 gobox
# /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