├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-author-assign.yml │ ├── check-open-prs-conflict.yml │ ├── check-pr-conflicts.yml │ ├── cla-check.yml │ ├── lint-doc.yml │ ├── submodules.yml │ └── update-translations.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── CODEOWNERS ├── CONTRIBUTING.md ├── README.md ├── docker ├── Dockerfile └── entrypoint.sh ├── docs ├── 404.rst ├── Makefile ├── _ext │ ├── autosectionlabel.py │ ├── releasenotes.py │ ├── testcoverage.py │ └── vyos.py ├── _html_extra │ └── robots.txt ├── _include │ ├── common-references.txt │ ├── coverage │ │ ├── 20220531-1.4-rolling-202205310217.json │ │ ├── 20220712-1.4-rolling-202207111030.json │ │ ├── 20221013-1.4-rolling-202210090955.json │ │ ├── 20221229-1.4-rolling-202212280917.json │ │ ├── 20230720-1.4-rolling-202307200317.json │ │ └── 20230831-1.4-rolling-202308240020.json │ ├── draw.io │ │ ├── pbr_example_1.drawio │ │ ├── vpn_s2s_ikev2.drawio │ │ └── vpn_s2s_ikev2_c.drawio │ ├── interface-address-with-dhcp.txt │ ├── interface-address.txt │ ├── interface-common-with-dhcp.txt │ ├── interface-common-without-dhcp.txt │ ├── interface-common-without-mac.txt │ ├── interface-common.txt │ ├── interface-description.txt │ ├── interface-dhcp-options.txt │ ├── interface-dhcpv6-options.txt │ ├── interface-dhcpv6-prefix-delegation.txt │ ├── interface-disable-flow-control.txt │ ├── interface-disable-link-detect.txt │ ├── interface-disable.txt │ ├── interface-eapol.txt │ ├── interface-evpn-uplink.txt │ ├── interface-ip.txt │ ├── interface-ipv6.txt │ ├── interface-mac.txt │ ├── interface-mirror.txt │ ├── interface-mtu.txt │ ├── interface-per-client-thread.txt │ ├── interface-vlan-8021ad.txt │ ├── interface-vlan-8021q.txt │ ├── interface-vrf.txt │ └── need_improvement.txt ├── _locale │ ├── de │ │ ├── 404.pot │ │ ├── LC_MESSAGES │ │ │ ├── 404.mo │ │ │ ├── automation.mo │ │ │ ├── cli.mo │ │ │ ├── configexamples.mo │ │ │ ├── configuration.mo │ │ │ ├── contributing.mo │ │ │ ├── copyright.mo │ │ │ ├── documentation.mo │ │ │ ├── index.mo │ │ │ ├── installation.mo │ │ │ ├── introducing.mo │ │ │ ├── operation.mo │ │ │ ├── quick-start.mo │ │ │ └── troubleshooting.mo │ │ ├── automation.pot │ │ ├── cli.pot │ │ ├── configexamples.pot │ │ ├── configuration.pot │ │ ├── contributing.pot │ │ ├── copyright.pot │ │ ├── documentation.pot │ │ ├── index.pot │ │ ├── installation.pot │ │ ├── introducing.pot │ │ ├── operation.pot │ │ ├── quick-start.pot │ │ └── troubleshooting.pot │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── 404.mo │ │ │ ├── automation.mo │ │ │ ├── cli.mo │ │ │ ├── configexamples.mo │ │ │ ├── configuration.mo │ │ │ ├── contributing.mo │ │ │ ├── copyright.mo │ │ │ ├── documentation.mo │ │ │ ├── index.mo │ │ │ ├── installation.mo │ │ │ ├── introducing.mo │ │ │ ├── operation.mo │ │ │ ├── quick-start.mo │ │ │ └── troubleshooting.mo │ ├── es │ │ ├── 404.pot │ │ ├── LC_MESSAGES │ │ │ ├── 404.mo │ │ │ ├── automation.mo │ │ │ ├── cli.mo │ │ │ ├── configexamples.mo │ │ │ ├── configuration.mo │ │ │ ├── contributing.mo │ │ │ ├── copyright.mo │ │ │ ├── documentation.mo │ │ │ ├── index.mo │ │ │ ├── installation.mo │ │ │ ├── introducing.mo │ │ │ ├── operation.mo │ │ │ ├── quick-start.mo │ │ │ └── troubleshooting.mo │ │ ├── automation.pot │ │ ├── cli.pot │ │ ├── configexamples.pot │ │ ├── configuration.pot │ │ ├── contributing.pot │ │ ├── copyright.pot │ │ ├── documentation.pot │ │ ├── index.pot │ │ ├── installation.pot │ │ ├── introducing.pot │ │ ├── operation.pot │ │ ├── quick-start.pot │ │ └── troubleshooting.pot │ ├── ja │ │ ├── 404.pot │ │ ├── LC_MESSAGES │ │ │ ├── 404.mo │ │ │ ├── automation.mo │ │ │ ├── cli.mo │ │ │ ├── configexamples.mo │ │ │ ├── configuration.mo │ │ │ ├── contributing.mo │ │ │ ├── copyright.mo │ │ │ ├── documentation.mo │ │ │ ├── index.mo │ │ │ ├── installation.mo │ │ │ ├── introducing.mo │ │ │ ├── operation.mo │ │ │ ├── quick-start.mo │ │ │ └── troubleshooting.mo │ │ ├── automation.pot │ │ ├── cli.pot │ │ ├── configexamples.pot │ │ ├── configuration.pot │ │ ├── contributing.pot │ │ ├── copyright.pot │ │ ├── documentation.pot │ │ ├── index.pot │ │ ├── installation.pot │ │ ├── introducing.pot │ │ ├── operation.pot │ │ ├── quick-start.pot │ │ └── troubleshooting.pot │ ├── pt │ │ ├── 404.pot │ │ ├── LC_MESSAGES │ │ │ ├── 404.mo │ │ │ ├── automation.mo │ │ │ ├── cli.mo │ │ │ ├── configexamples.mo │ │ │ ├── configuration.mo │ │ │ ├── contributing.mo │ │ │ ├── copyright.mo │ │ │ ├── documentation.mo │ │ │ ├── index.mo │ │ │ ├── installation.mo │ │ │ ├── introducing.mo │ │ │ ├── operation.mo │ │ │ ├── quick-start.mo │ │ │ └── troubleshooting.mo │ │ ├── automation.pot │ │ ├── cli.pot │ │ ├── configexamples.pot │ │ ├── configuration.pot │ │ ├── contributing.pot │ │ ├── copyright.pot │ │ ├── documentation.pot │ │ ├── index.pot │ │ ├── installation.pot │ │ ├── introducing.pot │ │ ├── operation.pot │ │ ├── quick-start.pot │ │ └── troubleshooting.pot │ └── uk │ │ ├── 404.pot │ │ ├── LC_MESSAGES │ │ ├── 404.mo │ │ ├── automation.mo │ │ ├── cli.mo │ │ ├── configexamples.mo │ │ ├── configuration.mo │ │ ├── contributing.mo │ │ ├── copyright.mo │ │ ├── documentation.mo │ │ ├── index.mo │ │ ├── installation.mo │ │ ├── introducing.mo │ │ ├── operation.mo │ │ ├── quick-start.mo │ │ └── troubleshooting.mo │ │ ├── automation.pot │ │ ├── cli.pot │ │ ├── configexamples.pot │ │ ├── configuration.pot │ │ ├── contributing.pot │ │ ├── copyright.pot │ │ ├── documentation.pot │ │ ├── index.pot │ │ ├── installation.pot │ │ ├── introducing.pot │ │ ├── operation.pot │ │ ├── quick-start.pot │ │ └── troubleshooting.pot ├── _static │ ├── css │ │ ├── DataTables-1.11.5 │ │ │ └── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── breadcrumbs.css │ │ ├── code-snippets.css │ │ ├── configuration │ │ │ └── index.css │ │ ├── custom.css │ │ ├── datatables.css │ │ ├── headers.css │ │ ├── hints.css │ │ ├── installation │ │ │ └── running-on-bare-metal.css │ │ ├── leftSidebar.css │ │ ├── linkButtons.css │ │ ├── lists.css │ │ ├── scrolls.css │ │ ├── separate-commands.css │ │ ├── tables.css │ │ └── text.css │ ├── images │ │ ├── 1u_vyos_back.jpg │ │ ├── 1u_vyos_front.jpg │ │ ├── 1u_vyos_front_10ge_open_1.jpg │ │ ├── 1u_vyos_front_10ge_open_2.jpg │ │ ├── 1u_vyos_front_10ge_open_3.jpg │ │ ├── 1u_vyos_front_10ge_open_4.jpg │ │ ├── 1u_vyos_front_open_1.jpg │ │ ├── 1u_vyos_front_open_2.jpg │ │ ├── 1u_vyos_front_open_3.jpg │ │ ├── 480px-Acrosser_ANDJ190N1_Back.jpg │ │ ├── 480px-Acrosser_ANDJ190N1_Front.jpg │ │ ├── 600px-Partaker-i5.jpg │ │ ├── ESP_AH.png │ │ ├── IPSec_close_action_settings.png │ │ ├── L3VPN_hub_and_spoke.png │ │ ├── PA-ESP-group.png │ │ ├── PA-IKE-GW-1.png │ │ ├── PA-IKE-GW-2.png │ │ ├── PA-IKE-group.png │ │ ├── PA-IPsec-tunnel.png │ │ ├── PA-tunnel-1.png │ │ ├── PA-tunnel-2.png │ │ ├── PA-tunnel-3.png │ │ ├── VyOS_Dual-Hub_DMVPN.png │ │ ├── Wan_load_balancing1.png │ │ ├── Wan_load_balancing_exclude1.png │ │ ├── ansible.png │ │ ├── apu4_desk_1.jpg │ │ ├── apu4_desk_2.jpg │ │ ├── apu4_desk_3.jpg │ │ ├── apu4_desk_4.jpg │ │ ├── apu4_rack_1.jpg │ │ ├── apu4_rack_2.jpg │ │ ├── apu4_rack_3.jpg │ │ ├── apu4_rack_4.jpg │ │ ├── apu4_rack_5.jpg │ │ ├── apu4_rack_vyos_print.jpg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── aws.png │ │ ├── blueprint-dmvpn.png │ │ ├── boot-options.png │ │ ├── breadcrumbs-icon.svg │ │ ├── check.svg │ │ ├── cisco-vpn-ipsec.png │ │ ├── close-sidebar-icon.svg │ │ ├── cloud-aws-01.png │ │ ├── cloud-aws-02.png │ │ ├── cloud-aws-03.png │ │ ├── cloud-aws-04.png │ │ ├── cloud-aws-05.png │ │ ├── cloud-aws-06.png │ │ ├── cloud-aws-07.png │ │ ├── cloud-aws-08.png │ │ ├── cloud-azure-01.png │ │ ├── cloud-azure-02.png │ │ ├── cloud-azure-03.png │ │ ├── cloud-azure-04.png │ │ ├── cloud-azure-05.png │ │ ├── cloud-azure-06.png │ │ ├── cloud-gcp-01.png │ │ ├── cloud-gcp-02.png │ │ ├── cloud-gcp-03.png │ │ ├── cloud-gcp-04.png │ │ ├── cloud-gcp-05.png │ │ ├── cmnd-link-dollar-icon.svg │ │ ├── cmnd-link-icon.svg │ │ ├── copy-code-icon.svg │ │ ├── dhcp-relay-through-gre-bridge.png │ │ ├── dual-hub-DMVPN.png │ │ ├── eve-ng-vyos.png │ │ ├── firewall-and-vrf-blueprints.png │ │ ├── firewall-bridge-forward.png │ │ ├── firewall-bridge-input.png │ │ ├── firewall-bridge-output.png │ │ ├── firewall-flowtable-packet-flow.png │ │ ├── firewall-fwd-packet-flow.png │ │ ├── firewall-gral-packet-flow.png │ │ ├── firewall-gral-packet-flow.png-orig │ │ ├── firewall-input-packet-flow.png │ │ ├── firewall-netfilter.png │ │ ├── firewall-traditional.png │ │ ├── firewall-zonebased.png │ │ ├── github.svg │ │ ├── gns3-01.png │ │ ├── gns3-02.png │ │ ├── gns3-03.png │ │ ├── gns3-04.png │ │ ├── gns3-05.png │ │ ├── gns3-06.png │ │ ├── gns3-07.png │ │ ├── gns3-08.png │ │ ├── gns3-09.png │ │ ├── gns3-10.png │ │ ├── gns3-11.png │ │ ├── gns3-12.png │ │ ├── gns3-13.png │ │ ├── gns3-14.png │ │ ├── gns3-15.png │ │ ├── gns3-16.png │ │ ├── gns3-17.png │ │ ├── gns3-20.png │ │ ├── gns3-21.png │ │ ├── gns3-215.png │ │ ├── gns3-22.png │ │ ├── gowin-01.png │ │ ├── gowin-02.png │ │ ├── gowin-03.png │ │ ├── gowin-04.png │ │ ├── hamburger-icon.svg │ │ ├── inter-vrf-routing-vrf-lite.png │ │ ├── ipsec-vyos-pa.png │ │ ├── json.png │ │ ├── key.png │ │ ├── keypairs.png │ │ ├── lac-lns-diagram.jpg │ │ ├── lac-lns-winclient.jpg │ │ ├── ldapone.png │ │ ├── ldaptwo.png │ │ ├── mainschema.png │ │ ├── multicast-basic.png │ │ ├── nat_before_vpn_topology.png │ │ ├── nmp1.png │ │ ├── nmp2.png │ │ ├── nmp3.png │ │ ├── nmp4.png │ │ ├── nmp5.png │ │ ├── nmp6.png │ │ ├── nmp7.png │ │ ├── note-icon.svg │ │ ├── openvpn_site2site_diagram.jpg │ │ ├── password-recovery-01.png │ │ ├── pbr_example_1.png │ │ ├── policy-based-ipsec-and-firewall.png │ │ ├── pppoe-ipv6-pd-diagram.jpg │ │ ├── project.png │ │ ├── qos1.png │ │ ├── qos10.png │ │ ├── qos2.png │ │ ├── qos3.png │ │ ├── qos4.png │ │ ├── qos5.png │ │ ├── qos6.png │ │ ├── qos7.png │ │ ├── qos8.png │ │ ├── qos9.png │ │ ├── service.png │ │ ├── service_conntrack_sync-schema.png │ │ ├── service_dhcp-relay01.png │ │ ├── service_dhcpv6-relay01.png │ │ ├── service_snmp_communication_principles_diagram.png │ │ ├── sg.png │ │ ├── sticky-connections.jpg │ │ ├── traffic.png │ │ ├── uefi_secureboot_01.png │ │ ├── uefi_secureboot_02.png │ │ ├── uefi_secureboot_03.png │ │ ├── uefi_secureboot_04.png │ │ ├── uefi_secureboot_05.png │ │ ├── uefi_secureboot_06.png │ │ ├── uefi_secureboot_07.png │ │ ├── virt-libvirt-01.png │ │ ├── virt-libvirt-02.png │ │ ├── virt-libvirt-03.png │ │ ├── virt-libvirt-04.png │ │ ├── virt-libvirt-05.png │ │ ├── virt-libvirt-06.png │ │ ├── virt-libvirt-qc-01.png │ │ ├── virt-libvirt-qc-02.png │ │ ├── virt-libvirt-qc-03.png │ │ ├── vpn_dmvpn_topology01.png │ │ ├── vpn_s2s_ikev2.png │ │ ├── vpn_s2s_ikev2_c.png │ │ ├── vpp │ │ │ └── vyos_vpp_integration.svg │ │ ├── vrf-example-topology-01.png │ │ ├── vyos-downloads.png │ │ ├── vyos-logo-icon.png │ │ ├── vyos-logo.png │ │ ├── vyos-sr-isis.png │ │ ├── vyos_1_4_nat66_simple.png │ │ ├── vyos_1_5_nat66_dhcpv6_wdummy.png │ │ ├── vyos_arista_bond_lacp.png │ │ ├── vyosnew-downloads.png │ │ ├── wireguard_qrcode.jpg │ │ ├── wireguard_site2site_diagram.jpg │ │ └── zone-policy-diagram.png │ └── js │ │ ├── codecopier.js │ │ ├── datatables.js │ │ ├── footer.js │ │ ├── sidebar.js │ │ └── tables.js ├── _templates │ └── layout.html ├── automation │ ├── cloud-init.rst │ ├── command-scripting.rst │ ├── index.rst │ ├── terraform │ │ ├── index.rst │ │ ├── terraformAWS.rst │ │ ├── terraformAZ.rst │ │ ├── terraformGoogle.rst │ │ ├── terraformvSphere.rst │ │ └── terraformvyos.rst │ ├── vyos-ansible.rst │ ├── vyos-api.rst │ ├── vyos-govyos.rst │ ├── vyos-napalm.rst │ ├── vyos-netmiko.rst │ ├── vyos-pyvyos.rst │ └── vyos-salt.rst ├── changelog │ ├── 1.2.1.rst │ ├── 1.2.2.rst │ ├── 1.2.3.rst │ ├── 1.2.4.rst │ ├── 1.2.5.rst │ ├── 1.2.6.rst │ ├── 1.3.rst │ ├── 1.4.rst │ ├── 1.5.rst │ └── index.rst ├── cli.rst ├── conf.py ├── configexamples │ ├── ansible.rst │ ├── autotest │ │ ├── DHCPRelay_through_GRE │ │ │ ├── DHCPRelay_through_GRE.log │ │ │ ├── DHCPRelay_through_GRE.rst │ │ │ └── _include │ │ │ │ ├── dhcp-relay.conf │ │ │ │ ├── dhcp-server.conf │ │ │ │ ├── topology.png │ │ │ │ └── transport.conf │ │ ├── L3VPN_EVPN │ │ │ ├── L3VPN_EVPN.log │ │ │ ├── L3VPN_EVPN.rst │ │ │ └── _include │ │ │ │ ├── PE1.conf │ │ │ │ ├── PE2.conf │ │ │ │ ├── PE3.conf │ │ │ │ └── topology.png │ │ ├── OpenVPN_with_LDAP │ │ │ ├── OpenVPN_with_LDAP.log │ │ │ ├── OpenVPN_with_LDAP.rst │ │ │ └── _include │ │ │ │ ├── client.conf │ │ │ │ ├── ldap-auth.config │ │ │ │ ├── ovpn-server.conf │ │ │ │ └── topology.png │ │ ├── Wireguard │ │ │ ├── Wireguard.log │ │ │ ├── Wireguard.rst │ │ │ └── _include │ │ │ │ ├── branch.conf │ │ │ │ ├── central.conf │ │ │ │ └── topology.png │ │ └── tunnelbroker │ │ │ ├── _include │ │ │ ├── client.conf │ │ │ ├── topology.png │ │ │ ├── transport.conf │ │ │ ├── vyos-wan.conf │ │ │ └── vyos-wan_tun0.conf │ │ │ ├── tunnelbroker.log │ │ │ └── tunnelbroker.rst │ ├── azure-vpn-bgp.rst │ ├── azure-vpn-dual-bgp.rst │ ├── bgp-ipv6-unnumbered.rst │ ├── dmvpn-dualhub-dualcloud.rst │ ├── firewall.rst │ ├── fwall-and-bridge.rst │ ├── fwall-and-vrf.rst │ ├── ha.rst │ ├── index.rst │ ├── inter-vrf-routing-vrf-lite.rst │ ├── ipsec-cisco-policy-based.rst │ ├── ipsec-cisco-route-based.rst │ ├── ipsec-pa-route-based.rst │ ├── l3vpn-hub-and-spoke.rst │ ├── lac-lns.rst │ ├── nmp.rst │ ├── ospf-unnumbered.rst │ ├── policy-based-ipsec-and-firewall.rst │ ├── pppoe-ipv6-basic.rst │ ├── qos.rst │ ├── segment-routing-isis.rst │ ├── site-2-site-cisco.rst │ ├── wan-load-balancing.rst │ └── zone-policy.rst ├── configuration │ ├── container │ │ └── index.rst │ ├── firewall │ │ ├── bridge.rst │ │ ├── flowtables.rst │ │ ├── global-options.rst │ │ ├── groups.rst │ │ ├── index.rst │ │ ├── ipv4.rst │ │ ├── ipv6.rst │ │ └── zone.rst │ ├── highavailability │ │ └── index.rst │ ├── index.rst │ ├── interfaces │ │ ├── bonding.rst │ │ ├── bridge.rst │ │ ├── dummy.rst │ │ ├── ethernet.rst │ │ ├── geneve.rst │ │ ├── index.rst │ │ ├── l2tpv3.rst │ │ ├── loopback.rst │ │ ├── macsec.rst │ │ ├── openvpn-examples.rst │ │ ├── openvpn.rst │ │ ├── pppoe.rst │ │ ├── pseudo-ethernet.rst │ │ ├── sstp-client.rst │ │ ├── tunnel.rst │ │ ├── virtual-ethernet.rst │ │ ├── vti.rst │ │ ├── vxlan.rst │ │ ├── wireguard.rst │ │ ├── wireless.rst │ │ └── wwan.rst │ ├── loadbalancing │ │ ├── haproxy.rst │ │ ├── index.rst │ │ └── wan.rst │ ├── nat │ │ ├── cgnat.rst │ │ ├── index.rst │ │ ├── nat44.rst │ │ ├── nat64.rst │ │ └── nat66.rst │ ├── pki │ │ ├── index.rst │ │ └── pki_cli_import_help.txt │ ├── policy │ │ ├── access-list.rst │ │ ├── as-path-list.rst │ │ ├── community-list.rst │ │ ├── examples.rst │ │ ├── extcommunity-list.rst │ │ ├── index.rst │ │ ├── large-community-list.rst │ │ ├── local-route.rst │ │ ├── prefix-list.rst │ │ ├── route-map.rst │ │ └── route.rst │ ├── protocols │ │ ├── arp.rst │ │ ├── babel.rst │ │ ├── bfd.rst │ │ ├── bgp.rst │ │ ├── failover.rst │ │ ├── igmp-proxy.disable │ │ ├── igmp-proxy.rst │ │ ├── index.rst │ │ ├── isis.rst │ │ ├── mpls.rst │ │ ├── multicast.rst │ │ ├── openfabric.rst │ │ ├── ospf.rst │ │ ├── pim.rst │ │ ├── pim6.rst │ │ ├── rip.rst │ │ ├── ripng.disable │ │ ├── rpki.rst │ │ ├── segment-routing.rst │ │ ├── static.rst │ │ └── vrf.disable │ ├── service │ │ ├── broadcast-relay.rst │ │ ├── config-sync.rst │ │ ├── conntrack-sync.rst │ │ ├── console-server.rst │ │ ├── dhcp-relay.rst │ │ ├── dhcp-server.rst │ │ ├── dns.rst │ │ ├── eventhandler.rst │ │ ├── https.rst │ │ ├── index.rst │ │ ├── ipoe-server.rst │ │ ├── lldp.rst │ │ ├── mdns.rst │ │ ├── monitoring.rst │ │ ├── ntp.rst │ │ ├── pppoe-advert.disable │ │ ├── pppoe-server.rst │ │ ├── router-advert.rst │ │ ├── salt-minion.rst │ │ ├── snmp.rst │ │ ├── ssh.rst │ │ ├── suricata.rst │ │ ├── tftp-server.rst │ │ └── webproxy.rst │ ├── system │ │ ├── acceleration.rst │ │ ├── config-management.disable │ │ ├── conntrack.rst │ │ ├── console.rst │ │ ├── default-route.rst │ │ ├── domain-name.disable │ │ ├── domain-search.disable │ │ ├── flow-accounting.rst │ │ ├── frr.rst │ │ ├── host-name.rst │ │ ├── index.rst │ │ ├── ip.rst │ │ ├── ipv6.rst │ │ ├── lcd.rst │ │ ├── login.rst │ │ ├── name-server.rst │ │ ├── option.rst │ │ ├── proxy.rst │ │ ├── sflow.rst │ │ ├── static-host-mapping.disable │ │ ├── sysctl.rst │ │ ├── syslog.rst │ │ ├── task-scheduler.rst │ │ ├── time-zone.rst │ │ ├── updates.rst │ │ └── wifi-requlatory-domain.disable │ ├── trafficpolicy │ │ └── index.rst │ ├── vpn │ │ ├── dmvpn.rst │ │ ├── index.rst │ │ ├── ipsec │ │ │ ├── index.rst │ │ │ ├── ipsec_general.rst │ │ │ ├── remoteaccess_ipsec.rst │ │ │ ├── site2site_ipsec.rst │ │ │ └── troubleshooting_ipsec.rst │ │ ├── l2tp.rst │ │ ├── openconnect.rst │ │ ├── pptp.rst │ │ ├── rsa-keys.rst │ │ └── sstp.rst │ └── vrf │ │ └── index.rst ├── contributing │ ├── build-vyos.rst │ ├── cla.rst │ ├── debugging.rst │ ├── development.rst │ ├── issues-features.rst │ ├── testing.rst │ └── upstream-packages.rst ├── copyright.md ├── coverage.rst ├── documentation.rst ├── index.rst ├── installation │ ├── bare-metal.rst │ ├── cloud │ │ ├── aws.rst │ │ ├── azure.rst │ │ ├── gcp.rst │ │ ├── index.rst │ │ └── oracel.rst │ ├── image.rst │ ├── index.rst │ ├── install.rst │ ├── secure-boot.rst │ ├── update.rst │ └── virtual │ │ ├── docker.rst │ │ ├── eve-ng.rst │ │ ├── gns3.rst │ │ ├── index.rst │ │ ├── libvirt.rst │ │ ├── proxmox.rst │ │ └── vmware.rst ├── introducing │ ├── about.rst │ └── history.rst ├── make.bat ├── operation │ ├── boot-options.rst │ ├── index.rst │ ├── information.rst │ ├── password-recovery.rst │ ├── raid.rst │ └── upgrade-recovery.rst ├── quick-start.rst ├── troubleshooting │ └── index.rst └── vpp │ ├── configuration │ ├── acl.rst │ ├── dataplane │ │ ├── buffers.rst │ │ ├── cpu.rst │ │ ├── index.rst │ │ ├── interface.rst │ │ ├── ipsec.rst │ │ ├── ipv6.rst │ │ ├── l2learn.rst │ │ ├── lcp.rst │ │ ├── logging.rst │ │ ├── memory.rst │ │ ├── system.rst │ │ └── unix.rst │ ├── index.rst │ ├── interfaces │ │ ├── bonding.rst │ │ ├── bridge.rst │ │ ├── gre.rst │ │ ├── index.rst │ │ ├── ipip.rst │ │ ├── kernel.rst │ │ ├── loopback.rst │ │ ├── vxlan.rst │ │ └── xconnect.rst │ ├── ipfix.rst │ ├── ipsec.rst │ ├── nat │ │ ├── cgnat.rst │ │ ├── index.rst │ │ └── nat44.rst │ └── sflow.rst │ ├── description.rst │ ├── index.rst │ ├── limitations.rst │ ├── requirements.rst │ └── troubleshooting.rst ├── languagechecker.py ├── localazy.json └── requirements.txt /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-author-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/auto-author-assign.yml -------------------------------------------------------------------------------- /.github/workflows/check-open-prs-conflict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/check-open-prs-conflict.yml -------------------------------------------------------------------------------- /.github/workflows/check-pr-conflicts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/check-pr-conflicts.yml -------------------------------------------------------------------------------- /.github/workflows/cla-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/cla-check.yml -------------------------------------------------------------------------------- /.github/workflows/lint-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/lint-doc.yml -------------------------------------------------------------------------------- /.github/workflows/submodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/submodules.yml -------------------------------------------------------------------------------- /.github/workflows/update-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.github/workflows/update-translations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # * @vyos/reviewers 2 | * @rebortg -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/404.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/autosectionlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_ext/autosectionlabel.py -------------------------------------------------------------------------------- /docs/_ext/releasenotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_ext/releasenotes.py -------------------------------------------------------------------------------- /docs/_ext/testcoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_ext/testcoverage.py -------------------------------------------------------------------------------- /docs/_ext/vyos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_ext/vyos.py -------------------------------------------------------------------------------- /docs/_html_extra/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_html_extra/robots.txt -------------------------------------------------------------------------------- /docs/_include/common-references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/common-references.txt -------------------------------------------------------------------------------- /docs/_include/coverage/20220531-1.4-rolling-202205310217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20220531-1.4-rolling-202205310217.json -------------------------------------------------------------------------------- /docs/_include/coverage/20220712-1.4-rolling-202207111030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20220712-1.4-rolling-202207111030.json -------------------------------------------------------------------------------- /docs/_include/coverage/20221013-1.4-rolling-202210090955.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20221013-1.4-rolling-202210090955.json -------------------------------------------------------------------------------- /docs/_include/coverage/20221229-1.4-rolling-202212280917.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20221229-1.4-rolling-202212280917.json -------------------------------------------------------------------------------- /docs/_include/coverage/20230720-1.4-rolling-202307200317.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20230720-1.4-rolling-202307200317.json -------------------------------------------------------------------------------- /docs/_include/coverage/20230831-1.4-rolling-202308240020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/coverage/20230831-1.4-rolling-202308240020.json -------------------------------------------------------------------------------- /docs/_include/draw.io/pbr_example_1.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/draw.io/pbr_example_1.drawio -------------------------------------------------------------------------------- /docs/_include/draw.io/vpn_s2s_ikev2.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/draw.io/vpn_s2s_ikev2.drawio -------------------------------------------------------------------------------- /docs/_include/draw.io/vpn_s2s_ikev2_c.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/draw.io/vpn_s2s_ikev2_c.drawio -------------------------------------------------------------------------------- /docs/_include/interface-address-with-dhcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-address-with-dhcp.txt -------------------------------------------------------------------------------- /docs/_include/interface-address.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-address.txt -------------------------------------------------------------------------------- /docs/_include/interface-common-with-dhcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-common-with-dhcp.txt -------------------------------------------------------------------------------- /docs/_include/interface-common-without-dhcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-common-without-dhcp.txt -------------------------------------------------------------------------------- /docs/_include/interface-common-without-mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-common-without-mac.txt -------------------------------------------------------------------------------- /docs/_include/interface-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-common.txt -------------------------------------------------------------------------------- /docs/_include/interface-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-description.txt -------------------------------------------------------------------------------- /docs/_include/interface-dhcp-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-dhcp-options.txt -------------------------------------------------------------------------------- /docs/_include/interface-dhcpv6-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-dhcpv6-options.txt -------------------------------------------------------------------------------- /docs/_include/interface-dhcpv6-prefix-delegation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-dhcpv6-prefix-delegation.txt -------------------------------------------------------------------------------- /docs/_include/interface-disable-flow-control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-disable-flow-control.txt -------------------------------------------------------------------------------- /docs/_include/interface-disable-link-detect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-disable-link-detect.txt -------------------------------------------------------------------------------- /docs/_include/interface-disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-disable.txt -------------------------------------------------------------------------------- /docs/_include/interface-eapol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-eapol.txt -------------------------------------------------------------------------------- /docs/_include/interface-evpn-uplink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-evpn-uplink.txt -------------------------------------------------------------------------------- /docs/_include/interface-ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-ip.txt -------------------------------------------------------------------------------- /docs/_include/interface-ipv6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-ipv6.txt -------------------------------------------------------------------------------- /docs/_include/interface-mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-mac.txt -------------------------------------------------------------------------------- /docs/_include/interface-mirror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-mirror.txt -------------------------------------------------------------------------------- /docs/_include/interface-mtu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-mtu.txt -------------------------------------------------------------------------------- /docs/_include/interface-per-client-thread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-per-client-thread.txt -------------------------------------------------------------------------------- /docs/_include/interface-vlan-8021ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-vlan-8021ad.txt -------------------------------------------------------------------------------- /docs/_include/interface-vlan-8021q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-vlan-8021q.txt -------------------------------------------------------------------------------- /docs/_include/interface-vrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/interface-vrf.txt -------------------------------------------------------------------------------- /docs/_include/need_improvement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_include/need_improvement.txt -------------------------------------------------------------------------------- /docs/_locale/de/404.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/404.pot -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/de/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/de/automation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/automation.pot -------------------------------------------------------------------------------- /docs/_locale/de/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/cli.pot -------------------------------------------------------------------------------- /docs/_locale/de/configexamples.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/configexamples.pot -------------------------------------------------------------------------------- /docs/_locale/de/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/configuration.pot -------------------------------------------------------------------------------- /docs/_locale/de/contributing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/contributing.pot -------------------------------------------------------------------------------- /docs/_locale/de/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/copyright.pot -------------------------------------------------------------------------------- /docs/_locale/de/documentation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/documentation.pot -------------------------------------------------------------------------------- /docs/_locale/de/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/index.pot -------------------------------------------------------------------------------- /docs/_locale/de/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/installation.pot -------------------------------------------------------------------------------- /docs/_locale/de/introducing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/introducing.pot -------------------------------------------------------------------------------- /docs/_locale/de/operation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/operation.pot -------------------------------------------------------------------------------- /docs/_locale/de/quick-start.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/quick-start.pot -------------------------------------------------------------------------------- /docs/_locale/de/troubleshooting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/de/troubleshooting.pot -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/en/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/en/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/es/404.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/404.pot -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/es/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/es/automation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/automation.pot -------------------------------------------------------------------------------- /docs/_locale/es/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/cli.pot -------------------------------------------------------------------------------- /docs/_locale/es/configexamples.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/configexamples.pot -------------------------------------------------------------------------------- /docs/_locale/es/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/configuration.pot -------------------------------------------------------------------------------- /docs/_locale/es/contributing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/contributing.pot -------------------------------------------------------------------------------- /docs/_locale/es/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/copyright.pot -------------------------------------------------------------------------------- /docs/_locale/es/documentation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/documentation.pot -------------------------------------------------------------------------------- /docs/_locale/es/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/index.pot -------------------------------------------------------------------------------- /docs/_locale/es/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/installation.pot -------------------------------------------------------------------------------- /docs/_locale/es/introducing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/introducing.pot -------------------------------------------------------------------------------- /docs/_locale/es/operation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/operation.pot -------------------------------------------------------------------------------- /docs/_locale/es/quick-start.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/quick-start.pot -------------------------------------------------------------------------------- /docs/_locale/es/troubleshooting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/es/troubleshooting.pot -------------------------------------------------------------------------------- /docs/_locale/ja/404.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/404.pot -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/ja/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/ja/automation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/automation.pot -------------------------------------------------------------------------------- /docs/_locale/ja/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/cli.pot -------------------------------------------------------------------------------- /docs/_locale/ja/configexamples.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/configexamples.pot -------------------------------------------------------------------------------- /docs/_locale/ja/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/configuration.pot -------------------------------------------------------------------------------- /docs/_locale/ja/contributing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/contributing.pot -------------------------------------------------------------------------------- /docs/_locale/ja/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/copyright.pot -------------------------------------------------------------------------------- /docs/_locale/ja/documentation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/documentation.pot -------------------------------------------------------------------------------- /docs/_locale/ja/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/index.pot -------------------------------------------------------------------------------- /docs/_locale/ja/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/installation.pot -------------------------------------------------------------------------------- /docs/_locale/ja/introducing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/introducing.pot -------------------------------------------------------------------------------- /docs/_locale/ja/operation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/operation.pot -------------------------------------------------------------------------------- /docs/_locale/ja/quick-start.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/quick-start.pot -------------------------------------------------------------------------------- /docs/_locale/ja/troubleshooting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/ja/troubleshooting.pot -------------------------------------------------------------------------------- /docs/_locale/pt/404.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/404.pot -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/pt/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/pt/automation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/automation.pot -------------------------------------------------------------------------------- /docs/_locale/pt/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/cli.pot -------------------------------------------------------------------------------- /docs/_locale/pt/configexamples.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/configexamples.pot -------------------------------------------------------------------------------- /docs/_locale/pt/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/configuration.pot -------------------------------------------------------------------------------- /docs/_locale/pt/contributing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/contributing.pot -------------------------------------------------------------------------------- /docs/_locale/pt/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/copyright.pot -------------------------------------------------------------------------------- /docs/_locale/pt/documentation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/documentation.pot -------------------------------------------------------------------------------- /docs/_locale/pt/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/index.pot -------------------------------------------------------------------------------- /docs/_locale/pt/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/installation.pot -------------------------------------------------------------------------------- /docs/_locale/pt/introducing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/introducing.pot -------------------------------------------------------------------------------- /docs/_locale/pt/operation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/operation.pot -------------------------------------------------------------------------------- /docs/_locale/pt/quick-start.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/quick-start.pot -------------------------------------------------------------------------------- /docs/_locale/pt/troubleshooting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/pt/troubleshooting.pot -------------------------------------------------------------------------------- /docs/_locale/uk/404.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/404.pot -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/404.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/404.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/automation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/automation.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/cli.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/cli.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/configexamples.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/configexamples.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/configuration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/configuration.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/contributing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/contributing.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/copyright.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/documentation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/documentation.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/installation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/installation.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/introducing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/introducing.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/operation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/operation.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/quick-start.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/quick-start.mo -------------------------------------------------------------------------------- /docs/_locale/uk/LC_MESSAGES/troubleshooting.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/LC_MESSAGES/troubleshooting.mo -------------------------------------------------------------------------------- /docs/_locale/uk/automation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/automation.pot -------------------------------------------------------------------------------- /docs/_locale/uk/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/cli.pot -------------------------------------------------------------------------------- /docs/_locale/uk/configexamples.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/configexamples.pot -------------------------------------------------------------------------------- /docs/_locale/uk/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/configuration.pot -------------------------------------------------------------------------------- /docs/_locale/uk/contributing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/contributing.pot -------------------------------------------------------------------------------- /docs/_locale/uk/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/copyright.pot -------------------------------------------------------------------------------- /docs/_locale/uk/documentation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/documentation.pot -------------------------------------------------------------------------------- /docs/_locale/uk/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/index.pot -------------------------------------------------------------------------------- /docs/_locale/uk/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/installation.pot -------------------------------------------------------------------------------- /docs/_locale/uk/introducing.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/introducing.pot -------------------------------------------------------------------------------- /docs/_locale/uk/operation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/operation.pot -------------------------------------------------------------------------------- /docs/_locale/uk/quick-start.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/quick-start.pot -------------------------------------------------------------------------------- /docs/_locale/uk/troubleshooting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_locale/uk/troubleshooting.pot -------------------------------------------------------------------------------- /docs/_static/css/DataTables-1.11.5/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/DataTables-1.11.5/images/sort_asc.png -------------------------------------------------------------------------------- /docs/_static/css/DataTables-1.11.5/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/DataTables-1.11.5/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /docs/_static/css/DataTables-1.11.5/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/DataTables-1.11.5/images/sort_both.png -------------------------------------------------------------------------------- /docs/_static/css/DataTables-1.11.5/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/DataTables-1.11.5/images/sort_desc.png -------------------------------------------------------------------------------- /docs/_static/css/DataTables-1.11.5/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/DataTables-1.11.5/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /docs/_static/css/breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/breadcrumbs.css -------------------------------------------------------------------------------- /docs/_static/css/code-snippets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/code-snippets.css -------------------------------------------------------------------------------- /docs/_static/css/configuration/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/configuration/index.css -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/css/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/datatables.css -------------------------------------------------------------------------------- /docs/_static/css/headers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/headers.css -------------------------------------------------------------------------------- /docs/_static/css/hints.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/hints.css -------------------------------------------------------------------------------- /docs/_static/css/installation/running-on-bare-metal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/installation/running-on-bare-metal.css -------------------------------------------------------------------------------- /docs/_static/css/leftSidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/leftSidebar.css -------------------------------------------------------------------------------- /docs/_static/css/linkButtons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/linkButtons.css -------------------------------------------------------------------------------- /docs/_static/css/lists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/lists.css -------------------------------------------------------------------------------- /docs/_static/css/scrolls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/scrolls.css -------------------------------------------------------------------------------- /docs/_static/css/separate-commands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/separate-commands.css -------------------------------------------------------------------------------- /docs/_static/css/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/tables.css -------------------------------------------------------------------------------- /docs/_static/css/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/css/text.css -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_back.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_10ge_open_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_10ge_open_1.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_10ge_open_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_10ge_open_2.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_10ge_open_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_10ge_open_3.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_10ge_open_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_10ge_open_4.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_open_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_open_1.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_open_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_open_2.jpg -------------------------------------------------------------------------------- /docs/_static/images/1u_vyos_front_open_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/1u_vyos_front_open_3.jpg -------------------------------------------------------------------------------- /docs/_static/images/480px-Acrosser_ANDJ190N1_Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/480px-Acrosser_ANDJ190N1_Back.jpg -------------------------------------------------------------------------------- /docs/_static/images/480px-Acrosser_ANDJ190N1_Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/480px-Acrosser_ANDJ190N1_Front.jpg -------------------------------------------------------------------------------- /docs/_static/images/600px-Partaker-i5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/600px-Partaker-i5.jpg -------------------------------------------------------------------------------- /docs/_static/images/ESP_AH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/ESP_AH.png -------------------------------------------------------------------------------- /docs/_static/images/IPSec_close_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/IPSec_close_action_settings.png -------------------------------------------------------------------------------- /docs/_static/images/L3VPN_hub_and_spoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/L3VPN_hub_and_spoke.png -------------------------------------------------------------------------------- /docs/_static/images/PA-ESP-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-ESP-group.png -------------------------------------------------------------------------------- /docs/_static/images/PA-IKE-GW-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-IKE-GW-1.png -------------------------------------------------------------------------------- /docs/_static/images/PA-IKE-GW-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-IKE-GW-2.png -------------------------------------------------------------------------------- /docs/_static/images/PA-IKE-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-IKE-group.png -------------------------------------------------------------------------------- /docs/_static/images/PA-IPsec-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-IPsec-tunnel.png -------------------------------------------------------------------------------- /docs/_static/images/PA-tunnel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-tunnel-1.png -------------------------------------------------------------------------------- /docs/_static/images/PA-tunnel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-tunnel-2.png -------------------------------------------------------------------------------- /docs/_static/images/PA-tunnel-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/PA-tunnel-3.png -------------------------------------------------------------------------------- /docs/_static/images/VyOS_Dual-Hub_DMVPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/VyOS_Dual-Hub_DMVPN.png -------------------------------------------------------------------------------- /docs/_static/images/Wan_load_balancing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/Wan_load_balancing1.png -------------------------------------------------------------------------------- /docs/_static/images/Wan_load_balancing_exclude1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/Wan_load_balancing_exclude1.png -------------------------------------------------------------------------------- /docs/_static/images/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/ansible.png -------------------------------------------------------------------------------- /docs/_static/images/apu4_desk_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_desk_1.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_desk_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_desk_2.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_desk_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_desk_3.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_desk_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_desk_4.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_1.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_2.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_3.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_4.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_5.jpg -------------------------------------------------------------------------------- /docs/_static/images/apu4_rack_vyos_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/apu4_rack_vyos_print.jpg -------------------------------------------------------------------------------- /docs/_static/images/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/arrow-left.svg -------------------------------------------------------------------------------- /docs/_static/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/arrow-right.svg -------------------------------------------------------------------------------- /docs/_static/images/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/aws.png -------------------------------------------------------------------------------- /docs/_static/images/blueprint-dmvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/blueprint-dmvpn.png -------------------------------------------------------------------------------- /docs/_static/images/boot-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/boot-options.png -------------------------------------------------------------------------------- /docs/_static/images/breadcrumbs-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/breadcrumbs-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/check.svg -------------------------------------------------------------------------------- /docs/_static/images/cisco-vpn-ipsec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cisco-vpn-ipsec.png -------------------------------------------------------------------------------- /docs/_static/images/close-sidebar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/close-sidebar-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-01.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-02.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-03.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-04.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-05.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-06.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-07.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-aws-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-aws-08.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-01.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-02.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-03.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-04.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-05.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-azure-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-azure-06.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-gcp-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-gcp-01.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-gcp-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-gcp-02.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-gcp-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-gcp-03.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-gcp-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-gcp-04.png -------------------------------------------------------------------------------- /docs/_static/images/cloud-gcp-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cloud-gcp-05.png -------------------------------------------------------------------------------- /docs/_static/images/cmnd-link-dollar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cmnd-link-dollar-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/cmnd-link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/cmnd-link-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/copy-code-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/copy-code-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/dhcp-relay-through-gre-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/dhcp-relay-through-gre-bridge.png -------------------------------------------------------------------------------- /docs/_static/images/dual-hub-DMVPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/dual-hub-DMVPN.png -------------------------------------------------------------------------------- /docs/_static/images/eve-ng-vyos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/eve-ng-vyos.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-and-vrf-blueprints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-and-vrf-blueprints.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-bridge-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-bridge-forward.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-bridge-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-bridge-input.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-bridge-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-bridge-output.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-flowtable-packet-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-flowtable-packet-flow.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-fwd-packet-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-fwd-packet-flow.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-gral-packet-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-gral-packet-flow.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-gral-packet-flow.png-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-gral-packet-flow.png-orig -------------------------------------------------------------------------------- /docs/_static/images/firewall-input-packet-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-input-packet-flow.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-netfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-netfilter.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-traditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-traditional.png -------------------------------------------------------------------------------- /docs/_static/images/firewall-zonebased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/firewall-zonebased.png -------------------------------------------------------------------------------- /docs/_static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/github.svg -------------------------------------------------------------------------------- /docs/_static/images/gns3-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-01.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-02.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-03.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-04.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-05.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-06.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-07.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-08.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-09.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-10.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-11.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-12.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-13.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-14.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-15.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-16.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-17.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-20.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-21.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-215.png -------------------------------------------------------------------------------- /docs/_static/images/gns3-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gns3-22.png -------------------------------------------------------------------------------- /docs/_static/images/gowin-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gowin-01.png -------------------------------------------------------------------------------- /docs/_static/images/gowin-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gowin-02.png -------------------------------------------------------------------------------- /docs/_static/images/gowin-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gowin-03.png -------------------------------------------------------------------------------- /docs/_static/images/gowin-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/gowin-04.png -------------------------------------------------------------------------------- /docs/_static/images/hamburger-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/hamburger-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/inter-vrf-routing-vrf-lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/inter-vrf-routing-vrf-lite.png -------------------------------------------------------------------------------- /docs/_static/images/ipsec-vyos-pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/ipsec-vyos-pa.png -------------------------------------------------------------------------------- /docs/_static/images/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/json.png -------------------------------------------------------------------------------- /docs/_static/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/key.png -------------------------------------------------------------------------------- /docs/_static/images/keypairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/keypairs.png -------------------------------------------------------------------------------- /docs/_static/images/lac-lns-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/lac-lns-diagram.jpg -------------------------------------------------------------------------------- /docs/_static/images/lac-lns-winclient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/lac-lns-winclient.jpg -------------------------------------------------------------------------------- /docs/_static/images/ldapone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/ldapone.png -------------------------------------------------------------------------------- /docs/_static/images/ldaptwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/ldaptwo.png -------------------------------------------------------------------------------- /docs/_static/images/mainschema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/mainschema.png -------------------------------------------------------------------------------- /docs/_static/images/multicast-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/multicast-basic.png -------------------------------------------------------------------------------- /docs/_static/images/nat_before_vpn_topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nat_before_vpn_topology.png -------------------------------------------------------------------------------- /docs/_static/images/nmp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp1.png -------------------------------------------------------------------------------- /docs/_static/images/nmp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp2.png -------------------------------------------------------------------------------- /docs/_static/images/nmp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp3.png -------------------------------------------------------------------------------- /docs/_static/images/nmp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp4.png -------------------------------------------------------------------------------- /docs/_static/images/nmp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp5.png -------------------------------------------------------------------------------- /docs/_static/images/nmp6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp6.png -------------------------------------------------------------------------------- /docs/_static/images/nmp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/nmp7.png -------------------------------------------------------------------------------- /docs/_static/images/note-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/note-icon.svg -------------------------------------------------------------------------------- /docs/_static/images/openvpn_site2site_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/openvpn_site2site_diagram.jpg -------------------------------------------------------------------------------- /docs/_static/images/password-recovery-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/password-recovery-01.png -------------------------------------------------------------------------------- /docs/_static/images/pbr_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/pbr_example_1.png -------------------------------------------------------------------------------- /docs/_static/images/policy-based-ipsec-and-firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/policy-based-ipsec-and-firewall.png -------------------------------------------------------------------------------- /docs/_static/images/pppoe-ipv6-pd-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/pppoe-ipv6-pd-diagram.jpg -------------------------------------------------------------------------------- /docs/_static/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/project.png -------------------------------------------------------------------------------- /docs/_static/images/qos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos1.png -------------------------------------------------------------------------------- /docs/_static/images/qos10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos10.png -------------------------------------------------------------------------------- /docs/_static/images/qos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos2.png -------------------------------------------------------------------------------- /docs/_static/images/qos3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos3.png -------------------------------------------------------------------------------- /docs/_static/images/qos4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos4.png -------------------------------------------------------------------------------- /docs/_static/images/qos5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos5.png -------------------------------------------------------------------------------- /docs/_static/images/qos6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos6.png -------------------------------------------------------------------------------- /docs/_static/images/qos7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos7.png -------------------------------------------------------------------------------- /docs/_static/images/qos8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos8.png -------------------------------------------------------------------------------- /docs/_static/images/qos9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/qos9.png -------------------------------------------------------------------------------- /docs/_static/images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/service.png -------------------------------------------------------------------------------- /docs/_static/images/service_conntrack_sync-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/service_conntrack_sync-schema.png -------------------------------------------------------------------------------- /docs/_static/images/service_dhcp-relay01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/service_dhcp-relay01.png -------------------------------------------------------------------------------- /docs/_static/images/service_dhcpv6-relay01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/service_dhcpv6-relay01.png -------------------------------------------------------------------------------- /docs/_static/images/service_snmp_communication_principles_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/service_snmp_communication_principles_diagram.png -------------------------------------------------------------------------------- /docs/_static/images/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/sg.png -------------------------------------------------------------------------------- /docs/_static/images/sticky-connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/sticky-connections.jpg -------------------------------------------------------------------------------- /docs/_static/images/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/traffic.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_01.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_02.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_03.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_04.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_05.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_06.png -------------------------------------------------------------------------------- /docs/_static/images/uefi_secureboot_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/uefi_secureboot_07.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-01.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-02.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-03.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-04.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-05.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-06.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-qc-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-qc-01.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-qc-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-qc-02.png -------------------------------------------------------------------------------- /docs/_static/images/virt-libvirt-qc-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/virt-libvirt-qc-03.png -------------------------------------------------------------------------------- /docs/_static/images/vpn_dmvpn_topology01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vpn_dmvpn_topology01.png -------------------------------------------------------------------------------- /docs/_static/images/vpn_s2s_ikev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vpn_s2s_ikev2.png -------------------------------------------------------------------------------- /docs/_static/images/vpn_s2s_ikev2_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vpn_s2s_ikev2_c.png -------------------------------------------------------------------------------- /docs/_static/images/vpp/vyos_vpp_integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vpp/vyos_vpp_integration.svg -------------------------------------------------------------------------------- /docs/_static/images/vrf-example-topology-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vrf-example-topology-01.png -------------------------------------------------------------------------------- /docs/_static/images/vyos-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos-downloads.png -------------------------------------------------------------------------------- /docs/_static/images/vyos-logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos-logo-icon.png -------------------------------------------------------------------------------- /docs/_static/images/vyos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos-logo.png -------------------------------------------------------------------------------- /docs/_static/images/vyos-sr-isis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos-sr-isis.png -------------------------------------------------------------------------------- /docs/_static/images/vyos_1_4_nat66_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos_1_4_nat66_simple.png -------------------------------------------------------------------------------- /docs/_static/images/vyos_1_5_nat66_dhcpv6_wdummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos_1_5_nat66_dhcpv6_wdummy.png -------------------------------------------------------------------------------- /docs/_static/images/vyos_arista_bond_lacp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyos_arista_bond_lacp.png -------------------------------------------------------------------------------- /docs/_static/images/vyosnew-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/vyosnew-downloads.png -------------------------------------------------------------------------------- /docs/_static/images/wireguard_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/wireguard_qrcode.jpg -------------------------------------------------------------------------------- /docs/_static/images/wireguard_site2site_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/wireguard_site2site_diagram.jpg -------------------------------------------------------------------------------- /docs/_static/images/zone-policy-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/images/zone-policy-diagram.png -------------------------------------------------------------------------------- /docs/_static/js/codecopier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/js/codecopier.js -------------------------------------------------------------------------------- /docs/_static/js/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/js/datatables.js -------------------------------------------------------------------------------- /docs/_static/js/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/js/footer.js -------------------------------------------------------------------------------- /docs/_static/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/js/sidebar.js -------------------------------------------------------------------------------- /docs/_static/js/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_static/js/tables.js -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/automation/cloud-init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/cloud-init.rst -------------------------------------------------------------------------------- /docs/automation/command-scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/command-scripting.rst -------------------------------------------------------------------------------- /docs/automation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/index.rst -------------------------------------------------------------------------------- /docs/automation/terraform/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/index.rst -------------------------------------------------------------------------------- /docs/automation/terraform/terraformAWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/terraformAWS.rst -------------------------------------------------------------------------------- /docs/automation/terraform/terraformAZ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/terraformAZ.rst -------------------------------------------------------------------------------- /docs/automation/terraform/terraformGoogle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/terraformGoogle.rst -------------------------------------------------------------------------------- /docs/automation/terraform/terraformvSphere.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/terraformvSphere.rst -------------------------------------------------------------------------------- /docs/automation/terraform/terraformvyos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/terraform/terraformvyos.rst -------------------------------------------------------------------------------- /docs/automation/vyos-ansible.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-ansible.rst -------------------------------------------------------------------------------- /docs/automation/vyos-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-api.rst -------------------------------------------------------------------------------- /docs/automation/vyos-govyos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-govyos.rst -------------------------------------------------------------------------------- /docs/automation/vyos-napalm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-napalm.rst -------------------------------------------------------------------------------- /docs/automation/vyos-netmiko.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-netmiko.rst -------------------------------------------------------------------------------- /docs/automation/vyos-pyvyos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-pyvyos.rst -------------------------------------------------------------------------------- /docs/automation/vyos-salt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/automation/vyos-salt.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.1.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.2.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.3.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.4.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.5.rst -------------------------------------------------------------------------------- /docs/changelog/1.2.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.2.6.rst -------------------------------------------------------------------------------- /docs/changelog/1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.3.rst -------------------------------------------------------------------------------- /docs/changelog/1.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.4.rst -------------------------------------------------------------------------------- /docs/changelog/1.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/1.5.rst -------------------------------------------------------------------------------- /docs/changelog/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/changelog/index.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configexamples/ansible.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ansible.rst -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/DHCPRelay_through_GRE.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/DHCPRelay_through_GRE.log -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/DHCPRelay_through_GRE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/DHCPRelay_through_GRE.rst -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/_include/dhcp-relay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/_include/dhcp-relay.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/_include/dhcp-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/_include/dhcp-server.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/_include/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/_include/topology.png -------------------------------------------------------------------------------- /docs/configexamples/autotest/DHCPRelay_through_GRE/_include/transport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/DHCPRelay_through_GRE/_include/transport.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/L3VPN_EVPN.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/L3VPN_EVPN.log -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/L3VPN_EVPN.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/L3VPN_EVPN.rst -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/_include/PE1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/_include/PE1.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/_include/PE2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/_include/PE2.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/_include/PE3.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/L3VPN_EVPN/_include/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/L3VPN_EVPN/_include/topology.png -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/OpenVPN_with_LDAP.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/OpenVPN_with_LDAP.log -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/OpenVPN_with_LDAP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/OpenVPN_with_LDAP.rst -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/_include/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/_include/client.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/_include/ldap-auth.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/_include/ldap-auth.config -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/_include/ovpn-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/_include/ovpn-server.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/OpenVPN_with_LDAP/_include/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/OpenVPN_with_LDAP/_include/topology.png -------------------------------------------------------------------------------- /docs/configexamples/autotest/Wireguard/Wireguard.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/Wireguard/Wireguard.log -------------------------------------------------------------------------------- /docs/configexamples/autotest/Wireguard/Wireguard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/Wireguard/Wireguard.rst -------------------------------------------------------------------------------- /docs/configexamples/autotest/Wireguard/_include/branch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/Wireguard/_include/branch.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/Wireguard/_include/central.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/Wireguard/_include/central.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/Wireguard/_include/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/Wireguard/_include/topology.png -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/_include/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/_include/client.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/_include/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/_include/topology.png -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/_include/transport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/_include/transport.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/_include/vyos-wan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/_include/vyos-wan.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/_include/vyos-wan_tun0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/_include/vyos-wan_tun0.conf -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/tunnelbroker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/tunnelbroker.log -------------------------------------------------------------------------------- /docs/configexamples/autotest/tunnelbroker/tunnelbroker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/autotest/tunnelbroker/tunnelbroker.rst -------------------------------------------------------------------------------- /docs/configexamples/azure-vpn-bgp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/azure-vpn-bgp.rst -------------------------------------------------------------------------------- /docs/configexamples/azure-vpn-dual-bgp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/azure-vpn-dual-bgp.rst -------------------------------------------------------------------------------- /docs/configexamples/bgp-ipv6-unnumbered.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/bgp-ipv6-unnumbered.rst -------------------------------------------------------------------------------- /docs/configexamples/dmvpn-dualhub-dualcloud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/dmvpn-dualhub-dualcloud.rst -------------------------------------------------------------------------------- /docs/configexamples/firewall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/firewall.rst -------------------------------------------------------------------------------- /docs/configexamples/fwall-and-bridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/fwall-and-bridge.rst -------------------------------------------------------------------------------- /docs/configexamples/fwall-and-vrf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/fwall-and-vrf.rst -------------------------------------------------------------------------------- /docs/configexamples/ha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ha.rst -------------------------------------------------------------------------------- /docs/configexamples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/index.rst -------------------------------------------------------------------------------- /docs/configexamples/inter-vrf-routing-vrf-lite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/inter-vrf-routing-vrf-lite.rst -------------------------------------------------------------------------------- /docs/configexamples/ipsec-cisco-policy-based.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ipsec-cisco-policy-based.rst -------------------------------------------------------------------------------- /docs/configexamples/ipsec-cisco-route-based.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ipsec-cisco-route-based.rst -------------------------------------------------------------------------------- /docs/configexamples/ipsec-pa-route-based.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ipsec-pa-route-based.rst -------------------------------------------------------------------------------- /docs/configexamples/l3vpn-hub-and-spoke.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/l3vpn-hub-and-spoke.rst -------------------------------------------------------------------------------- /docs/configexamples/lac-lns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/lac-lns.rst -------------------------------------------------------------------------------- /docs/configexamples/nmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/nmp.rst -------------------------------------------------------------------------------- /docs/configexamples/ospf-unnumbered.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/ospf-unnumbered.rst -------------------------------------------------------------------------------- /docs/configexamples/policy-based-ipsec-and-firewall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/policy-based-ipsec-and-firewall.rst -------------------------------------------------------------------------------- /docs/configexamples/pppoe-ipv6-basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/pppoe-ipv6-basic.rst -------------------------------------------------------------------------------- /docs/configexamples/qos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/qos.rst -------------------------------------------------------------------------------- /docs/configexamples/segment-routing-isis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/segment-routing-isis.rst -------------------------------------------------------------------------------- /docs/configexamples/site-2-site-cisco.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/site-2-site-cisco.rst -------------------------------------------------------------------------------- /docs/configexamples/wan-load-balancing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/wan-load-balancing.rst -------------------------------------------------------------------------------- /docs/configexamples/zone-policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configexamples/zone-policy.rst -------------------------------------------------------------------------------- /docs/configuration/container/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/container/index.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/bridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/bridge.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/flowtables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/flowtables.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/global-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/global-options.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/groups.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/index.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/ipv4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/ipv4.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/ipv6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/ipv6.rst -------------------------------------------------------------------------------- /docs/configuration/firewall/zone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/firewall/zone.rst -------------------------------------------------------------------------------- /docs/configuration/highavailability/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/highavailability/index.rst -------------------------------------------------------------------------------- /docs/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/index.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/bonding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/bonding.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/bridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/bridge.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/dummy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/dummy.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/ethernet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/ethernet.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/geneve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/geneve.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/index.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/l2tpv3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/l2tpv3.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/loopback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/loopback.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/macsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/macsec.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/openvpn-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/openvpn-examples.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/openvpn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/openvpn.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/pppoe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/pppoe.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/pseudo-ethernet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/pseudo-ethernet.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/sstp-client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/sstp-client.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/tunnel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/tunnel.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/virtual-ethernet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/virtual-ethernet.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/vti.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/vti.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/vxlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/vxlan.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/wireguard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/wireguard.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/wireless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/wireless.rst -------------------------------------------------------------------------------- /docs/configuration/interfaces/wwan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/interfaces/wwan.rst -------------------------------------------------------------------------------- /docs/configuration/loadbalancing/haproxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/loadbalancing/haproxy.rst -------------------------------------------------------------------------------- /docs/configuration/loadbalancing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/loadbalancing/index.rst -------------------------------------------------------------------------------- /docs/configuration/loadbalancing/wan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/loadbalancing/wan.rst -------------------------------------------------------------------------------- /docs/configuration/nat/cgnat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/nat/cgnat.rst -------------------------------------------------------------------------------- /docs/configuration/nat/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/nat/index.rst -------------------------------------------------------------------------------- /docs/configuration/nat/nat44.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/nat/nat44.rst -------------------------------------------------------------------------------- /docs/configuration/nat/nat64.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/nat/nat64.rst -------------------------------------------------------------------------------- /docs/configuration/nat/nat66.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/nat/nat66.rst -------------------------------------------------------------------------------- /docs/configuration/pki/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/pki/index.rst -------------------------------------------------------------------------------- /docs/configuration/pki/pki_cli_import_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/pki/pki_cli_import_help.txt -------------------------------------------------------------------------------- /docs/configuration/policy/access-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/access-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/as-path-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/as-path-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/community-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/community-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/examples.rst -------------------------------------------------------------------------------- /docs/configuration/policy/extcommunity-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/extcommunity-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/index.rst -------------------------------------------------------------------------------- /docs/configuration/policy/large-community-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/large-community-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/local-route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/local-route.rst -------------------------------------------------------------------------------- /docs/configuration/policy/prefix-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/prefix-list.rst -------------------------------------------------------------------------------- /docs/configuration/policy/route-map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/route-map.rst -------------------------------------------------------------------------------- /docs/configuration/policy/route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/policy/route.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/arp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/arp.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/babel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/babel.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/bfd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/bfd.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/bgp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/bgp.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/failover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/failover.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/igmp-proxy.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/igmp-proxy.disable -------------------------------------------------------------------------------- /docs/configuration/protocols/igmp-proxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/igmp-proxy.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/index.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/isis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/isis.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/mpls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/mpls.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/multicast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/multicast.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/openfabric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/openfabric.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/ospf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/ospf.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/pim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/pim.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/pim6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/pim6.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/rip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/rip.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/ripng.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/ripng.disable -------------------------------------------------------------------------------- /docs/configuration/protocols/rpki.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/rpki.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/segment-routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/segment-routing.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/static.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/static.rst -------------------------------------------------------------------------------- /docs/configuration/protocols/vrf.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/protocols/vrf.disable -------------------------------------------------------------------------------- /docs/configuration/service/broadcast-relay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/broadcast-relay.rst -------------------------------------------------------------------------------- /docs/configuration/service/config-sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/config-sync.rst -------------------------------------------------------------------------------- /docs/configuration/service/conntrack-sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/conntrack-sync.rst -------------------------------------------------------------------------------- /docs/configuration/service/console-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/console-server.rst -------------------------------------------------------------------------------- /docs/configuration/service/dhcp-relay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/dhcp-relay.rst -------------------------------------------------------------------------------- /docs/configuration/service/dhcp-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/dhcp-server.rst -------------------------------------------------------------------------------- /docs/configuration/service/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/dns.rst -------------------------------------------------------------------------------- /docs/configuration/service/eventhandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/eventhandler.rst -------------------------------------------------------------------------------- /docs/configuration/service/https.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/https.rst -------------------------------------------------------------------------------- /docs/configuration/service/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/index.rst -------------------------------------------------------------------------------- /docs/configuration/service/ipoe-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/ipoe-server.rst -------------------------------------------------------------------------------- /docs/configuration/service/lldp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/lldp.rst -------------------------------------------------------------------------------- /docs/configuration/service/mdns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/mdns.rst -------------------------------------------------------------------------------- /docs/configuration/service/monitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/monitoring.rst -------------------------------------------------------------------------------- /docs/configuration/service/ntp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/ntp.rst -------------------------------------------------------------------------------- /docs/configuration/service/pppoe-advert.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/pppoe-advert.disable -------------------------------------------------------------------------------- /docs/configuration/service/pppoe-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/pppoe-server.rst -------------------------------------------------------------------------------- /docs/configuration/service/router-advert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/router-advert.rst -------------------------------------------------------------------------------- /docs/configuration/service/salt-minion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/salt-minion.rst -------------------------------------------------------------------------------- /docs/configuration/service/snmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/snmp.rst -------------------------------------------------------------------------------- /docs/configuration/service/ssh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/ssh.rst -------------------------------------------------------------------------------- /docs/configuration/service/suricata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/suricata.rst -------------------------------------------------------------------------------- /docs/configuration/service/tftp-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/tftp-server.rst -------------------------------------------------------------------------------- /docs/configuration/service/webproxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/service/webproxy.rst -------------------------------------------------------------------------------- /docs/configuration/system/acceleration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/acceleration.rst -------------------------------------------------------------------------------- /docs/configuration/system/config-management.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/config-management.disable -------------------------------------------------------------------------------- /docs/configuration/system/conntrack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/conntrack.rst -------------------------------------------------------------------------------- /docs/configuration/system/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/console.rst -------------------------------------------------------------------------------- /docs/configuration/system/default-route.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/default-route.rst -------------------------------------------------------------------------------- /docs/configuration/system/domain-name.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/domain-name.disable -------------------------------------------------------------------------------- /docs/configuration/system/domain-search.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/domain-search.disable -------------------------------------------------------------------------------- /docs/configuration/system/flow-accounting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/flow-accounting.rst -------------------------------------------------------------------------------- /docs/configuration/system/frr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/frr.rst -------------------------------------------------------------------------------- /docs/configuration/system/host-name.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/host-name.rst -------------------------------------------------------------------------------- /docs/configuration/system/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/index.rst -------------------------------------------------------------------------------- /docs/configuration/system/ip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/ip.rst -------------------------------------------------------------------------------- /docs/configuration/system/ipv6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/ipv6.rst -------------------------------------------------------------------------------- /docs/configuration/system/lcd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/lcd.rst -------------------------------------------------------------------------------- /docs/configuration/system/login.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/login.rst -------------------------------------------------------------------------------- /docs/configuration/system/name-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/name-server.rst -------------------------------------------------------------------------------- /docs/configuration/system/option.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/option.rst -------------------------------------------------------------------------------- /docs/configuration/system/proxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/proxy.rst -------------------------------------------------------------------------------- /docs/configuration/system/sflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/sflow.rst -------------------------------------------------------------------------------- /docs/configuration/system/static-host-mapping.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/static-host-mapping.disable -------------------------------------------------------------------------------- /docs/configuration/system/sysctl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/sysctl.rst -------------------------------------------------------------------------------- /docs/configuration/system/syslog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/syslog.rst -------------------------------------------------------------------------------- /docs/configuration/system/task-scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/task-scheduler.rst -------------------------------------------------------------------------------- /docs/configuration/system/time-zone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/time-zone.rst -------------------------------------------------------------------------------- /docs/configuration/system/updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/updates.rst -------------------------------------------------------------------------------- /docs/configuration/system/wifi-requlatory-domain.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/system/wifi-requlatory-domain.disable -------------------------------------------------------------------------------- /docs/configuration/trafficpolicy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/trafficpolicy/index.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/dmvpn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/dmvpn.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/index.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/ipsec/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/ipsec/index.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/ipsec/ipsec_general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/ipsec/ipsec_general.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/ipsec/remoteaccess_ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/ipsec/remoteaccess_ipsec.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/ipsec/site2site_ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/ipsec/site2site_ipsec.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/ipsec/troubleshooting_ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/ipsec/troubleshooting_ipsec.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/l2tp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/l2tp.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/openconnect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/openconnect.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/pptp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/pptp.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/rsa-keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/rsa-keys.rst -------------------------------------------------------------------------------- /docs/configuration/vpn/sstp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vpn/sstp.rst -------------------------------------------------------------------------------- /docs/configuration/vrf/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/configuration/vrf/index.rst -------------------------------------------------------------------------------- /docs/contributing/build-vyos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/build-vyos.rst -------------------------------------------------------------------------------- /docs/contributing/cla.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/cla.rst -------------------------------------------------------------------------------- /docs/contributing/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/debugging.rst -------------------------------------------------------------------------------- /docs/contributing/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/development.rst -------------------------------------------------------------------------------- /docs/contributing/issues-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/issues-features.rst -------------------------------------------------------------------------------- /docs/contributing/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/testing.rst -------------------------------------------------------------------------------- /docs/contributing/upstream-packages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/contributing/upstream-packages.rst -------------------------------------------------------------------------------- /docs/copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/copyright.md -------------------------------------------------------------------------------- /docs/coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/coverage.rst -------------------------------------------------------------------------------- /docs/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/documentation.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation/bare-metal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/bare-metal.rst -------------------------------------------------------------------------------- /docs/installation/cloud/aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/cloud/aws.rst -------------------------------------------------------------------------------- /docs/installation/cloud/azure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/cloud/azure.rst -------------------------------------------------------------------------------- /docs/installation/cloud/gcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/cloud/gcp.rst -------------------------------------------------------------------------------- /docs/installation/cloud/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/cloud/index.rst -------------------------------------------------------------------------------- /docs/installation/cloud/oracel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/cloud/oracel.rst -------------------------------------------------------------------------------- /docs/installation/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/image.rst -------------------------------------------------------------------------------- /docs/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/index.rst -------------------------------------------------------------------------------- /docs/installation/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/install.rst -------------------------------------------------------------------------------- /docs/installation/secure-boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/secure-boot.rst -------------------------------------------------------------------------------- /docs/installation/update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/update.rst -------------------------------------------------------------------------------- /docs/installation/virtual/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/docker.rst -------------------------------------------------------------------------------- /docs/installation/virtual/eve-ng.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/eve-ng.rst -------------------------------------------------------------------------------- /docs/installation/virtual/gns3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/gns3.rst -------------------------------------------------------------------------------- /docs/installation/virtual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/index.rst -------------------------------------------------------------------------------- /docs/installation/virtual/libvirt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/libvirt.rst -------------------------------------------------------------------------------- /docs/installation/virtual/proxmox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/proxmox.rst -------------------------------------------------------------------------------- /docs/installation/virtual/vmware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/installation/virtual/vmware.rst -------------------------------------------------------------------------------- /docs/introducing/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/introducing/about.rst -------------------------------------------------------------------------------- /docs/introducing/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/introducing/history.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/operation/boot-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/boot-options.rst -------------------------------------------------------------------------------- /docs/operation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/index.rst -------------------------------------------------------------------------------- /docs/operation/information.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/information.rst -------------------------------------------------------------------------------- /docs/operation/password-recovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/password-recovery.rst -------------------------------------------------------------------------------- /docs/operation/raid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/raid.rst -------------------------------------------------------------------------------- /docs/operation/upgrade-recovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/operation/upgrade-recovery.rst -------------------------------------------------------------------------------- /docs/quick-start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/quick-start.rst -------------------------------------------------------------------------------- /docs/troubleshooting/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/troubleshooting/index.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/acl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/acl.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/buffers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/buffers.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/cpu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/cpu.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/index.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/interface.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/ipsec.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/ipv6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/ipv6.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/l2learn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/l2learn.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/lcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/lcp.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/logging.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/memory.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/system.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/dataplane/unix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/dataplane/unix.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/index.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/bonding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/bonding.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/bridge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/bridge.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/gre.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/gre.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/index.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/ipip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/ipip.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/kernel.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/loopback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/loopback.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/vxlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/vxlan.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/interfaces/xconnect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/interfaces/xconnect.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/ipfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/ipfix.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/ipsec.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/nat/cgnat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/nat/cgnat.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/nat/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/nat/index.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/nat/nat44.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/nat/nat44.rst -------------------------------------------------------------------------------- /docs/vpp/configuration/sflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/configuration/sflow.rst -------------------------------------------------------------------------------- /docs/vpp/description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/description.rst -------------------------------------------------------------------------------- /docs/vpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/index.rst -------------------------------------------------------------------------------- /docs/vpp/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/limitations.rst -------------------------------------------------------------------------------- /docs/vpp/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/requirements.rst -------------------------------------------------------------------------------- /docs/vpp/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/docs/vpp/troubleshooting.rst -------------------------------------------------------------------------------- /languagechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/languagechecker.py -------------------------------------------------------------------------------- /localazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/localazy.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyos/vyos-documentation/HEAD/requirements.txt --------------------------------------------------------------------------------