SPPPCONTROL(8) | MidnightBSD System Manager's Manual | SPPPCONTROL(8) |
spppcontrol
—
display or set parameters for an sppp interface
spppcontrol |
[-v ] ifname
[parameter[= value]]
[...] |
The sppp(4)
driver might require a number of additional arguments or optional parameters
besides the settings that can be adjusted with
ifconfig(8). These are
things like authentication protocol parameters, but also other tunable
configuration variables. The spppcontrol
utility can
be used to display the current settings, or adjust these parameters as
required.
For whatever intent spppcontrol
is being
called, at least the parameter ifname needs to be
specified, naming the interface for which the settings are to be performed
or displayed. Use
ifconfig(8), or
netstat(1) to see which
interfaces are available.
If no other parameter is given,
spppcontrol
will just list the current settings for
ifname and exit. The reported settings include the
current PPP phase the interface is in, which can be one of the names
dead,
establish,
authenticate,
network,
or
terminate.
If an authentication protocol is configured for the interface, the name of
the protocol to be used, as well as the system name to be used or expected
will be displayed, plus any possible options to the authentication protocol
if applicable. Note that the authentication secrets (sometimes also called
keys) are
not being returned by the underlying system call, and are thus not
displayed.
If any additional parameter is supplied, superuser privileges are
required, and the command works in the “set” mode. This is
normally done quietly, unless the option -v
is also
enabled, which will cause a final printout of the settings as described
above once all other actions have been taken. Use of this mode will be
rejected if the interface is currently in any other phase than
dead. Note that you can force an interface into
dead phase by calling
ifconfig(8) with the
parameter down
.
The currently supported parameters include:
=
protonamechap
”,
“pap
”, or
“none
”. In the latter case, the use
of an authentication protocol will be turned off for the named interface.
This has the side-effect of clearing the other authentication-related
parameters for this interface as well (i.e., system name and
authentication secret will be forgotten).=
protoname=
protoname=
name=
name=
secret=
secret=
secret=
secret=
timeout-value# spppcontrol bppp0 bppp0: phase=dead myauthproto=chap myauthname="uriah" hisauthproto=chap hisauthname="ifb-gw" norechallenge lcp-timeout=3000 enable-vj enable-ipv6
Display the settings for bppp0
. The
interface is currently in dead phase, i.e., the LCP layer
is down, and no traffic is possible. Both ends of the connection use the
CHAP protocol, my end tells remote the system name
“uriah
”, and remote is expected to
authenticate by the name “ifb-gw
”.
Once the initial CHAP handshake was successful, no further CHAP challenges
will be transmitted. There are supposedly some known CHAP secrets for both
ends of the link which are not being shown.
# spppcontrol bppp0 \ authproto=chap \ myauthname=uriah myauthsecret='some secret' \ hisauthname=ifb-gw hisauthsecret='another' \ norechallenge
A possible call to spppcontrol
that could
have been used to bring the interface into the state shown by the previous
example.
netstat(1), sppp(4), ifconfig(8)
B. Lloyd and W. Simpson, PPP Authentication Protocols, RFC 1334.
W. Simpson, Editor, The Point-to-Point Protocol (PPP), RFC 1661.
W. Simpson, PPP Challenge Handshake Authentication Protocol (CHAP), RFC 1994.
The spppcontrol
utility appeared in
FreeBSD 3.0.
The program was written by Jörg Wunsch, Dresden.
December 30, 2001 | midnightbsd-3.1 |