First post, by MrAvaronald
I'm trying to connect my old Nokia MikroMikko 386 to network using serial port and pppd-service running on my Raspberry Pi 3B+ and a usb-to-serial connector in it. (On the retro maching I use DosPPPD and epppd.exe from it.)
I've used the method described in here: https://medium.com/@adampachulskicodes/connec … 19-b93a422ff094 and Michael Brutman's instructions on his mTCP manual. I've been able to connect to Raspberry and ping it and use e.g. FTP. However, I can't ping any other machines on my home network, let alone connect to internet.
I've tried to not use iptables (or any firewall) and also using iptables and setting forwarding rules, but no avail. I can't reach anything beyond the Raspberry Pi.
I've used this command in Raspberry Pi OS to start pppd:
pppd ttyUSB0 57600 local lock passive proxyarp defaultroute noauth persist mtu 576 192.168.0.161:192.168.0.162
.
Using this snippet from Brutman's instructions
echo 1 > /proc/sys/net/ipv4/ip_forward
doesn't do anything.
Nor does this:
iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
iptables -A FORWARD -i wlan0 -o ppp0 -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i ppp0 -o wlan0 -j ACCEPT
Does anyone have any ideas what I'm missing or doing wrong.
A project is where the incapable are trying to make the reluctant do the impossible.