...
Connecting Device Node-Red to Cloud Node-Red
Multiple Network Interface Traffic (Multihoming)
We can set up the Raspberry Pi such that we can send data over both LTE and wifi depending on the location of the vehicle and our situation. We can set this up on the Pi by following instructions provided here. Once this is set up, the Raspberry Pi will choose one of the two and send data over it under certain conditions (eg if wifi is weak then we use LTE or vice versa). or read the short version below.
Assign each interface IP address using ifconfig to set up multihoming.
Example:
# ifconfig eth0 192.168.1.254 up
# ifconfig eth1 192.168.2.254 up
FRED
Link to FRED. This is the system we will be using that hosts Node-Red and InfluxDB on the cloud.
...