Questions tagged [iot]

This tag is supposed to be used in relation to the Internet of Things.

The Internet of Things, or IoT for short, is a concept describing an infrastructure of intercommunicating and interacting of objects from single sensors, through fridges, toothbrushes, heaters, lamps, to cars, drones, planes and robots, artificial dogs and space probes, comprising their own .

Related links

22 questions
2
votes
1 answer

How to connect to the internet, via a bluetooth access point, from command line

The question may seem highly specific, but I didn't seem any answer anywhere. Accessing the internet via a bluetooth access point sounds like an odd choice, but I believe it's the right one in my case, where a very small machine with a small…
Tohkai
  • 25
  • 2
2
votes
1 answer

installing eclipse/paho.mqtt c++ client on Debian

I'm developing a C++ program (for a home IoT Project) on Debian 9 that needs to act as an MQTT client. I found paho.mqtt would be helpful in this regard, but none of the on-line documentations to install it worked so far. Does anyone has any…
ChinM
  • 23
  • 1
  • 3
2
votes
0 answers

Line-ending problem with Telnet: can't remove LF from CRLF when sending command

I am unable to get Telnet to send only CR (\r) at the end of a command, despite setting the crlf toggle to (see example below). Instead, Telnet always sends CR-LF (\r\n). My goal: retrieve data from a remote device connected to a…
nuthatch
  • 21
  • 1
  • 4
2
votes
0 answers

How to test shellshock against remote machine using a simple script

I am interested in testing for shellshock vulnerable machines that I don't have shell access to on my LAN's and WAN's such as IPMI cards and Internet of Things devices. What is the best way to remotely verify the vulnerability on machines? Does…
Timothy C. Quinn
  • 489
  • 4
  • 17
1
vote
1 answer

Telnet equivalent for USB connected devices?

I'm starting to play with Internet of Things type development boards (originally Arduino, now ESP8266, RaspPi and CHIP). And one thing I'm struggling with is connecting to them from a Linux machine. Arduino: I use the basic Arduino environment to…
interstar
  • 1,027
  • 3
  • 14
  • 27
1
vote
2 answers

What do you use when you can't use Bash?

I am trying to make a shell script that runs on a widest variety of *nix systems. So, if I wrote a bash script backwards compatible with old versions of the shell, but what if bash wasn't on the system? For example, is there another commonly used…
HulkBash
  • 13
  • 3
0
votes
0 answers

Make a Wi-Fi emitting device visible on another network

I have a raspberry pi connected by wifi to a sensor (network A) that emits its own Wi-Fi signal and that is controlled from an Android application on a device connected to the Wi-Fi that emits the sensor and by cable to a wifi repeater (network B).…
0
votes
1 answer

What are the best practices for configuring durable IOT Linux devices? Should I use an Overlay File System?

In the past our company used raspberry pi's for our IOT application. The problem with that was that SD cards wear out and get corrupt. We now ordered Compulab SBC's with eMMC storage running Debian. So what would be the best practices to configure…
Matebo
  • 19
  • 1
  • 1
  • 7
0
votes
0 answers

Mosquitto with encrypted key automatic start

mosquitto service does not support config parameter to put the password in for the encrypted private key. It asks for it on start of the service, which is not convenient for IoT device. I do not want to discusse here security impacts etc as it is a…
smoofy
  • 1
0
votes
1 answer

Prevent VAP from accessing the internet (with ebtables)

I'm trying to find a way to connect smart home devices to my local network but deny them access to the internet. Rather than set individual rules bound to an IP address, I'm trying to create a virtual WiFi on my DD-WRT router that has access to the…
0
votes
1 answer

how can I detect if my infinite cp command has failed using bash

I have a little data collector, a Raspberry Pi Zero W, which, on boot, mounts a remote folder on mnt using sshfs. The data transfer is effected using a cp command, e.g., cp device file & where device is local and file is in the remote folder. This…
0
votes
0 answers

WPS Push-Button for Bluetooth?

Is there any such thing like the WPS Push-Button function for Bluetooth? I would like to connect a headless IoT device to a smartphone. Unfortunately the IoT device has no input capability (just a button).
flood
  • 278
  • 1
  • 8
0
votes
0 answers

LPAd (eSIM) Linux?

Is anyone aware of a LPAd for Linux devices, both Android and Windows support this as of currently. I have searched the internet and was unable to find any information about if / or an eSIM LPAd will ever be supported on Linux. Maybe someone is…
icyli2
  • 1
0
votes
1 answer

can't get service to run on Rock64 SBC

I have a python script that displays the current IP address and time to a LCD screen attached to my device (Rock64 SBC). The python script runs fine on it's own. from subprocess import check_output from time import sleep from datetime import…
Shawn
  • 105
  • 3
0
votes
1 answer

Connection two raspberry PI via Wi-Fi direct

I wanted to play with the Wi-Fi direct protocol and really understand it as I want to pretend I have a sensor network that follows the pattern: wake up establish a network trade data disconnect wait for next window and repeat. I have come close,…
1
2