Difference between revisions of "VPP/VPPHostStack/TestHttpServer"

From fd.io
< VPP
Jump to: navigation, search
(HTTP Server Test App)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
= HTTP Server Test App =
 
= HTTP Server Test App =
  
This is a simple HTTP server app that executes GET requests as CLI commands and returns the result. It can also return a static reply for CPS testing.  
+
This is a simple HTTP server app that executes GET requests as CLI commands and returns the result. It can also return a static reply for CPS testing. For a full list of options see the [https://docs.fd.io/vpp/18.04/clicmd_src_vnet_session-apps.html#clicmd_test_http_server CLI docs].
 +
 
 +
== Run the app ==
  
 
To start the server do:
 
To start the server do:

Latest revision as of 00:50, 7 March 2018

HTTP Server Test App

This is a simple HTTP server app that executes GET requests as CLI commands and returns the result. It can also return a static reply for CPS testing. For a full list of options see the CLI docs.

Run the app

To start the server do:

# test http server uri tcp://local-ip/port

In a browser that has connectivity to the server execute

http://vpp_ip/port/sh/run

If all went well, vpp should have returned the results of the show run command.

The server can use TLS as transport as well. Note however that for testing purposes it uses a builtin self-signed certificate so the browser will most probably complain about the validity of the certificate. To test this out, start the server with TLS as transport and use https to connect from the browser.