I deleted the known_hosts file and restarted the computer, and that sorted it out. I may have gotten the wifi up and going aswell just by going through everything but im not sure. (Also, there was no config file in the .ssh folder). Anyways! Here are the new versions of the information you requested. Does this look good? And if so, should i be able to simply repeat the process with the others, and then set up the OSC communication using the main networks IP??
Results from new ip a:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: usb0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether be:1a:ab:4a:94:8e brd ff:ff:ff:ff:ff:ff
inet 192.168.6.2/24 brd 192.168.6.255 scope global usb0
valid_lft forever preferred_lft forever
inet6 fe80::bc1a:abff:fe4a:948e/64 scope link
valid_lft forever preferred_lft forever
3: usb1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether be:1a:ab:4a:94:91 brd ff:ff:ff:ff:ff:ff
inet 192.168.7.2/24 brd 192.168.7.255 scope global usb1
valid_lft forever preferred_lft forever
inet6 fe80::bc1a:abff:fe4a:9491/64 scope link
valid_lft forever preferred_lft forever
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 38:d2:69:e0:7f:cf brd ff:ff:ff:ff:ff:ff
inet 192.168.0.118/24 brd 192.168.0.255 scope global wlan0
valid_lft forever preferred_lft forever
inet6 fe80::3ad2:69ff:fee0:7fcf/64 scope link
valid_lft forever preferred_lft forever
root@bela:~# nano /etc/wpa_supplicant/wpa_supplicant.co
Results from /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# USB RNDIS gadget (Windows / Linux compatible)
auto usb0
iface usb0 inet static
address 192.168.6.2
netmask 255.255.255.0
network 192.168.6.0
# USB NCM gadget (macOS / Linux compatible)
auto usb1
iface usb1 inet static
address 192.168.7.2
netmask 255.255.255.0
network 192.168.7.0
# The loopback network interface
auto lo
iface lo inet loopback
# Ethernet
allow-hotplug eth0
iface eth0 inet dhcp
# Example to keep MAC address between reboots
#hwaddress ether DE:AD:BE:EF:CA:FE
# WiFi Example
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
# The lines above should work if you have a wifi interface called wlan0.
# To see the actual name of your interface, run
# ip a
# and identify it among the ones listed then replace `wlan0` above with the name of your interface
# To provide credentials to your network, run the following at the command line:
# wpa_passphrase YourNetworkName YourNetworkPassword >>/etc/wpa_supplicant/wpa_supplicant.conf
# then:
# ifdown wlan0; ifup wlan0
# where `wlan0` is the name of your interface as found above.
Results from /etc/wpa_supplicant/wpa_supplicant.conf
network={
ssid="Martin_EXT"
#psk="xxxxxx" # (censored this out)
psk=20aaddd638b9947aaf1e7e20b15900d556dad7b262316d50366bf9761c402e28
}