diff mbox

[ovs-dev,v2] ofproto: Add some examples for 'ofproto/trace' in ovs-vswitchd man page

Message ID bb55c9d62977967646fa60a4305d28d42e980894.1489423353.git.tredaelli@redhat.com
State Accepted
Headers show

Commit Message

Timothy Redaelli March 13, 2017, 4:43 p.m. UTC
Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1339097
Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
---
Changes in v2:
 - Don't use mask, but use an example MAC address for dl_dst

 ofproto/ofproto-unixctl.man | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

Comments

Ben Pfaff March 17, 2017, 9:44 p.m. UTC | #1
On Mon, Mar 13, 2017 at 05:43:45PM +0100, Timothy Redaelli wrote:
> Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1339097
> Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
> ---
> Changes in v2:
>  - Don't use mask, but use an example MAC address for dl_dst
> 

Thanks, applied to master.
diff mbox

Patch

diff --git a/ofproto/ofproto-unixctl.man b/ofproto/ofproto-unixctl.man
index ce4f7a2..4238373 100644
--- a/ofproto/ofproto-unixctl.man
+++ b/ofproto/ofproto-unixctl.man
@@ -135,3 +135,39 @@  necessary because the command does not ordinarily imply a particular
 OpenFlow version.  One exception is that, when \fIactions\fR includes
 an action that only OpenFlow 1.1 and later supports (such as
 \fBpush_vlan\fR), \fB\-consistent\fR is automatically enabled.
+.
+.IP "Usage examples:"
+.RS 4
+.PP
+\fBTrace an unicast ICMP echo request on ingress port 1 to destination MAC
+00:00:5E:00:53:01\fR
+.RS 4
+.nf
+ofproto/trace br in_port=1,icmp,icmp_type=8,\\
+dl_dst=00:00:5E:00:53:01
+.RE
+.fi
+.PP
+\fBTrace an unicast ICMP echo reply on ingress port 1 to destination MAC
+00:00:5E:00:53:01\fR
+.RS 4
+.nf
+ofproto/trace br in_port=1,icmp,icmp_type=0,\\
+dl_dst=00:00:5E:00:53:01
+.fi
+.RE
+.PP
+\fBTrace an ARP request on ingress port 1\fR
+.RS 4
+.nf
+ofproto/trace br in_port=1,arp,arp_op=1
+.fi
+.RE
+.PP
+\fBTrace an ARP reply on ingress port 1\fR
+.RS 4
+.nf
+ofproto/trace br in_port=1,arp,arp_op=2
+.fi
+.RE
+.RE