1

There is pppd program that can be used to create point-to-point conections over various channels (including other network).

It supports authentication and compression. But does it encrypt traffic or encryption is only used at authentication phase? Where can I see the algorithm and key size?

Vi.
  • 219
  • 2
  • 10

1 Answers1

1

PPP has several extensions for that, e.g. RFC 1968 and Microsoft's MPPE. At least this pppd for Linux knows how to use MPPE, provided that the kernel was configured to support it (the bulk encryption work is done in the kernel). See the man page for how to configure algorithms and key size.

Of course, you will get encryption only if both ends of the link support it.

Tom Leek
  • 172,594
  • 29
  • 349
  • 481