Re: [SUSPECTED SPAM] [vpp-dev] IPFIX Nat Logging

2019-01-14 Thread emma sdi
Dear Ole, No I don't see any things on the wire. Ipfix logging doesn't work in flowprobe and nat mode for me . my vpp version is stable18.10  Warm Regards, -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#11910): https://lists.fd.io/g/vpp-dev/messa

Re: [vpp-dev] Using prefetch and buffer_enqueue

2019-01-14 Thread Damjan Marion via Lists.Fd.Io
> On 10 Jan 2019, at 07:15, Raj wrote: > > On Wed, Jan 9, 2019 at 4:18 PM Damjan Marion wrote: >>> On 9 Jan 2019, at 09:53, Raj wrote: >>> 1. static_always_inline void >>> vlib_buffer_enqueue_to_next (vlib_main_t * vm, vlib_node_runtime_t * node, >>> u32 * buf

[vpp-dev] Issues running vpp #vpp

2019-01-14 Thread Abdul Hadi
Hi All, I suddenly have this problem of not being able to run vpp. Tried both building and installing myself and using also vagrant as well. Both scenarios end up with the same error which is clib_socket_init: connect (fd 3, '/run/vpp/cli.sock'): No such file or directory Can any one help? if t

Re: [vpp-dev] Issues running vpp #vpp

2019-01-14 Thread Paul Vinciguerra
You probably need to either run VPP as root or specify an alternate file location that your user can write to in your config.  cli-listen /run/vpp/cli.sock -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#11913): https://lists.fd.io/g/vpp-dev/message

[vpp-dev] Reminder: VPP Release 19.01 RC1 date is this Wednesday 16th January 2019

2019-01-14 Thread Andrew Yourtchenko
Hi all, A reminder that the RC1 branch [1] is this Wednesday 16th January at 18:00 UTC. We’re still accepting low-risk patches on master ahead of the branch. [1] https://wiki.fd.io/view/Projects/vpp/Release_Plans/Release_Plan_19.01 --a -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sen

Re: [vpp-dev] Issues running vpp #vpp

2019-01-14 Thread Ray Kinsella
VPP isn't running for some reason, hence you can't connect to it. Ray K On 14/01/2019 16:08, Abdul Hadi wrote: > Hi All, > > I suddenly have this problem of not being able to run vpp. Tried both > building and installing myself and using also vagrant as well. Both > scenarios end up with the sam

[vpp-dev] GoVPP

2019-01-14 Thread Abeeha Aqeel
Hi, I have been trying to implement a simple VPP management application which uses the go bindings generated by GoVPP. The simple-client given in GoVPP works fine but I’ve been trying to add additional functionalities to it. I followed a sample go program from https://www.marosmars.com/blog/m

[vpp-dev] About lock-free operation in policer

2019-01-14 Thread blankspot
hi all, I have a question about policer classify. The code of bind/unbind a policer with interface is: if (is_add) pcm->classify_table_index_by_sw_if_index[ti][sw_if_index] = pct[ti]; else pcm->classify_table_index_by_sw_if_index[ti][sw_if_index] = ~0; and the code checking the

[vpp-dev] VNET classifier table/session

2019-01-14 Thread Harish Patil
Hi, Can you please provide few examples (with right syntax and little explanation) on to how to use VNET classify table and classify session in relatively older VPP releases. "classify table [miss-next|l2-miss_next|acl-miss-next ]" "\n mask buckets [skip ] [match ] [del]", "classify session

Re: [vpp-dev] About lock-free operation in policer

2019-01-14 Thread Kingwel Xie
Simply because most CLI commands and API handlers are marked as not is_mp_safe, hence they are actually protected by vlib_worker_thread_barrier_sync. So to speak, node functions are temporally stopped and waiting when CLI/API is being executed. You should take a look at: vlib_worker_thread_barr