Difference between revisions of "VPP/HostStack/LDP/sshd"

From fd.io
< VPP‎ | HostStack
Jump to: navigation, search
(Server configuration)
Line 1: Line 1:
Example of how to run sshd via LDP and VCL on top of VPP's host stack. This is known to work as of vpp [https://gerrit.fd.io/r/#/c/16340/ gerrit 16340] with OpenSSH 7.6p1 on Ubuntu 18.04.1.  
+
Example of how to run sshd via LDP and VCL on top of VPP's host stack. This is known to work as of vpp [https://gerrit.fd.io/r/#/c/16342/ gerrit 16342] with OpenSSH 7.6p1 on Ubuntu 18.04.1.  
  
 
To run the test two hosts with networking connectivity are needed:
 
To run the test two hosts with networking connectivity are needed:

Revision as of 00:53, 5 December 2018

Example of how to run sshd via LDP and VCL on top of VPP's host stack. This is known to work as of vpp gerrit 16342 with OpenSSH 7.6p1 on Ubuntu 18.04.1.

To run the test two hosts with networking connectivity are needed: - server where vpp and sshd run - client where the ssh client runs on top of the linux host stack

Server configuration

Since this is experimental work, it is recommended to start vpp in debug mode with the following additions to startup.conf:

unix { gid vpp }
session { evt_qs_memfd_seg  }
socksvr { socket-name /tmp/vpp-api.sock}

These ensure that vpp starts with gid vpp, the session layer uses memfd segments for event queues and that the binary api can work with a socket transport. It is also important that the user that starts vpp is part of the vpp gid.

The minimal vcl startup configuration in /etc/vpp/vcl.conf should be:

vcl {
  heapsize 64M
  rx-fifo-size 4000000
  tx-fifo-size 4000000
  api-socket-name /tmp/vpp-api.sock
}