Skip to content

Instantly share code, notes, and snippets.

@DraTeots
Last active April 20, 2024 02:17
Show Gist options
  • Save DraTeots/e0c669608466470baa6c to your computer and use it in GitHub Desktop.
Save DraTeots/e0c669608466470baa6c to your computer and use it in GitHub Desktop.
ComPort over Network

Connecting to serial port (com port) over network

(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )


The problem

Suppose we have an application that works with some device using serial port (com port or comport - the same thing). It could be GPS reader, IRDA, whatever. So it looks like this:

+--------+   serial   +--------------+
| DEVICE | ~~~~~~~~~~ | PC  with APP |
+--------+            +--------------+ 

Now what we want, is to have the device connected to one machine (server), and run the application on the remote machine (client) over the network. Real life example: a device is connected to raspberry pi (very small single-board machine) that is connected to a local network, and read the data on a desktop.

Since the application (APP on diagrams) knows only how to communicate with the device by serial port (we suppose), the client machine has to have some virtual serial port that is used by the application. It is called "virtual serial port" or "virtual comport" as this is a software emulated bridge between a client and your application. So the diagram is:

+--------+   comport  +--------+       network        +--------+  virtual comport +---+
| DEVICE | ~~~~~~~~~~ | SERVER |========....==========| CLIENT |~~~~~~~~~~~~~~~~~~|APP|
+--------+            +--------+                      +--------+                  +---+

Thus we need:

  • SERVER that communicates with the DEVICE through physical serial port and then serves the data over network
  • Client that connects to the server
  • Virtual comport that mimics physical serial port and interface with the APP

So now the application just works with serial port on the client machine, and doesn't even know that data is actually transmitted over the network.


The solution in theory

One of the solutions is using telnet with RFC2217 - Telnet Com Port Control Option. Is solves exactly the problem above. There are a lot of software that supports telnet+RFC2217 serial port forwarding. It allows you to run the server and the client on linux or windows machines (and MACs I suppose, but haven't tested it). This allows one to run linux server and windows client. Both would use completely different software, but because of RFC2217 standard they 'know' how to communicate.

More over you can multiplex the com ports and encrypt the data. Whatever you want.


The solution in practice

WINDOWS

There is an absolutely brilliant free opensoure solution that can be used for comport forwarding, client and server for windows. It is called com0com. It actually consists of two parts a HUB (hub4com) and kernel-mode virtual serial port driver (com0com) - explained further.

http://sourceforge.net/projects/com0com


Server

For the server you need only hub4com.

Source forge hub4com download link


Configuration (I just cite the documentation):

You have a server computer with phisical COM1 port and you'd like to share it through the network by the RFC 2217 "Telnet Com Port Control Option" protocol:

Start the com2tcp-rfc2217.bat on COM1 port. For example:

com2tcp-rfc2217 COM1 7000

It will listen TCP/IP port 7000 for incaming connections and redirect them to COM1 port.



Client

To be a windows client you have to install com0com virtual comport driver and hub4com (provided as 2 separate files).

Source forge com0com download link
Source forge hub4com download link

Create a PAIR of virtual comports where one is used for RFC2217 and the other is the port for your application will use.

(documentation citation) for RFC 2217 client :

You have a server computer your.comport.server with physical serial port shared through the network by the RFC 2217 protocol (see above example) and you'd like to use it on the client computer like a virtual serial port.

With the com0com's Setup Command Prompt create COM19<->COM20 virtual COM port pair (see com0com's ReadMe.txt for more info). For example:

>setupc.exe
command> install PortName=COM19,EmuBR=yes PortName=COM20

Example. Start the com2tcp-rfc2217.bat on COM19 port:

com2tcp-rfc2217 \\.\COM19 192.168.123.30 7000

It will redirect virtual serial port COM20 on the second computer to the physical serial port on the first computer.

(!) TL;DR; Your Application should connect to COM20.



Explanation

TL;DR; We have a virtual serial port pair COM19<->COM20, we connect com2tcp to one of the ports (COM19) and your application connects to the other (COM20)

It is bit counter intuitive why a virtual pair is created. To explain what happens, imagine we create a virtual comport pair: COM19<->COM20 as in the example above. The reason one needs a pair is that only one thing can be connected to a COM port. If hub4com binds network data to COM19, then the port is taken and your application can't connect to it. So virtual comport pair mirrors everything from COM19 to COM20, which is free and your application can connect to it.

So, the more detailed client diagram looks like this now:

     network  +---------+   +-------+-------+            +---+
....==========| hub4com |~~~| COM19 = COM20 |~~~~~~~~~~~~|APP|
              +---------+   +-------+-------+            +---+
                              virtual pair

Driver Signature

Deprecated part - com0com 3.0.0 comes with driver signarure. Unfortunately on newer windows (since 2018) this doesn't help.

According to Windows Driver Signing Policy "Starting with Windows 10, version 1607, Windows will not load any new kernel-mode drivers which are not signed by the Dev Portal." (link)[https://sourceforge.net/p/com0com/discussion/440109/thread/c4d52f1b/?limit=25]

There are 3 solutions:

  • Disable driver signature verification (bad)
  • Use version 2.2 (it works)
  • Use DSEO

(older problem) According to this bug report on Windows 8x64 you may get problem with driver installation if you don't have the driver signature verification turned off. To enable driver test mode and sign a driver for windows, one may download DSEO



LINUX:

The linux app I've got working pretty easy is ser2net

http://linux.die.net/man/8/ser2net

It has configuration file located at /etc/ser2net.conf.

Ubuntu installation

sudo apt-get ser2net            #install
sudo vim /etc/ser2net.conf      #configure
ser2net                         #run service

Linux Server

The configuration line (for /etc/ser2net.conf) that corresponds to windows setup above

7000:telnet:0:/dev/ttyUSB0:1000000 8DATABITS NONE 1STOPBIT remctl

Here:

  1. 7000 - port
  2. /dev/ttyUSB0 - name of serial port
  3. 1000000 ... - baud rate etc (actually you can skip it because of remctl)
  4. remctl - means using remote port configuration as of RFC2217

That is it. Read ser2net docs for more


Linux Client

socat can be used as a linux client. Socat is a command line based utility that establishes two bidirectional byte streams and transfers data between them.

socat /dev/ttyS2,b115200,raw,echo=0 TCP:192.168.123.30:7000
  • 192.168.123.30 - your server IP
  • 7000 server port
  • your app should connect to /dev/ttyS2
  • 115200 - port baud rate

socat man


Connect over the internet

All the above solutions basically describe how to forward data from com-port (serial port) to network port and then how to bind a network IP with port to a virtual com-port. It is streight forward for a local network but how to connect the devices over the internet? If you are an experiecned IT person, you may think of tons of solutions here, starting from fixed IPs and counting up to infinity.

For me one of the versatile easy to configure ways was to use ZeroTier VPN services. It is free for up to 100 devices and have a good interface for easy configuration, good manuals, etc. In the end you have a network interface on each of the machines which acts as a single local network (basically what VPN is).

I'm NOT connected anyhow with Zerotier co. Just share the solution which was optimal for me. "As is".

@H-J-E
Copy link

H-J-E commented Oct 27, 2021

Thank you for the very helpful article.
However, I simplified things so even a "dum-dum" like me can understand it, like this:

Server side:
com0com : COM1<>CNCB0
hub4com \.\CNCB0 --use-driver=tcp 7000

Client side:
com0com : COM1<>CNCB0
hub4com \.\CNCB0 --use-driver=tcp 192.168.20.3:7000

On both computers you can now use COM1 to send data to the other over your network.
Note: Change the IP address to that of your Server computer.
I recommend using RealTerm to test this.

@jpangburn
Copy link

If anyone is using ser2net version 4.X on Linux (like a Raspberry Pi in my case), it's configured with ser2net.yaml instead of ser2net.conf. I added the following in /etc/ser2net.yaml and it worked with the Windows client following the author's directions:

connection: &con2096
accepter: telnet(rfc2217),tcp,7000
connector: serialdev,/dev/ttyUSB0,local
enable: on

At least on Raspberry pi it also installed it as a service, so you don't run it with ser2net on the command line. Instead you use systemctl start ser2net or systemctl restart ser2net if it's already running. Make sure to do systemctl status ser2net to see that status and make sure there's no errors in your configuration before trying to connect a client to it. netstat -an | grep 7000 is another useful test to make sure it's listening.

@Gizmodo
Copy link

Gizmodo commented Feb 28, 2023

Maybe I can help somebody:
Server:
Linux with real device on /dev/ttyS0
Client:
Windows with virtual device on COM19
image

@syahiedkhalil
Copy link

how to change default baud rate and stop bits for com2tcp-rfc2217?

@Gizmodo
Copy link

Gizmodo commented Aug 17, 2023

See under the green line 9600n81

@syahiedkhalil
Copy link

this is for the client side which is in windows, ser2net i think is for server

@hexane096
Copy link

Perfect!

@brandonros
Copy link

brandonros commented Feb 11, 2024

server (where the device is plugged in, can be mac os x, windows, android, etc.)

use rfc2217_rs::Server; // https://github.com/esp-rs/rfc2217-rs

fn main() {
    // init logging
    env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("debug")).init();
    loop {
        // spawn servers in a loop because they stop after first connection exits
        let serial_port_name = "/dev/tty.usbmodem103"; // TODO: find dynamically
        let tcp_addr = "0.0.0.0:48001"; // Wireguard IP
        let mut server = Server::new(serial_port_name, tcp_addr).unwrap();
        loop {
            match server.run() {
                Ok(()) => (),
                Err(err) => {
                    match err {
                        rfc2217_rs::server::Error::Tcp(tcp_error) => {
                            match tcp_error.kind() {
                                std::io::ErrorKind::ConnectionReset => {
                                    break;
                                }
                                _ => panic!("{tcp_error:?}")
                            }
                        }
                        _ => panic!("{err:?}")
                    }
                },
            }
        }
    }
}

client (where you want the device to show up)

com0com setup GUI
  virtual port pair 1
  com3 + com6
  check "emulate baud rate" for both, press apply

from hub4spot examples:
  .\com2tcp-rfc2217.bat \\.\COM6 10.5.5.3 48001

  where 10.5.5.3 is your server IP

in your application, use COM3 (which is paired to COM6 but not taken, COM6 gets "access is denied" because only one application can bind/connect to it at a time?)

@DraTeots
Copy link
Author

@brandonros Excellent! Thank you! I actually also now use small and fast code snippets to pass SerialPort messages over internet/network but I use C#/.net for that. Probably it would be good Idea to add your comment in the main article and maybe collect a couple of more examples in different languages. What do you think?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment