Bug 42292

Summary: PPP documentation should use quote marks around AUTHNAME etc.
Product: Documentation Reporter: matthias.andree <matthias.andree>
Component: Books & ArticlesAssignee: Giorgos Keramidas <keramida>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description matthias.andree 2002-09-01 19:00:10 UTC
The PPP documentation always refers to

   set authname YOURLOGINNAME
   set authkey  YOURPASSWORD

At least T-Online, one of the major ISPs in Germany, however expects a "#" in the
user name, like this:

    00087xxxxxxx320yyyyyyyyy#0001@t-online.de

x and y are all digits.

When doing 

    set authname 00087xxxxxxx320yyyyyyyyy#0001@t-online.de

the 0001@t-online.de part will be cut by PPP, and some dialup nodes will then 
reject the login. This affects T-DSL -- PPP over Ethernet (PPPoE) in particular.

Fix: 

Instead, 

    set authname "00087xxxxxxx320yyyyyyyyy#0001@t-online.de"

must be used to make the # a regular character rather than a comment delimiter, 
so I suggest that examples and documentation be adjusted to read

   set authname "YOURLOGINNAME"
   set authkey  "YOURPASSWORD"

Thanks.
Comment 1 Giorgos Keramidas freebsd_committer freebsd_triage 2003-04-10 22:33:14 UTC
State Changed
From-To: open->patched

I've updated the sample config files in current.  Thanks! 


Comment 2 Giorgos Keramidas freebsd_committer freebsd_triage 2003-04-10 22:33:14 UTC
Responsible Changed
From-To: freebsd-doc->keramida

I will take care of MFCing this.
Comment 3 Giorgos Keramidas freebsd_committer freebsd_triage 2003-05-03 22:47:08 UTC
State Changed
From-To: patched->closed

Merged to RELENG_4.