- public uint baud { get; set construct; }
If non-zero, instruct pppd to set the serial port to the specified
baudrate.
- public bool crtscts { get; set construct; }
If true
, specify that pppd should set the serial port to
use hardware flow control with RTS and CTS signals.
- public uint lcp_echo_failure { get; set construct; }
If non-zero, instruct pppd to presume the connection to the peer has
failed if the specified number of LCP echo-requests go unanswered by the peer.
- public uint lcp_echo_interval { get; set construct; }
If non-zero, instruct pppd to send an LCP echo-request frame to the
peer every n seconds (where n is the specified value).
- public bool mppe_stateful { get; set construct; }
If true
, stateful MPPE is used.
- public uint mru { get; set construct; }
If non-zero, instruct pppd to request that the peer send packets no
larger than the specified size.
- public uint mtu { get; set construct; }
If non-zero, instruct pppd to send packets no larger than the
specified size.
- public bool no_vj_comp { get; set construct; }
If true
, Van Jacobsen TCP header compression will not be
requested.
- public bool noauth { get; set construct; }
If true
, do not require the other side (usually the PPP
server) to authenticate itself to the client.
- public bool nobsdcomp { get; set construct; }
If true
, BSD compression will not be requested.
- public bool nodeflate { get; set construct; }
If true
, "deflate" compression will not be requested.
- public bool refuse_chap { get; set construct; }
If true
, the CHAP authentication method will not be used.
- public bool refuse_eap { get; set construct; }
If true
, the EAP authentication method will not be used.
- public bool refuse_mschap { get; set construct; }
If true
, the MSCHAP authentication method will not be
used.
- public bool refuse_mschapv2 { get; set construct; }
If true
, the MSCHAPv2 authentication method will not be
used.
- public bool refuse_pap { get; set construct; }
If true
, the PAP authentication method will not be used.
- public bool require_mppe { get; set construct; }
If true
, MPPE (Microsoft Point-to-Point Encryption) will
be required for the PPP session.
- public bool require_mppe_128 { get; set construct; }
If true
, 128-bit MPPE (Microsoft Point-to-Point
Encryption) will be required for the PPP session, and the "require-mppe" property must also be set to true
.