summaryrefslogtreecommitdiff
path: root/docs/vpp/configuration
AgeCommit message (Collapse)Author
2026-05-10chore: remove RST swap mechanism, archive rst-*.rst under docs/_rst_legacy/Yuriy Andamasov
The swap mechanism (RST-as-fallback for migrated MD pages) is dormant — docs/_rst_overrides.txt has been empty since the MyST flip trio (#1899/#1900/#1901) landed. The mechanism's surface area is dead weight and the rst-*.rst shadows scattered across the source tree cause Context7's parser to misclassify the project as RST. Sibling PR on rolling: yuriy/remove-rst-swap-mechanism Changes: - Move 253 rst-*.rst shadow files into docs/_rst_legacy/ preserving subdirectory structure. They remain in the repo for reference; Sphinx excludes the folder via exclude_patterns. - Strip swap_sources.py invocation from docs/Makefile. - Strip jobs: pre_build/post_build block from .readthedocs.yml. - Strip rst-*.rst exclude entry and the _md_exclude.txt loader from docs/conf.py; replace with a single _rst_legacy exclude. - Delete scripts/swap_sources.py, tests/test_swap_sources.py, docs/_rst_overrides.txt. - Update AGENTS.md: drop the "RST override mechanism" section and the test-runner snippet for the deleted test. Verified: sphinx-build -b html with --keep-going produces identical warning set (68 unique), identical sitemap entry count (267), identical llms.txt entry count (22), zero rst-* URLs in any artifact. 🤖 Generated by [robots](https://vyos.io)
2026-05-06feat: flip swap mechanism on circinus — MD as primary, RST as overrideYuriy Andamasov
Mirror of #1899 for circinus. Same logic, same scripts, per-branch file set. Changes: - Rename docs/**/md-<stem>.md to docs/**/<stem>.md (drop md- prefix) for all 253 stems previously listed in docs/_swap.txt - Rename docs/**/<stem>.rst to docs/**/rst-<stem>.rst (add rst- prefix) for the same 253 stems - Repurpose docs/_swap.txt as docs/_rst_overrides.txt; initially empty - conf.py exclude_patterns flipped: rst-*.rst excluded by default - conf.py runtime-artifact references updated to _rst_override_state.json and _md_exclude.txt - scripts/swap_sources.py rewritten with inverted rename direction (rst-<stem>.rst → <stem>.rst when applying overrides; <stem>.md excluded via _md_exclude.txt) - scripts/import_myst.py and tests/test_import_myst.py deleted (obsolete) - tests/test_swap_sources.py rewritten for new semantics Identical change set to #1899 (current). Per-branch differences: - circinus has 253 stems vs current's 254 (suricata is current-only) - otherwise the script/conf.py/test changes are byte-identical with current Generated by robots https://vyos.io
2026-05-06feat: import MyST swap mechanism, llms.txt feature, and content from currentYuriy Andamasov
Replaces the broken #1885/#1869/#1875 trio with a single PR for circinus. This PR: - Imports 254 md-*.md files from currents working MyST conversion (the broken converter that produced #1885s md-*.md files is not used here; currents files are correct as verified on /en/rolling/). - Adds the per-page RST-to-MyST swap mechanism: scripts/swap_sources.py, scripts/import_myst.py, tests, _swap.txt, _ext/vyos.py and Makefile swap-wrapped targets, .readthedocs.yml pre/post hooks. - Replaces 175 .jpg/.png with 187 .webp images for swapped pages. - Adds the llms.txt + sitemap feature (sphinx_llms_txt, sphinx_sitemap) with circinus-tailored html_baseurl https://docs.vyos.io/en/1.5/ and curated docs/_html_extra/llms.txt for 1.5.x. - Updates docs/_html_extra/robots.txt with AI crawler Allow rules and the /en/1.5/sitemap.xml reference. - Drops configuration/service/suricata from the swap set (no matching RST sibling on circinus; suricata is a current-only feature). Supersedes: - #1885 (broken md-*.md converter output) - #1869 (LLM doc adaptation backport, bundled here) - #1875 (llms.txt circinus, bundled here) Generated by robots https://vyos.io
2026-05-06Revert "docs: fix typos and grammar (ported from #1852 RST → MyST)"Yuriy Andamasov
2026-05-06docs: address review feedback (backport from PR #1857)Yuriy Andamasov
🤖 Generated by [robots](https://vyos.io)
2026-05-06feat(swap-circinus): add incremental RST-to-MyST swap mechanismYuriy Andamasov
Backport of the swap mechanism from feat/incremental-myst-swap onto the circinus release branch. Built directly on top of origin/circinus, so the underlying RST tree is circinus's (not current's). Mechanism: - scripts/import_myst.py — import md from myst/* with md- prefix - scripts/swap_sources.py — rename md-{name}.md → {name}.md before Sphinx builds, restore after; writes _build/_swap_state.json and _build/_swap_exclude.txt - docs/Makefile — html/dirhtml/pdf/livehtml all run swap → build → trap restore; explicit `swap` and `restore` targets too - docs/conf.py — MyST extensions enabled; swap exclude_patterns loader; _prefer_webp builder hook so html prefers webp over png Content (all from origin/myst/circinus): - 253 md-prefixed pages alongside each {name}.rst counterpart - 1 plain MyST-only page kept at canonical name (docs/copyright.md, no .rst counterpart) - 182 .webp images added (circinus release previously had only PNG/JPG; this PR brings webp into circinus alongside the originals) - docs/_swap.txt populated with all 253 stems → MyST is served by default; revert a page by removing its stem from _swap.txt 🤖 Generated by [robots](https://vyos.io)
2026-05-06Revert "Add incremental RST-to-MyST swap mechanism (circinus) (#1867)" (#1893)Daniil Baturin
This reverts commit 5eb383a10ec92c65eed525bc174785a6852e997f.
2026-05-06Add incremental RST-to-MyST swap mechanism (circinus) (#1867)Yuriy Andamasov
* feat(swap-circinus): add incremental RST-to-MyST swap mechanism Backport of the swap mechanism from feat/incremental-myst-swap onto the circinus release branch. Built directly on top of origin/circinus, so the underlying RST tree is circinus's (not current's). Mechanism: - scripts/import_myst.py — import md from myst/* with md- prefix - scripts/swap_sources.py — rename md-{name}.md → {name}.md before Sphinx builds, restore after; writes _build/_swap_state.json and _build/_swap_exclude.txt - docs/Makefile — html/dirhtml/pdf/livehtml all run swap → build → trap restore; explicit `swap` and `restore` targets too - docs/conf.py — MyST extensions enabled; swap exclude_patterns loader; _prefer_webp builder hook so html prefers webp over png Content (all from origin/myst/circinus): - 253 md-prefixed pages alongside each {name}.rst counterpart - 1 plain MyST-only page kept at canonical name (docs/copyright.md, no .rst counterpart) - 182 .webp images added (circinus release previously had only PNG/JPG; this PR brings webp into circinus alongside the originals) - docs/_swap.txt populated with all 253 stems → MyST is served by default; revert a page by removing its stem from _swap.txt 🤖 Generated by [robots](https://vyos.io) * fix(ext): handle RST fallback in CmdInclude when _renderer absent `cmdincludemd` is in `myst_fence_as_directive`, so MyST routes fence blocks through `render_fence → render_restructuredtext → MockRSTParser`. In that path `self.state` is a plain docutils Body with no `_renderer`, crashing the RTD build. Fall back to `nested_parse` when `_renderer` is unavailable so the directive works in both MyST and RST/MockRSTParser contexts. 🤖 Generated by [robots](https://vyos.io) * feat(conf): copy .md sources into HTML output for plain-text serving Adds a build-finished hook that mirrors every .md file from the Sphinx source tree into the HTML output directory verbatim, making unrendered MyST sources accessible alongside HTML renders at the same URL path. 🤖 Generated by [robots](https://vyos.io) * docs: address review feedback (backport from PR #1857) 🤖 Generated by [robots](https://vyos.io) * docs: port .readthedocs.yml jobs and swap-script tests from PR #1857 Parity backport from PR #1857 (current) — was missing on circinus. - .readthedocs.yml: add build.jobs.pre_build / post_build hooks that run scripts/swap_sources.py --swap before the Sphinx build and --restore after. Without this, the swap mechanism ships but never runs on RTD builds for this branch — the swap is a silent no-op. - tests/test_import_myst.py, tests/test_swap_sources.py: tests for the swap scripts. The scripts are identical to current's, so the same tests apply. Travels with the branch so CI catches per-branch regressions if the scripts ever drift. 🤖 Generated by [robots](https://vyos.io) * fix(review): add conftest, filter md- from copy, fix _prefer_webp builder list, trailing newline Agent-Logs-Url: https://github.com/vyos/vyos-documentation/sessions/64b17346-8739-4346-b619-84438cddef21 Co-authored-by: andamasov <12631358+andamasov@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: andamasov <12631358+andamasov@users.noreply.github.com>
2026-03-17Proofread files in /vpp/configuration/interfaces directory (#1793)Quill
* Proofread bonding.rst * Proofread bridge.rst * Edit remaining files in /interfaces * Fix line length lint errors * Apply suggestions from code review Co-authored-by: Daniil Baturin <daniil@baturin.org> --------- Co-authored-by: Daniil Baturin <daniil@baturin.org>
2026-03-17Proofread files in the /vpp/configuration/nat directory (#1785)Quill
* Initial proofread * Fix indent in nat44.rst * Fix line length lint errors * Apply suggestion from @dmbaturin --------- Co-authored-by: Daniil Baturin <daniil@baturin.org>
2026-03-09Merge pull request #1789 from natali-rs1985/T8354Viacheslav Hletenko
vpp: T8354: Move 'ignore-kernel-routes' option out of resource-allocation section
2026-03-06vpp: T8354: Move 'ignore-kernel-routes' option out of resource-allocation ↵Nataliia Solomko
section
2026-03-05vpp: Move interfaces from vpp section to 'interfaces vpp'Nataliia Solomko
2026-03-05doc: proofread docs in /vpp/configuration/dataplane directory (#1777)Quill
* Initial proofread * buffers.rst * cpu.rst * index.rst * interface.rst * proofread ipsec.rst * Proofread ipv6, l2learn, lcp * Proofread remaining files in /dataplane * Fix line length lint errors
2026-03-05T7513: DOC: VPP CGNAT Exclude Rule (#1786)RC
* T7513: DOC: VPP CGNAT Exclude Rule * T7513: Doc CGNAT Exclude rule - fix linter errors
2026-02-25vpp: T8283: Move bonding interface from vpp section to 'interfaces vpp bonding'Nataliia Solomko
2026-02-23vpp: T8261: Refactor resource settings into 'resource-allocation' section ↵Nataliia S.
(#1775)
2026-02-19vpp: T8274: Remove dpdk-options section for num-* parameters (#1776)Alexandr K.
2026-02-18vpp: T8268: Unify CPU settings into a single 'cpu-cores' node under ↵Nataliia S.
'resource-allocation' (#1773)
2026-02-18vpp: T8266: Add global `interfaces-rx-mode` setting and remove per-interface ↵Alexandr K.
commands (#1772)
2026-02-17vpp: T8262: Refactor IPsec settings to use only 'ipsec-acceleration' flag ↵Nataliia S.
(#1768)
2026-02-16Merge pull request #1765 from alexandr-san4ez/T8255-currentViacheslav Hletenko
vpp: T8255: Update logging command to use `default-level`
2026-02-13vpp: T8258: Move `poll-sleep-usec` out of `unix` sectionOleksandr Kuchmystyi
2026-02-12vpp: T8250: CLI changes for ACL tcp-flags (#1763)Nataliia S.
2026-02-12vpp: T8252: Change ACL node 'macip' to 'mac' (#1764)Nataliia S.
2026-02-12vpp: T8254: Move 'nat44' and 'settings nat44' sections to 'nat nat44' (#1766)Nataliia S.
2026-02-11vpp: T8255: Update logging command to use `default-level`Oleksandr Kuchmystyi
Instead `vpp settings logging default-log-level` use `vpp settings logging default-level` command.
2026-02-05vpp: fix ipsec interface config syntax (#1758)Alex Kudentsov
2026-02-03vpp: update supported encryption algorithms (#1755)Alex Kudentsov
2026-01-31vpp: fix vxlan interface exampleAlex Kudentsov
2026-01-30vpp: fix bonding inreface examplesAlex Kudentsov
vpp: fix bonding inreface examples #2
2026-01-29vpp: T8202: Remove XDP driver from documentationNataliia Solomko
2026-01-12vpp ipfix: fix configuration exampleAlex Kudentsov
2025-12-18vpp: T7972: Delete option `nat44 no-forwarding` from CLI (#1717)Nataliia S.
* vpp: T7972: Delete `nat44 no-forwarding` option from CLI * vpp: T7972: Update docs/vpp/configuration/nat/nat44.rst Co-authored-by: zdc <zdc@users.noreply.github.com> --------- Co-authored-by: zdc <zdc@users.noreply.github.com>
2025-11-25Add VPP IPFIX configuration (#1711)Viacheslav Hletenko
2025-11-03vpp: T7929: Changes to NAT44 external address verification (#1695)Nataliia S.
2025-10-24vpp: T7801: Change log level from 'err' to 'error'Nataliia Solomko
2025-10-20vpp: T938: Delete 'sample-rate' from vpp sflow CLI and add 'header-bytes'Nataliia Solomko
2025-10-14vpp: T7897: Delete 'no-syscall-lock' option from xdp-optionsNataliia Solomko
2025-09-25vpp: Enhanced memory, buffers, and CGNAT documentation, added ↵zdc
troubleshooting (#1687) * vpp: Enhanced memory and buffer configuration documentation - Added physmem configuration section with practical examples and troubleshooting - Clarified relationship between physmem and buffer allocation with cross-references - Improved VPP logging documentation with detailed log location descriptions - Fixed formatting issues in system configuration * vpp: Added CGNAT memory requirements Expanded CGNAT settings page with information about: - Memory requirements - Hardcoded simultaneous sessions limit * vpp: Added troubleshooting page Added page with basic steps for troubleshooting: - Capturing packets (PCAP) - Tracing packets - Additional diagnostics information from VPP - Automatic collection of most details with Python script --------- Co-authored-by: Daniil Baturin <daniil@baturin.org>
2025-09-22vpp: T7805: Delete 'default-hugepage-size' from memory section (#1685)Nataliia S.
2025-09-18VPP: Syntax fixes and improvements (#1683)zdc
* VPP: Fixed syntax on vpp/dataplane/buffers.rst - Fixed sections levels markers - Fixed a list in `buffers-per-numa` section * vpp: Expanded DPDK options description in interface settings - Added more details about `num-tx-queues` calculations. - Fixed section marks on the `configuration/dataplane/interface.rst` page.
2025-09-13VPP: Updated NAT44 configuration pagezdc
- Added exclude rules configuration description - Clarified limitations for rules with ports and protocols
2025-09-11VPP: Kernel Tuning and Cosmetic Fixeszdc
- Added missing Kernel Tuning section in system settings for VPP - Fixed inconsistent section hierarchy in NAT44 configuration documentation - Fixed lost `netlink` from configuration commands in LCP settings - Clarified CPU settings logic
2025-09-04VPP: Add comprehensive VPP documentationzdc
This commit introduces extensive documentation for VyOS VPP (Vector Packet Processing) Dataplane interfaces and features, including examples. Features documented: * VPP integration description, base requirements and limitations * VPP dataplane core settings * Features enabled in the dataplane: ACL, IPsec, NAT, sFlow * VPP interface types: bonding, bridge, GRE, IPIP, kernel, loopback, VXLAN, XConnect Note: This is an initial documentation version that will require ongoing improvements based on user feedback and questions, real-world deployment testing and validation, additional use cases and configuration scenarios discovered in production. Therefore, all pages are marked as "need improvement".