linux-ppp.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Problems with pppd option: record file
@ 2015-11-18 18:13 Thomas Bergholz
  2015-11-18 19:42 ` James Carlson
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Thomas Bergholz @ 2015-11-18 18:13 UTC (permalink / raw)
  To: linux-ppp

Hey linux-ppp users,

not sure if this may be a bug or just me making a mistake.

It would be great if you could take a look:

I am having problems getting the "record filename" option to work.
The pppd process does work fine and connects to the internet, but it
does not create the capture file.
I also do not see any "errors" in the pppd.log file, which i configured.
Everything looks good from my point of view.

I am using ubuntu 14.04 and rasbian.
pppd version 2.4.5 (for both)

My peer configuration looks like this:

# CONFIG FILE
kdebug 4
debug
logfile /tmp/pppd.log
record /tmp/pppd_capture.pcap
plugin rp-pppoe.so
eth0
user "someuser"
unit 0
noipdefault
defaultroute
replacedefaultroute
hide-password
noauth
persist
maxfail 10
lcp-echo-interval 20
lcp-echo-failure 3
mtu 1492
default-asyncmap
noaccomp
refuse-pap

I recongnized that the raspi prints "unrecognized option 'record'", even
though the "record file" option is mentioned in the pppd manpage.
Ubuntu does not print this message.

Do you have any ideas where i can look for the cause?

Best Regards,
Thomas

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Problems with pppd option: record file
  2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
@ 2015-11-18 19:42 ` James Carlson
  2015-11-18 21:11 ` Thomas Bergholz
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: James Carlson @ 2015-11-18 19:42 UTC (permalink / raw)
  To: linux-ppp

On 11/18/15 13:13, Thomas Bergholz wrote:
> kdebug 4

kdebug almost never does what you want, unless you're hacking the kernel
modules themselves.  Are you sure you need this?

> record /tmp/pppd_capture.pcap

This looks to me like a bad idea.  First of all, the "record" option,
besides being quite brutal (it uses a pty pair and passes all data back
and forth in and out of the kernel multiple times), does not create pcap
format files.  It creates async data files in a special format that only
pppdump normally reads.  It's very hard to use, and is definitely NOT an
accurate recording if you're using anything other than PPP on an
asynchronous line.  Even then, it's appropriate only if you're debugging
a problem in AHDLC encoding or flow control or something like that.
It's close to worthless for higher level (PPP negotiation or IP data)
debugging.

And this isn't configured as PPP on an asynchronous line.  So, even if
you could make it work, it wouldn't give you accurate results for
debugging, because it passes the data through an asynchronous
pseudo-terminal, and Ethernet is anything but that.

I suggest just running wireshark on eth0 instead.  Since this is a PPPoE
connection, that will capture everything, and wireshark is great at
decoding PPPoE (and PPP) negotiation.

> unit 0

Not sure why this appears here.

> I recongnized that the raspi prints "unrecognized option 'record'", even
> though the "record file" option is mentioned in the pppd manpage.
> Ubuntu does not print this message.

Is this a copy of pppd that you compiled from source or one that you got
from someone else?

If it's one that you compiled from source, I'd suggest looking at
pppd/tty.c to see why that option is missing.

If it's one that you got from someone else, then you need to ask them
what's been done to it.  Some distributors make changes, and it's
possible they just removed this (mostly useless) option.

I suggest starting over at the top: what problem are you trying to solve?

-- 
James Carlson         42.703N 71.076W         <carlsonj@workingcode.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Problems with pppd option: record file
  2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
  2015-11-18 19:42 ` James Carlson
@ 2015-11-18 21:11 ` Thomas Bergholz
  2015-11-18 21:19 ` James Carlson
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Thomas Bergholz @ 2015-11-18 21:11 UTC (permalink / raw)
  To: linux-ppp

Hey James - thanks for the input,

Starting over at top :-)

Trying to find out why the capture file does not show up. I am
interested in the parts which tshark does not display.
https://wiki.wireshark.org/CaptureSetup/PPP#Linux

I activated "debug" and "kdebug 4" to track down probable causes for the
missing capture file (well yes, kdebug may not make much sense).

I have to admit that I went the lazy way and did not compile pppd myself
yet.


----- Original Message -----
*From:* James Carlson
*To:* Thomas Bergholz, Problems With Pppd Option: Record File
*CC:*
*Sent:* Wed, 18 Nov 2015 14:42:41 -0500
*Subject:* Re: Problems with pppd option: record file

 

> On 11/18/15 13:13, Thomas Bergholz wrote:
>> kdebug 4
> kdebug almost never does what you want, unless you're hacking the kernel
> modules themselves.  Are you sure you need this?
>
>> record /tmp/pppd_capture.pcap
> This looks to me like a bad idea.  First of all, the "record" option,
> besides being quite brutal (it uses a pty pair and passes all data back
> and forth in and out of the kernel multiple times), does not create pcap
> format files.  It creates async data files in a special format that only
> pppdump normally reads.  It's very hard to use, and is definitely NOT an
> accurate recording if you're using anything other than PPP on an
> asynchronous line.  Even then, it's appropriate only if you're debugging
> a problem in AHDLC encoding or flow control or something like that.
> It's close to worthless for higher level (PPP negotiation or IP data)
> debugging.
>
> And this isn't configured as PPP on an asynchronous line.  So, even if
> you could make it work, it wouldn't give you accurate results for
> debugging, because it passes the data through an asynchronous
> pseudo-terminal, and Ethernet is anything but that.
>
> I suggest just running wireshark on eth0 instead.  Since this is a PPPoE
> connection, that will capture everything, and wireshark is great at
> decoding PPPoE (and PPP) negotiation.
>
>> unit 0
> Not sure why this appears here.
>
>> I recongnized that the raspi prints "unrecognized option 'record'", even
>> though the "record file" option is mentioned in the pppd manpage.
>> Ubuntu does not print this message.
> Is this a copy of pppd that you compiled from source or one that you got
> from someone else?
>
> If it's one that you compiled from source, I'd suggest looking at
> pppd/tty.c to see why that option is missing.
>
> If it's one that you got from someone else, then you need to ask them
> what's been done to it.  Some distributors make changes, and it's
> possible they just removed this (mostly useless) option.
>
> I suggest starting over at the top: what problem are you trying to solve?
>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Problems with pppd option: record file
  2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
  2015-11-18 19:42 ` James Carlson
  2015-11-18 21:11 ` Thomas Bergholz
@ 2015-11-18 21:19 ` James Carlson
  2015-11-19 19:25 ` Thomas Bergholz
  2015-11-19 19:29 ` James Carlson
  4 siblings, 0 replies; 6+ messages in thread
From: James Carlson @ 2015-11-18 21:19 UTC (permalink / raw)
  To: linux-ppp

On 11/18/15 16:11, Thomas Bergholz wrote:
> Hey James - thanks for the input,
> 
> Starting over at top :-)
> 
> Trying to find out why the capture file does not show up. I am
> interested in the parts which tshark does not display.
> https://wiki.wireshark.org/CaptureSetup/PPP#Linux

That page isn't entirely accurate in this particular case.

If you use wireshark (or tshark) on a PPP device -- say, interface
"ppp0" on your system -- then you will see only the network layer
traffic.  That's the problem that this web page is documenting.

However, you're running PPP over PPPoE, and that's running on Ethernet.
 If you run wireshark on the underlying Ethernet interface -- "eth0" on
your system -- then you will see ALL of the traffic.  That we page
doesn't apply, because "eth0" is Ethernet, not PPP.

The web page should probably be updated to make things a little clearer.

> I activated "debug" and "kdebug 4" to track down probable causes for the
> missing capture file (well yes, kdebug may not make much sense).

Neither of those make sense here.  "debug" shows (primarily) the PPP
negotiation details.  It won't show you why a command line option isn't
implemented.  "kdebug" sends flags into the /dev/ppp kernel driver to
tell it to print things to the system console.  Generally, that's not
too useful unless you have kernel driver issues to work out.

> I have to admit that I went the lazy way and did not compile pppd myself
> yet.

My guess would be that the person who did compile it took it on himself
to delete some useless options.

Just a guess, though.  You'd have to look upstream for that information.
 It's mostly useless, but "record" works fine for me.  :-/

-- 
James Carlson         42.703N 71.076W         <carlsonj@workingcode.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Problems with pppd option: record file
  2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
                   ` (2 preceding siblings ...)
  2015-11-18 21:19 ` James Carlson
@ 2015-11-19 19:25 ` Thomas Bergholz
  2015-11-19 19:29 ` James Carlson
  4 siblings, 0 replies; 6+ messages in thread
From: Thomas Bergholz @ 2015-11-19 19:25 UTC (permalink / raw)
  To: linux-ppp

Actually I did simply not think of trying the underlying physical
interface as capture target directly.... - works great!

Thanks for taking time to watch into this.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Problems with pppd option: record file
  2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
                   ` (3 preceding siblings ...)
  2015-11-19 19:25 ` Thomas Bergholz
@ 2015-11-19 19:29 ` James Carlson
  4 siblings, 0 replies; 6+ messages in thread
From: James Carlson @ 2015-11-19 19:29 UTC (permalink / raw)
  To: linux-ppp

On 11/19/15 14:25, Thomas Bergholz wrote:
> Actually I did simply not think of trying the underlying physical
> interface as capture target directly.... - works great!
> 
> Thanks for taking time to watch into this.
> 

No problem; glad it's working as you need.

(Note that even if you could get the "record" option to work, it would
only be the PPP traffic, and wouldn't include PPPoE.  That lower layer
is sometimes the source of interesting problems.)

-- 
James Carlson         42.703N 71.076W         <carlsonj@workingcode.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-11-19 19:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-18 18:13 Problems with pppd option: record file Thomas Bergholz
2015-11-18 19:42 ` James Carlson
2015-11-18 21:11 ` Thomas Bergholz
2015-11-18 21:19 ` James Carlson
2015-11-19 19:25 ` Thomas Bergholz
2015-11-19 19:29 ` James Carlson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).