2025-01-21 08:07 AM
Hello, I have a question about LWIP functionality.
I'd like to know if it's possible to redirect a tcp request received on the pppos interface, to a device that is connected onto the ethernet interface and listening on the desired port.
Thanks in advance!
2025-02-18 02:59 AM
Hello @RPC ,
I assume that would be possible as mentioned in LwIP documentation and this can be done by setting
#define IP_FORWARD 1 |
IP_FORWARD==1: Enables the ability to forward IP packets across network interfaces. If you are going to run lwIP on a device with only one network interface, define this to 0. refer to lwIP: IPv4.
Regards
2025-02-18 03:16 AM