Hello,
Yes, it is possible to use packet forwarding from one interface to another. It would be something along the lines of
sudo sysctl -w net.ipv4.ip_forward=1
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
You can look for examples on the net or the man pages. I have not verified the above.
The absence or presence of PPP depends on your kernel's configuration. You probably need the below at a minimum in your kernel configuration.
CONFIG_PPP=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_MPPE=m
CONFIG_PPTP=m
CONFIG_PPPOL2TP=m
CONFIG_PPP_ASYNC=m
CONFIG_USB_ACM=m
- Sanchayan.