ssh over WAN: TCP window too small
Gary Palmer
gpalmer at freebsd.org
Wed Aug 26 22:23:11 UTC 2015
On Wed, Aug 26, 2015 at 02:30:07PM -0700, Chris Stankevitz wrote:
> > ktrace -i ssh <params>...
>
> Thank you, this is awesome. Is there a way for me to ktrace 'b' in this
> example: `a | b | c`? I tried `ktrace a | b | c` and `ktrace test.sh`
> (which included a|b|c) but neither seemed to work. I'm using stream
> redirection now but it doesn't afford me the bs control of dd. Perhaps
> named pipes is the solution.
a | ktrace b | c
or
ktrace -di test.sh
(I suspect only -i is needed, but I've gotten so used to using both flags)
You can also start ktrace on an existing process if you know its PID
ktrace -p <pid>
To stop all ongoing tracing:
ktrace -C
Regards,
Gary
More information about the freebsd-net
mailing list