Small Internet Protocol Stack using a standard serial port.

Dependencies:   mbed

PPP-Blinky - TCP/IP Networking Over a Serial Port

Note: The source code is at the bottom of this page.

/media/uploads/nixnax/blinky-connected.gif
A Windows desktop showing PPP-Blinky in the network connections list.

Describe PPP-Blinky in Three Sentences

PPP-Blinky is a tiny library that enables Internet protocols (IPv4) to any mbed target hardware by using only a serial port.

The code runs on processors with as little as 8k RAM, for example the Nucleo-L053R8 board.

PPP-Blinky uses the industry-standard PPP (Point-to-Point) Protocol and a tiny "stateless" TCP/IP stack.

No Ethernet Port Required

No ethernet port is required - PPP-Blinky uses a serial port to send IP packets to your PC.

PPP-Blinky emulates a standard dial-up modem and therefore connects to Windows, Linux or Adroid machines.

The code runs on most ARM mbed platforms such as the LPC11U24 shown in the picture below:

/media/uploads/nixnax/blinky-to-laptop1.jpg mbed LPC11u24 acting as a webserver to a Windows laptop.

Webserver

The Webserver and WebSocket functions are ideal for building browser-based GUIs on mbed-enabled hardware.

PPP-Blinky's HTTP webserver works with most web clients such as Internet Explorer, Mozilla Firefox, Google Chrome, Safari, Curl, wget and Lynx as well as Microsoft Powershell Invoke-Webrequest command.

In the image below Firefox web browser displays the main web page embedded into PPP-Blinky's code:

/media/uploads/nixnax/ppp-blinky-firefox.jpg Firefox web browser displays a web page embedded into PPP-Blinky's code

WebSocket Service

WebSocket is the most popular protocol standard for real-time bidirectional TCP/IP communication between clients and servers.
In the image below a small Internet Explorer script has connected to PPP-Blinky's WebSocket Service.
A websocket message was then sent by the browser and was echoed back by the WebSocket, triggering the onmessage event in the script.
The WebSocket service enables bidirectional real-time interaction between PPP-Blinky and any element in the browser DOM via JavaScript.
If you already have PPP-Blinky up and running you can test your WebSocket service using this: http://jsfiddle.net/d26cyuh2/112/embedded/result
Websockets are ideal for building browser-based GUIs for mbed hardware.

/media/uploads/nixnax/ppp-blinky-websocke-2.gif

Trying PPP-Blinky on your mbed board

You will need an mbed-enabled hardware board: https://developer.mbed.org/platforms/

Establish a serial port connection between your host PC and your mbed board. The easiest way is to use mbed hardware with a USB serial debug port. I've tried the ST-Micro Nucleo-L476RG, Nucleo-L152RE, Nucleo-F401RE, Nucleo-L432KC, Nucleo-L053R8, mbed-LPC11U24 and mbed-LPC1768 boards and they all work out of the box. Use the mbed online compiler to compile the software for your target board. Save the compiled binary to your hardware.

Before establishing a network connection, you can verify the operation of the code by opening a terminal program such as Tera Term, and setting the baud rate of the COM port on your mbed board to 115200 baud. LED1 should toggle for every two 0x7E (~) (i.e. tilde) characters you type, as 0x7E is the PPP frame start/end marker. Don't forget to close the port when your'e done testing, or else Windows Dial-up Networking will report that the COM port is in use by another program when you try to connect.

Once you are certain that the serial port and firmware is working, proceed to creating a new network connection on your PC -see below.

Creating a Dial-up Connection in Windows

/media/uploads/nixnax/modem.jpg

Setting up Dial-Up Networking (DUN) on your Windows 7 or 8 PC is essentially a two-step process: First, you create a new modem device, because PPP-blinky partially emulates a standard Windows serial port modem device. Second, you create a new Internet connection (in practice, a new network adapter) which is associated with your new "modem".

Step-by-step description of how to configure Windows for PPP-Blinky here:

/users/nixnax/code/PPP-Blinky/wiki/Configuring-Windows-Dial-Up-Networking

There is also a screen on how to set up Linux dial-up networking near the bottom of this page.

Connecting to PPP-Blinky from your PC

Once Windows networking is configured you can establish a dial-up connection to your mbed board over the USB virtual com port.

The IP address you manually assigned to the new dial-up network adapter (172.10.10.1) functions as a gateway to any valid IP address on that subnet. In the screen capture below, I'm sending pings from the Windows 8 command line to my ST-Micro Nucleo-L476RG board over the USB virtual serial Port. I'm also using a second serial port and Tera Term to capture the debug output from a second serial port on the hardware. The optional debug output from the board prints out the IP source and destination address and the first few bytes of the data payload. Note that the source is the adapter IP address, (172.10.10.1 in this case) and the destination is some other address on that subnet - all packets to the subnet are sent to our mbed hardware. For example, you could also ping 172.10.10.123 or, if your PPP-Blinky is running, simply click on this link: http://172.10.10.123

/media/uploads/nixnax/ping-cap-3.gif

One Million Pings!

In the image below the ICMP ("ping") echo reply service was tested by sending one million pings to ppp-Blinky. This took over two hours.
The ping tool used on the Windows 8 PC was psping.exe from PsTools by Mark Russinovich - http://bit.ly/PingFast
The average reply time for a short ping (1 byte of payload data) was 11 milliseconds at 115200 baud on the $10 Nucleo-L053R8 board - barely enough time for 130 bytes to be sent over the port!

/media/uploads/nixnax/ppp-blinky-ping-results.jpg

Monitoring PPP-Blinky Packets

The image below is from a Microsoft Network Monitor 3.4 capture session.

Responses from PPP-Blinky are shown in blue.

Frame 2 - Internet Explorer at IP 172.10.10.1 (the Dial-Up Adapter IP) requests a TCP connection by sending an S (SYN) flag.
Frame 3 - PPP-Blinky at IP 172.10.10.2 responds with an ACK in frame 3. One direction of the link is now established.
Frame 4 - The PC acknowledges the SYN sent by PPP-Blinky in frame 3. The TCP link is now fully established.
Frame 5 - The browser "pushes" (P flag is set) an HTTP GET request to PPP-Blinky.
Frame 6 - PPP-Blinky responds with a standard HTTP response "pushes" (P flag set) back a small web page. It also sets the A (ACK) flag to acknowledge the message sent in frame 6.
Frame 7 - The PC acknowledges reception of the HTTP payload.
Frame 8 - The PC starts to shut down the TCP connection by sending a FIN flag.
Frame 9 - PPP-Blinky acknowledges the FIN request - the connection is now closed in one direction. It also sets a FIN flag in the response to request closure of the opposite direction of the connection.
Frame 10 - The PC acknowledges the FIN request. The closing of the TCP connection is now confirmed in both directions.

/media/uploads/nixnax/ms-network-monitor-http-get-1.gif

Debug Output

PPP-Blinky can output handy debug information to an optional second serial port.
The image below shows the debug output (Ident, Source, Destination, TCP Flags) for a complete HTTP conversation.
The PC messages are displayed in black. PPP-Blinky messages are blue.
Notice how PPP-blinky automatically inserts a blank line after each full HTTP conversation.

/media/uploads/nixnax/tcp-data-3.gif

Creating a Dial-Up Connection in Linux

The screen below shows the required pppd command to connect to PPP-Blinky from a Linux machine. This was much simpler than Windows! The USB serial port of the mbed LPC1768 board registered as /dev/ttyACM0 on my Linux box. Do a websearch on pppd if you want to learn more about pppd, the Linux PPP handler. Near the bottom of the screen below, two webpages are fetched (/ and /y) by using the curl command on the command line. Gnome Webkit and Firefox work fine, too. Also try echo GET / HTTP/1.1 | nc 172.10.10.2 which uses netcat, the "Swiss army knife" of networking tools. PPP-Blinky was also tested with ApacheBench, the Apache server benchmark software. After 100000 fetches, the mean page fetch rate was reported as 6 page fetches per second for a small page.

/media/uploads/nixnax/pppd-screen.png

Caveats

PPP Blinky is an extremely sparse implementation (1.5k lines) of HTTP,WebSocket,TCP, UDP, ICMP, IPCP and LCP over PPP, requiring around 8kB of RAM. The minimum functionality required to establish connectivity is implemented. These are often acceptable tradeoffs for embedded projects as well as a handy tool to learn the practical details of everyday networking implementations.

Revisions of PPP-Blinky/ppp-blinky.cpp

Revision Date Message Actions
228:7fb878500862 2018-09-17 removed LCPConfigurationRequest() File  Diff  Annotate
227:f87156f9ef11 2018-09-17 consolidate LCP handler File  Diff  Annotate
226:4898247048c7 2018-09-09 Removed delay in sendPPPbuf; Edits in webpages File  Diff  Annotate
225:4c9994e3becb 2018-09-08 mbed library revision 170 and updated jsfiddle revision 112 File  Diff  Annotate
224:28a12be8d52d 2018-09-01 Updated jsfiddle File  Diff  Annotate
223:917b554cb8a5 2018-08-28 make ppp.rx.buf volatile File  Diff  Annotate
222:0ec93b1ff979 2018-08-26 Updated jsfiddle version File  Diff  Annotate
221:1d7c32d8256b 2018-08-25 Removed putcwhilechecking and putswhilechecking.; Added ppp.xx.bufferfull File  Diff  Annotate
220:54f45f924707 2018-08-20 Unrolled the CRC calculation. File  Diff  Annotate
219:cbf6a235d1f2 2018-08-01 New jsfiddle for WebSocket demo File  Diff  Annotate
217:86498f9ab967 2018-07-22 Enable MAXBUFLEVEL in the TCP/IP headers for testing File  Diff  Annotate
216:e3c5a5b47295 2018-07-22 RXBUFLEN can now be any value File  Diff  Annotate
214:4d832a4877ed 2018-06-14 Change SHOWMAXBUFLEVEL_YES to SHOWMAXBUFLEVEL_NO File  Diff  Annotate
213:8555b6a3355a 2018-06-04 Removed printf in receive interrupt handler File  Diff  Annotate
211:a40c58b34560 2018-05-28 Reduced serial receive buffer to 1024 bytes (from 2048) File  Diff  Annotate
210:a2a651249a9a 2018-05-28 Fixed 404 not found error for web page /w File  Diff  Annotate
209:aa514cd631ee 2018-05-28 Removed checkPC() and other small changes. File  Diff  Annotate
208:73086736610a 2018-05-28 Back to this copy File  Diff  Annotate
207:28cd834b785d 2018-05-28 Test comment File  Diff  Annotate
206:7537ce2620c1 2018-05-28 Test comment File  Diff  Annotate
205:c730866cb598 2018-05-28 Removed checkPC(); Other small changes, comments. File  Diff  Annotate
201:9fcf92e9f427 2018-01-01 Moved comment. File  Diff  Annotate
196:8791e241be80 2017-12-06 Added Nucleo-L432KC board as a target.; Note - Nucleo-L432KC currently works only with Revision 152 of mbed library. Revision 152 is used in this commit. File  Diff  Annotate
194:5b23ebfb3626 2017-11-22 Changed FRDM-KW41Z second serial port to (PTC3, PTC2) File  Diff  Annotate
193:48072570f41d 2017-11-22 Added FRDM-KW41Z board second serial port support (p9,p10) File  Diff  Annotate
185:4cd8f91e9d49 2017-09-18 Close connection after HTTP response. File  Diff  Annotate
184:4133f557d4d4 2017-09-11 Better Sec-WebSocket-Key. Respond to TCP Ack with nonzero Payload. Increase TCP Window Size to 1200. File  Diff  Annotate
183:6d3ba874b267 2017-09-11 SERIAL_PORT_MONITOR_NO File  Diff  Annotate
182:f039ec218c9f 2017-09-11 Re-enabled sendUdpData(); Removed HTTP send delay. Verbosity flags. File  Diff  Annotate
181:bcfe7fe2142d 2017-09-11 Head pointer made volatile. Clear firstFrame after first frame. File  Diff  Annotate
180:fb1ab50e5e7a 2017-09-11 SERIAL_PORT_MONITOR_NO File  Diff  Annotate
179:ba2b2ddd0da5 2017-09-11 Changed BufferedSerial to RawSerial. File  Diff  Annotate
178:3f17aa0ce5ce 2017-09-07 Added comments on IP routing. File  Diff  Annotate
177:dab9e685af53 2017-09-07 sendUdpData() changes. File  Diff  Annotate
176:011dbb3f7d03 2017-09-06 Merge File  Diff  Annotate
175:b4e6f8a6fe00 2017-09-06 Moved ppp structure. File  Diff  Annotate
174:e5a3f16421a5 2017-09-06 sendUdpData() File  Diff  Annotate
173:6774a0c851c4 2017-09-04 Better use of header structures. Better tcp header dump. File  Diff  Annotate
172:449dd7a28955 2017-09-04 Incrementing response counter in sendPppFrame() File  Diff  Annotate
171:46b36d4edd1d 2017-09-04 sendUdp(); File  Diff  Annotate
170:3d3b2126181c 2017-09-04 UDP checksum working. File  Diff  Annotate
169:ee90aed3a735 2017-09-04 SERIAL_PORT_MONITOR_NO File  Diff  Annotate
168:c77eb908042a 2017-09-04 correct udpLength. File  Diff  Annotate
167:ff8a2d8beeb1 2017-09-04 ICMP header structure & ICMP/LCP handler rewrite. File  Diff  Annotate
166:0386c2d5dc89 2017-09-03 SERIAL_PORT_MONITOR_NO File  Diff  Annotate
165:c47826d07e0d 2017-09-03 ICMP header structure. ICMP handler rewrite. File  Diff  Annotate
164:c3de3d212c4b 2017-09-03 UDP header changes. File  Diff  Annotate
163:d1b4328e9f08 2017-09-03 UDP header structure. Rewrite udp handler. File  Diff  Annotate
162:594729c0e5c1 2017-09-02 swapIPAddresses() File  Diff  Annotate
161:d59f778bc8ab 2017-09-02 Checksum cleanup. File  Diff  Annotate
160:bd701ad564cb 2017-09-02 Fixed errors in IP header structure. File  Diff  Annotate
159:4d1bf96a59cd 2017-09-02 Better pseudo header. File  Diff  Annotate
158:841592aed956 2017-09-02 Comments File  Diff  Annotate
157:3a3530d60e96 2017-09-02 SERIAL_PORT_MONITOR_NO File  Diff  Annotate
156:163c23249731 2017-09-02 Improved TCP flag union in struct tcpHeaderType. File  Diff  Annotate
155:9c6a1d249e26 2017-09-01 Working TCP flags in tcpHeaderType. File  Diff  Annotate
154:18b2bd92f557 2017-09-01 Better IP and TCP header structures File  Diff  Annotate
153:7993def8663f 2017-09-01 Merge, small changes, comments. File  Diff  Annotate
152:025c73b6c0a9 2017-09-01 PPP, IP and TCP header structures File  Diff  Annotate
150:3366bf3d294e 2017-08-30 changed connected() to connectedPPP() File  Diff  Annotate