FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
src/vnet/devices/pipe

pipe create

Summary/usage

pipe create [instance <instance>].

Description

Create a pipe interface.

Example usage
The following two command syntaxes are equivalent:
vpp# pipe create-interface [mac <mac-addr>] [instance <instance>]
Example of how to create a pipe interface:
vpp# pipe create

Declaration and implementation

Declaration: pipe_create_interface_command (src/vnet/devices/pipe/pipe.c line 700)

Implementation: create_pipe_interfaces.

pipe delete

Summary/usage

pipe delete <interface>.

Description

Delete a pipe interface.

Example usage
The following two command syntaxes are equivalent:
vpp# pipe delete intfc <interface>
Example of how to delete a pipe interface:
vpp# pipe delete-interface intfc loop0

Declaration and implementation

Declaration: pipe_delete_interface_command (src/vnet/devices/pipe/pipe.c line 780)

Implementation: delete_pipe_interfaces.