From b3c9d3667e20b449cdc477420fe4e8f0e8cbefde Mon Sep 17 00:00:00 2001 From: DeltaLima Date: Mon, 13 Mar 2023 00:17:55 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ers232-nullmodem-ppp-internetconnection?= =?UTF-8?q?.md=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rs232-nullmodem-ppp-internetconnection.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/rs232-nullmodem-ppp-internetconnection.md b/rs232-nullmodem-ppp-internetconnection.md index fe935dd..0c5a755 100644 --- a/rs232-nullmodem-ppp-internetconnection.md +++ b/rs232-nullmodem-ppp-internetconnection.md @@ -49,4 +49,20 @@ done You may need root permissions for all the above commands. -Configuring Windows 95 is as simple as opening Direct Cable Connection, choosing the Guest mode and a COM port. Click Next and connection should be established immediately. You can even browse Samba shares right away. The solution should work in Windows 98 as well but I havent tested it. Happy browsing! \ No newline at end of file +Configuring Windows 95 is as simple as opening Direct Cable Connection, choosing the Guest mode and a COM port. Click Next and connection should be established immediately. You can even browse Samba shares right away. The solution should work in Windows 98 as well but I havent tested it. Happy browsing! + + + +-------------------- + +https://unix.stackexchange.com/questions/474687/ppp-between-two-machines-over-serial-without-a-modem + +After messing around for sometime I managed to get it working. Here is the command for Fedora machine + +```sudo pppd -detach local debug noauth passive lock 192.168.10.100:192.168.10.1 /dev/ttyUSB0 9600``` + +And here is the command for a Linux 4.14.0-xilinx-v2018.2 machine + +```pppd -detach persist debug local noauth passive lock 192.168.10.1:192.168.10.100 /dev/ttyS0 9600``` + +I've been struggling with the problem for the past 2 months. Not sure why this question was initially downgraded. I imagine there are other people who had the same issue.