Hi Mitsos Minas,
The easiest is use the built in network server and use mqtt client lib to receive/send data to your motes.
Conduit:
——–
1. ssh into the Conduit and go to /etc/mosquitto and modify the mosquitto.conf with the following:
#bind_address 127.0.0.1 <–Put a hash sign infront of this line to commented it out.
2. Save and exit.
3. Then type: /etc/init.d/mosquitto restart <–Restart the moquitto
Remote PC:
———-
1. Install the mosquitto software – http://mosquitto.org/download/
2. mosquitto_sub -t lora/+/+ -v -h 192.168.2.1
Then on the mDot – Send some data – You should see it shows up on your remote PC.
http://www.multitech.net/developer/software/lora/lora-network-server/mqtt-messages/
Or you can write your own application with mqtt client lib. It has multiple programming language supported.
https://github.com/mqtt/mqtt.github.io/wiki/libraries
Thanks,
BT