LinuxCommandLibrary

pppd

TLDR

Start PPP connection

$ pppd [device] [speed]
copy
Connect with options
$ pppd call [provider]
copy
Debug mode
$ pppd debug [device] [speed]
copy
Specify authentication
$ pppd user [username] password [password]
copy

SYNOPSIS

pppd [options] [device] [speed]

DESCRIPTION

pppd is the Point-to-Point Protocol daemon. Manages PPP connections.
The tool handles dial-up and DSL. Core PPP implementation.
pppd manages PPP links.

PARAMETERS

DEVICE

Serial device.
SPEED
Baud rate.
call PROVIDER
Use provider config.
debug
Enable debugging.
user NAME
Username for auth.
password PASS
Password for auth.
noauth
Don't require auth.

CAVEATS

Requires root privileges. Complex configuration.

HISTORY

pppd is the standard PPP daemon for Linux networking.

SEE ALSO

pon(1), poff(1), pppconfig(8)

Copied to clipboard