Dear wo_rasp,
thanks a lot for the quick reply. Indeed I could solve it; to my understanding, this depended on the network configuration. I started again from scratch (with a rabian image) and I wrote a protocol about every step I did:
On raspberryPi:
After configuring the network /etc/interfaces/network by:
and rebooting, it did not work. Fortunately, I did a backup of the original file and modified it the following:
Reboot, and it DID work. I do not know whether this is the reason but I least according to my protocol this was the cause. Maybe this helps somebody.
thanks a lot for the quick reply. Indeed I could solve it; to my understanding, this depended on the network configuration. I started again from scratch (with a rabian image) and I wrote a protocol about every step I did:
On raspberryPi:
Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install screen htop
screen -S main
ifconfig
----- SSH ---- (Establish ssh from Computer to raspberry pi)
screen -rx main
sudo su
apt-get install build-essential cmake git dialog zlib1g-dev zlib1g
git clone --depth 5 -b development https://github.com/pilight/pilight.git
cd pilight/
chmod +x setup.sh
./setup.sh
ldconfig
service pilight start
ls
nano hardware.json
./pilight-receive
After configuring the network /etc/interfaces/network by:
Code:
auto eth0
iface eth0 inet static
address 192.168.0.6
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.14
and rebooting, it did not work. Fortunately, I did a backup of the original file and modified it the following:
Code:
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.0.6
netmask 255.255.255.0
gateway 192.168.0.14
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Reboot, and it DID work. I do not know whether this is the reason but I least according to my protocol this was the cause. Maybe this helps somebody.