<div dir="ltr">Hello,<div>I am referring to <a href="http://docs.openvswitch.org/en/latest/howto/sflow/">http://docs.openvswitch.org/en/latest/howto/sflow/</a></div><div><div class="gmail-highlight-default" style="vertical-align:top;color:rgb(0,0,0);font-family:Arial,Helvetica,sans-serif;font-size:14px"><div class="gmail-highlight" style="vertical-align:top;border:1px solid rgb(234,234,234);border-radius:4px;margin:25px 0px;overflow:auto;padding:10px 20px;background:rgb(240,240,240)"><pre style="overflow:auto;margin-top:0px;margin-bottom:0px">$ ovs-vsctl -- --id=@sflow create sflow agent=${AGENT_IP} \
    target=&quot;${COLLECTOR_IP}:${COLLECTOR_PORT}&quot; header=${HEADER_BYTES} \
    sampling=${SAMPLING_N} polling=${POLLING_SECS} \
      -- set bridge br0 sflow=@sflow</pre></div></div></div><div>In the above, the quotes need to be escaped otherwise, the command will not work.  I think it should be fixed to:</div><div><div class="gmail-highlight-default" style="vertical-align:top;font-family:Arial,Helvetica,sans-serif;font-size:14px"><div class="gmail-highlight" style="vertical-align:top;border:1px solid rgb(234,234,234);border-radius:4px;margin:25px 0px;overflow:auto;padding:10px 20px;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-origin:initial;background-clip:initial"><pre style="overflow:auto;margin-top:0px;margin-bottom:0px"><span style="color:rgb(0,0,0);background-color:rgb(240,240,240)">$ ovs-vsctl -- --id=@sflow create sflow agent=${AGENT_IP} \
    target=</span><b style="background-color:rgb(255,255,0)"><font color="#cc0000">\</font></b><span style="color:rgb(0,0,0);background-color:rgb(240,240,240)">&quot;${COLLECTOR_IP}:${COLLECTOR_PORT}</span><span style="background-color:rgb(255,255,0)"><b style=""><font color="#cc0000">\</font></b></span><span style="color:rgb(0,0,0);background-color:rgb(240,240,240)">&quot; header=${HEADER_BYTES} \
    sampling=${SAMPLING_N} polling=${POLLING_SECS} \
      -- set bridge br0 sflow=@sflow</span></pre></div></div></div></div>