DSMR via tcp

I am trying to read out DSMR via the DSMR component on the HA site.

I have the following in my config.

- platform: dsmr
    host: 192.169.0.143
    port: 2001
    dsmr_version: 5

If I do a telnet to the ip address I get the following messages back.

1-3: 0.2.8 (50)
1-0: 1.8.1 (000291.654 * kWh)
1-0: 1.8.2 (000268.872 * kWh)
1-0: 2.8.1 (000322.203 * kWh)
1-0: 2.8.2 (000629.022 * kWh)
0-0: 96.14.0 (0001)
1-0: 1.7.0 (00.328 * kW)
1-0: 2.7.0 (00,000 * kW)
0-0: 96.7.21 (00016)
0-0: 96.7.9 (00003)
1-0: 99.97.0 (2) (0-0: 96.7.19) (180719112926S) (0000000963 * s) (180719113458S) (0000000324 * s)
1-0: 32.32.0 (00009)
1-0: 32.36.0 (00005)
0-0: 96.13.0 ()
1-0: 32.7.0 (237.3 * V)
1-0: 31.7.0 (001 * A)
1-0: 21.7.0 (00.328 * kW)
1-0: 22.7.0 (00,000 * kW)
0-1: 24.1.0 (003)
0-1: 96.1.0 (4730303339303031383432383335333138)
0-1: 24.2.1 (190511232003S) (00285.813 * m3)
4F57
F0000443345905

For ser2net I use the following one-liner.

ser2net -C 2001 raw 600 / dev / ttyUSB0 115200 8DATABITS: NONE: 1STOPBIT

However in Home Assistant I get the following message and I cannot read the data via ser2net.

Error connecting to DSMR
Traceback (most recent call last):
File “/usr/local/lib/python3.7/site-packages/homeassistant/components/dsmr/sensor.py”, line 199, in connect_and_reconnect
reader_factory ())
File “uvloop / loop.pyx”, line 1904, in create_connection
File “uvloop / loop.pyx”, line 1883, in uvloop.loop.Loop.create_connection
TimeoutError: [Errno 110] Operation timed out
Reading through mqtt makes everything work perfectly after tweaking.

reading the data via mqtt isn’t a problem, though I prefer directly via the DSMR component.
Any suggestions for reading through ser2net?
Thanks in advance.

Nobody else experiencing this issue with DSMR?