summaryrefslogtreecommitdiff
path: root/data/templates/vpp/override.conf.j2
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-06-26 11:24:01 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2023-06-27 10:54:04 +0000
commit8f402c2ba47ed3ccbf94f9f037ec6e18d6b975ea (patch)
tree7c375531f875abbea9236e8f1bc2d29f4da93eb6 /data/templates/vpp/override.conf.j2
parent3f197566f957cb0e354a474bccee0aefd62b33be (diff)
downloadvyos-1x-8f402c2ba47ed3ccbf94f9f037ec6e18d6b975ea.tar.gz
vyos-1x-8f402c2ba47ed3ccbf94f9f037ec6e18d6b975ea.zip
T1797: Add initial vpp configuration
Add initial configuration mode for VPP (PoC) set vpp cpu corelist-workers '2' set vpp cpu main-core '1' set vpp interface eth1 num-rx-desc '256' set vpp interface eth1 num-rx-queues '512' set vpp interface eth1 num-tx-desc '256' set vpp interface eth1 num-tx-queues '512' set vpp interface eth1 pci '0000:02:00.0' set vpp interface eth1 rx-mode 'polling' set vpp interface eth2 pci '0000:08:00.0' Limitation: - 'set vpp interface ethX pci auto' works only per first commit, then interface detached from default stack and creates tun interface 'ethX' to communicate with default stack. In this case we can't get PCI address via ethtool for 'tun' interfaces. But we can set pci address manualy. - Interface sync between default stack and VPP-DPDK stack After vpp change it doesn't trigger iproute2 for changes (should be written later) I.e. if we change something in vpp per each commit it restarts vpp.service it gets empty interface config as we don't configure vpp directly and it should be configured via iproute2 But then if we do any change on interface (for example description) it gets IP address, MTU, state, etc.
Diffstat (limited to 'data/templates/vpp/override.conf.j2')
-rw-r--r--data/templates/vpp/override.conf.j214
1 files changed, 14 insertions, 0 deletions
diff --git a/data/templates/vpp/override.conf.j2 b/data/templates/vpp/override.conf.j2
new file mode 100644
index 000000000..a2c2b04ed
--- /dev/null
+++ b/data/templates/vpp/override.conf.j2
@@ -0,0 +1,14 @@
+[Unit]
+After=
+After=vyos-router.service
+ConditionPathExists=
+ConditionPathExists=/run/vpp/vpp.conf
+
+[Service]
+EnvironmentFile=
+ExecStart=
+ExecStart=/usr/bin/vpp -c /run/vpp/vpp.conf
+WorkingDirectory=
+WorkingDirectory=/run/vpp
+Restart=always
+RestartSec=10