dasto created page: meetings presentation schedule authored by David St-Onge's avatar David St-Onge
...@@ -113,7 +113,7 @@ http://wiki.dji.com/en/index.php/Matrice_100-Linking_the_Remote_Controller (note ...@@ -113,7 +113,7 @@ http://wiki.dji.com/en/index.php/Matrice_100-Linking_the_Remote_Controller (note
Since MistLab current dongles are Realtek rtl8188 a firmware need to be downloaded from: http://elinux.org/images/a/a8/Rtl8192cufw.bin.zip. Nevertheless hostapd (for Access Point configuration) doesn't seem to work with this dongle on Tegra. Since MistLab current dongles are Realtek rtl8188 a firmware need to be downloaded from: http://elinux.org/images/a/a8/Rtl8192cufw.bin.zip. Nevertheless hostapd (for Access Point configuration) doesn't seem to work with this dongle on Tegra.
##To set up an AP with Intel7260 mini-PCI ##To set up an AP with Intel7260 mini-PCI
`sudo apt-get install hostapd` `sudo apt-get install hostapd isc-dhcp-server`
create `/etc/hostapd/hostapd.conf` with: create `/etc/hostapd/hostapd.conf` with:
``` ```
interface=wlan1 interface=wlan1
...@@ -138,7 +138,23 @@ wpa_pairwise=TKIP ...@@ -138,7 +138,23 @@ wpa_pairwise=TKIP
rsn_pairwise=CCMP rsn_pairwise=CCMP
``` ```
then in `/etc/default/hostapd` and `/etc/init.d/hostapd`: `DAEMON_CONF=/etc/hostapd/hostapd.conf` then in `/etc/default/hostapd` and `/etc/init.d/hostapd`: `DAEMON_CONF=/etc/hostapd/hostapd.conf`
In `/etc/dhcp/dhcpd.conf`, comment the lines that say
```
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
```
uncomment `authoritative`, and add at end:
```
subnet 192.168.42.0 netmask 255.255.255.0 {
range 192.168.42.10 192.168.42.50;
option broadcast-address 192.168.42.255;
option routers 192.168.42.1;
default-lease-time 600;
max-lease-time 7200;
option domain-name "local";
option domain-name-servers 8.8.8.8, 8.8.4.4;
}
```
## To allow shutdown from the RC Client node ## To allow shutdown from the RC Client node
`sudo nano /var/lib/polkit-1/localauthority/50-local.d/custom-actions.pkla` `sudo nano /var/lib/polkit-1/localauthority/50-local.d/custom-actions.pkla`
and copy and copy
... ...
......