From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Thu, 10 May 2007 10:33:02 -0400 From: James Cook To: 9fans@cse.psu.edu Message-ID: <20070510143302.GA84426@butterfly.falsifian.afraid.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: [9fans] PPP fix Topicbox-Message-UUID: 62afc8e0-ead2-11e9-9d60-3106f5b1d025 Plan 9's ip/ppp doesn't work with my PPPoE ISP (Sympatico). A few years ago I investigated and figured out how to make it work. I think it had something to do with Plan 9's end of the connection not preserving configuration information when sending acknowledgements; sorry I can't remember in more detail. In case anyone else is having the same problem, here's the diff. cpu% cpu% diff /n/sources/plan9/sys/src/cmd/ip/ppp/ppp.c /sys/src/cmd/ip/ppp/ppp.c 1111c1111 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1129c1129 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1138c1138 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1143c1143 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1152c1152 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1157c1157 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1166c1166 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1171c1171 < dropoption(p, o); --- > /* dropoption(p, o);*/ 1180c1180 < dropoption(p, o); --- > /* dropoption(p, o);*/ James