Running VPP

After building the VPP binaries, you now have several images built. These images are useful when you need to run VPP without installing the packages. For instance if you want to run VPP with GDB.

Running Without GDB

To run the VPP images that you’ve built without GDB, run the following commands:

Running the release image:

# make run-release
#

Running the debug image:

# make run
#

Running With GDB

With the following commands you can run VPP and then be dropped into the GDB prompt.

Running the release image:

# make debug-release
(gdb)

Running the debug image:

# make debug
(gdb)