Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS > > OK, after looking at all of your results, I am more confused than > ever. > > Most of the stats that "ovs-dpctl -s show" reports come from exactly > the

Re: [ovs-dev] debugging OVS

2014-09-19 Thread Ben Pfaff
> > From: b...@nicira.com > > To: sam.anda...@hotmail.com > > CC: disc...@openvswitch.org; dev@openvswitch.org > > Subject: Re: [ovs-dev] debugging OVS > > > > What version of OVS is this? > > > > On Fri, Sep 19, 2014 at 02:02:11PM -0400, samantha Andare

Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
ovs_version: "2.0.2" > Date: Fri, 19 Sep 2014 11:11:03 -0700 > From: b...@nicira.com > To: sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS > > What version of OVS is this? > > On Fri, Sep 1

Re: [ovs-dev] debugging OVS

2014-09-19 Thread Ben Pfaff
> > Date: Fri, 19 Sep 2014 10:07:52 -0700 > > From: b...@nicira.com > > To: sam.anda...@hotmail.com > > CC: disc...@openvswitch.org; dev@openvswitch.org > > Subject: Re: [ovs-dev] debugging OVS > > > > What's in /sys/class/net/eth1/statistics/tx

Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
Sep 2014 10:07:52 -0700 > From: b...@nicira.com > To: sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS > > What's in /sys/class/net/eth1/statistics/tx_dropped? > > On Fri, Sep 19, 2014 at 11:40:25AM -

Re: [ovs-dev] debugging OVS

2014-09-19 Thread Ben Pfaff
RX bytes:270154 (270.1 KB) TX bytes:2966862 (2.9 MB) > > and you can see there are no dropped count in there! > > sam > > > Date: Fri, 19 Sep 2014 08:33:27 -0700 > > From: b...@nicira.com > > To: sam.anda...@hotmail.com > > CC: disc...@openvswitch.org; dev@o

Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
m > To: sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS > > Can you show us the "ovs-dpctl show" output? > > Thanks, > > Ben. > > On Fri, Sep 19, 2014 at 11:30:05AM -0400, samantha Anda

Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
RX bytes:220953 (215.8 KiB) TX bytes:2651472 (2.5 MiB) sam > Date: Fri, 19 Sep 2014 08:33:27 -0700 > From: b...@nicira.com > To: sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS > > Can you show u

Re: [ovs-dev] debugging OVS

2014-09-19 Thread Ben Pfaff
ks, > > sam > > > Date: Fri, 19 Sep 2014 08:20:24 -0700 > > From: b...@nicira.com > > To: sam.anda...@hotmail.com > > CC: disc...@openvswitch.org; dev@openvswitch.org > > Subject: Re: [ovs-dev] debugging OVS > > > > [dropping mininet-discuss

Re: [ovs-dev] debugging OVS

2014-09-19 Thread samantha Andares
imple iperf udp messages.. tried flow of 10MB and 100KB... problem is the same... thanks, sam > Date: Fri, 19 Sep 2014 08:20:24 -0700 > From: b...@nicira.com > To: sam.anda...@hotmail.com > CC: disc...@openvswitch.org; dev@openvswitch.org > Subject: Re: [ovs-dev] debugging OVS &g

Re: [ovs-dev] debugging OVS

2014-09-19 Thread Ben Pfaff
[dropping mininet-discuss because it is a closed mailing list and I am not a subscriber] On Thu, Sep 18, 2014 at 05:37:43PM -0400, samantha Andares wrote: > I am getting packets dropped when going out of an OVS bridge. The TX > dropped is increased in ovs-dpctl but not at the physical interface >

Re: [ovs-dev] Debugging OVS source code

2014-04-15 Thread Andy Zhou
Try: $ ovs-appctl vlog/set :dbg This will enable logging for all message levels, including the DBG level. This should produce a lot of logs. Once this is working, you can restart vswitchd, or use vlog/set command again to trim back the logging level. vlog command is documented in vswitchd man pag

Re: [ovs-dev] Debugging OVS source code

2014-04-15 Thread Nagashree Sharma
I tried enabling vlog for all modules & Started ovs process with log-file option. Log file gets created but nothing is logged other than the initial lines. On Tue, Mar 25, 2014 at 6:32 PM, Andy Zhou wrote: > Take a look at lib/vlog.h > > On Tue, Mar 25, 2014 at 2:35 AM, Nagashree Sharma > wrot

Re: [ovs-dev] Debugging OVS source code

2014-03-25 Thread Andy Zhou
Take a look at lib/vlog.h On Tue, Mar 25, 2014 at 2:35 AM, Nagashree Sharma wrote: > is there any doc on the usage of of VLOG. the compilation works fine with > vlog but i am not able to see the logs in the file. > > > On Sun, Mar 23, 2014 at 2:29 AM, Andy Zhou wrote: >> >> You may want to give

Re: [ovs-dev] Debugging OVS source code

2014-03-25 Thread Nagashree Sharma
is there any doc on the usage of of VLOG. the compilation works fine with vlog but i am not able to see the logs in the file. On Sun, Mar 23, 2014 at 2:29 AM, Andy Zhou wrote: > You may want to give VLOG_ERR() a try. It can be used pretty much like > printf, except the output goes into ovs-vswi

Re: [ovs-dev] Debugging OVS source code

2014-03-22 Thread Andy Zhou
You may want to give VLOG_ERR() a try. It can be used pretty much like printf, except the output goes into ovs-vswitchd.log. Grep for "VLOG" in OVS code base if you want examples. On Sat, Mar 22, 2014 at 11:18 AM, Nagashree Sharma wrote: > Hi , > > I am trying to play around with Openvswitch so