Re: [vpp-dev] problem getting udp_register_dst_port interface to work.

2017-06-14 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
rx-miss 2893555 My rx packets stop incrementing and the rx-ro-buf and rx-miss are incrementing. What does this mean? Thanks, Guy From: Neale Ranns (nranns) Sent: Tuesday, June 13, 2017 4:47 PM To: Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco

Re: [vpp-dev] problem getting udp_register_dst_port interface to work.

2017-06-14 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
to abide by the ‘need a route back to the sender’ rule. So please; sh ip fib 10.10.10.34 also; sh error is helpful in the game of who-dropped-my-packet. Thanks, neale From: "Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)" <gudou...@cisco.com

Re: [vpp-dev] problem getting udp_register_dst_port interface to work.

2017-06-13 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
p4-mfib-forward-rpf entry 6 1 Accept, Thanks, Guy From: Neale Ranns (nranns) Sent: Tuesday, June 13, 2017 12:20 PM To: Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco); vpp-dev Subject: Re: [vpp-dev] problem getting udp_register_dst_port interface to work. Hi

[vpp-dev] problem getting udp_register_dst_port interface to work.

2017-06-13 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
I am trying to process the following packets using the udp_register_dst_port interface: UDP: 10.10.10.34 -> 232.0.0.1 tos 0x00, ttl 0, length 1428, checksum 0x792c fragment id 0x, flags DONT_FRAGMENT UDP: 1234 -> 5001 length 1408, checksum 0x 01:22:29:244229:

[vpp-dev] adding new udp port for udp_register_dst_port interface

2017-05-29 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
Hi, I am trying use the udp_register_dst_port interface with a new entry for UDP_DST_PORT_stream in udp.h. -> foreach_udp4_dst_port as follows: #define foreach_udp4_dst_port \ _ (67, dhcp_to_server) \ ... _ (5001, stream) ... When I build, the binary

Re: [vpp-dev] VPP/How To Build The Sample Plugin

2017-05-26 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
I had the same problem last week, Try the following: autoreconf -fis .configure make Guy From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of Alessio Silvestro Sent: Friday, May 26, 2017 7:53 AM To: vpp-dev@lists.fd.io Subject: [vpp-dev] VPP/How To Build The

[vpp-dev] using clib_socket interface to receive udp stream

2017-05-12 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
Hi, I am trying to use the clib_socket interface to process a udp multical stream being received by fd.io interface. I followed the example in test_socket.c. I am registering for the stream as follows: s->config = "232.0.0.1:5001"; .. error = clib_socket_init (s); .. error = clib_socket_rx

[vpp-dev] C++ app for processing udp messages

2017-05-11 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
Hi, I have FD.IO setup to receive a multicast stream. I would like to create a c++ app to process the udp messages but I am having trouble figuring out what api to use and how to set this up. The messages I am trying to processes are as follows: 00:14:50:997590: dpdk-input

Re: [vpp-dev] vpp-dev Digest, Vol 16, Issue 4

2017-05-02 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
ment was scrubbed... URL: <http://lists.fd.io/pipermail/vpp-dev/attachments/20170502/4cb1a370/attachment-0001.html> -- Message: 2 Date: Tue, 2 May 2017 09:56:47 +0000 From: "Neale Ranns (nranns)" <nra...@cisco.com> To: "Guy Doucet -X (gudoucet - FL

[vpp-dev] Listening to IGMP multicast source address

2017-05-01 Thread Guy Doucet -X (gudoucet - FLEXTRONICS CANADA DESIGN SERVICES INC at Cisco)
Hi, I have created a GigabitEthernet1/0/1 interface on a Centos 7 system. I would like to configure this to listen to an IGMP multicast source address on an L3 switch. Is this currently supported on vpp and if so, how do I configure it? Thanks, Guy