Try again, get one running MCPE normally. Get the second RPi scanning your network (I'm assuming you've not got any iptables firewall blocking servers or clients on your LAN).
On RPi#1
sudo netstat -tlnp
Expect to see
Code: Select all
tcp 0 0 0.0.0.0:4711 0.0.0.0:* LISTEN 4840/minecraft-pi
as one line in the output
sudo apt-get install telnet
telnet 192.168.xxx.2 4711
Expect to see
Code: Select all
pi@eagle:~$ telnet 192.168.1.29 4711
Trying 192.168.1.29...
Connected to 192.168.1.29.
Escape character is '^]'.
foo # <=== This was typed in by me
Fail
^]
telnet> quit
Connection closed.
pi@eagle:~$
I sent it a "foo" command, it sent me back "computer says 'No.'".