You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
1.5 KiB

5 years ago
  1. \documentclass[11pt]{article}
  2. %Gummi|065|=)
  3. \title{\textbf{Tank recording setup}}
  4. \author{Steak Electronics}
  5. \date{2019-04}
  6. \begin{document}
  7. \maketitle
  8. \tableofcontents
  9. \section{overview}
  10. \section{Notes:}
  11. In order to get wifi to work, I needed to install firmware-iwlwifi*
  12. I also installed firmware-linux-nonfree
  13. That latter step might not have been necessary.
  14. Needed also iw.
  15. apt-get install iw wpasupplicant
  16. There were some configs made for wifi.
  17. \begin{verbatim}
  18. ctrl_interface=/var/run/wpa_supplicant
  19. network={
  20. ssid="wifiname"
  21. psk="passwordhere"
  22. }
  23. # should be all thats needed, unless you hide ssid.
  24. # this above file goes in /etc/wpa_supplicant/wpa_supplicant.conf
  25. #then
  26. #the network interfaces looks like this:
  27. # interfaces(5) file used by ifup(8) and ifdown(8)
  28. # Include files from /etc/network/interfaces.d:
  29. allow-hotplug wlan0
  30. iface wlan0 inet dhcp
  31. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  32. source-directory /etc/network/interfaces.d
  33. #tested in ascii
  34. #ifup wlan0
  35. #should work
  36. \end{verbatim}
  37. Now, I need to do the following:
  38. Have wifi router connect to commtank via vpn
  39. 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.}
  40. Have route to wifi router lan, over vpn, and test that commtank can connect to the laptop.
  41. set static ip on camera (192.168.220.101)
  42. \end{document}