From Hentschel
(→Stratux) |
|||
| Line 3: | Line 3: | ||
* Stratux build page [http://stratux.me this link] | * Stratux build page [http://stratux.me this link] | ||
* Status info at http://stratux/getStatus | * Status info at http://stratux/getStatus | ||
| + | |||
| + | ==== /etc/network/interfaces ==== | ||
| + | <pre> | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | |||
| + | allow-hotplug eth0 | ||
| + | iface eth0 inet dhcp | ||
| + | |||
| + | allow-hotplug wlan0 | ||
| + | iface wlan0 inet static | ||
| + | address 192.168.10.1 | ||
| + | netmask 255.255.255.0 | ||
| + | post-up /usr/sbin/stratux-wifi.sh | ||
| + | wireless-power off | ||
| + | |||
| + | allow-hotplug wlan1 | ||
| + | iface wlan1 inet static | ||
| + | wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | ||
| + | address 192.168.1.98 | ||
| + | netmask 255.255.255.0 | ||
| + | gateway 192.168.1.1 | ||
| + | |||
| + | # iface name_of_WPA_Config inet dhcp | ||
| + | # iface name_of_other_WPA_Config inet dhcp | ||
| + | ## End of interfaces | ||
| + | </pre> | ||
=== PiAware === | === PiAware === | ||
* build instructions [https://flightaware.com/adsb/piaware/install at this link] | * build instructions [https://flightaware.com/adsb/piaware/install at this link] | ||
Revision as of 01:35, 19 May 2019
Stratux
- Stratux build page this link
- Status info at http://stratux/getStatus
/etc/network/interfaces
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.10.1
netmask 255.255.255.0
post-up /usr/sbin/stratux-wifi.sh
wireless-power off
allow-hotplug wlan1
iface wlan1 inet static
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
address 192.168.1.98
netmask 255.255.255.0
gateway 192.168.1.1
# iface name_of_WPA_Config inet dhcp
# iface name_of_other_WPA_Config inet dhcp
## End of interfaces
PiAware
- build instructions at this link