|
|
- \documentclass[11pt]{article}
- %Gummi|065|=)
- \title{\textbf{Tank recording setup}}
- \author{Steak Electronics}
- \date{2019-04}
- \begin{document}
-
- \maketitle
-
- \tableofcontents
-
- \section{overview}
-
- \section{Notes:}
- In order to get wifi to work, I needed to install firmware-iwlwifi*
-
- I also installed firmware-linux-nonfree
-
- That latter step might not have been necessary.
-
- Needed also iw.
-
- apt-get install iw wpasupplicant
-
- There were some configs made for wifi.
-
- \begin{verbatim}
- ctrl_interface=/var/run/wpa_supplicant
-
- network={
-
- ssid="wifiname"
- psk="passwordhere"
- }
-
-
- # should be all thats needed, unless you hide ssid.
- # this above file goes in /etc/wpa_supplicant/wpa_supplicant.conf
-
-
-
- #then
- #the network interfaces looks like this:
- # interfaces(5) file used by ifup(8) and ifdown(8)
- # Include files from /etc/network/interfaces.d:
-
-
- allow-hotplug wlan0
- iface wlan0 inet dhcp
- wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
-
- source-directory /etc/network/interfaces.d
-
- #tested in ascii
- #ifup wlan0
- #should work
- \end{verbatim}
-
- Now, I need to do the following:
-
- Have wifi router connect to commtank via vpn
- have laptop connected via wifi (static IP), then have a dhcp server on ethernet lan. \footnote{the static is easily done via changing dhcp to static, adding address, netmask, and gateway in interfaces file. tested.}
- Have route to wifi router lan, over vpn, and test that commtank can connect to the laptop.
- set static ip on camera (192.168.220.101)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \end{document}
|