I'd like to use two Xbee modules for a point-to-point Internet relay.
Something like this:
eth0(host1) <-> Xbee(1) <-> ... <-> Xbee(2) <-> eth0(host2)
Setting up a serial connection with Xbee is simple (I'm using two Arduino boards).
But how do I get TCP/IP to Serial? So I guess my main problem is this here:
TCP/IP <-> Serial <-> ... <-> Serial <-> TCP/IP
How can I do this?
I guess I have to setup PPP or SLIP for that - but have no clue how to do that.