summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-02tunnel: T3030: Add erspan protocol supportjack9603301
2021-02-01smoketest: configs: import sample config provided by Andri SteinerChristian Poessinger
2021-02-01Merge pull request #713 from sever-sever/T3278Christian Poessinger
vrf: T3278: Add XML for conf-mode
2021-02-01vrf: T3278: Add XML for conf-modesever-sever
2021-01-31smoketest: routes: add initial tests for static routesChristian Poessinger
2021-01-31smoketest: vrf: add test case for static v4/v6 routes incl. leakingChristian Poessinger
2021-01-31smoketest: vrf: verify interfaces can be bound/unboundChristian Poessinger
2021-01-31lldp: T2230: verify file exists before unlinking itChristian Poessinger
2021-01-31smoketest: configs: import sample config provided by Tim HarmanChristian Poessinger
2021-01-31smoketest: configs: cleanupChristian Poessinger
2021-01-31Merge pull request #712 from erkin/currentChristian Poessinger
vyos: T3274: Handle EOF in ask_yes_no()
2021-01-31vyos: T3274: Handle EOF in ask_yes_no()erkin
2021-01-30Merge pull request #711 from samburney/currentChristian Poessinger
pppoe: T3273: Leave default-route in place if 'default-route' is set to 'none'
2021-01-30bgp: T3037: remove invalid CLI nodes for ipv6 specific dynamic capabilityChristian Poessinger
2021-01-30bgp: T3037: add migration scriptChristian Poessinger
(cherry picked from commit 32822d5e1831dff5cd904c0cb5886f7d737afab6)
2021-01-30pppoe: T3273: Leave default-route in place if 'default-route' is set to 'none'Sam Burney
2021-01-29ospf: T3272: ensure interface config is consistent to CLIChristian Poessinger
2021-01-29Merge pull request #709 from bstepler/T3268Christian Poessinger
vif-s: T3268: add VRF support
2021-01-29Merge pull request #710 from bstepler/T3269Christian Poessinger
vif-c: verify: T3269: fix configuration verification
2021-01-29smoketest: ospf: T3267: test interface configurationChristian Poessinger
2021-01-29ospf: T3267: bugfix missing interface parameters cost, priority and bandwidthChristian Poessinger
2021-01-29vif-s: T3268: add VRF supportBrandon Stepler
2021-01-29vif-c: verify: T3269: fix configuration verificationBrandon Stepler
2021-01-29smoketest: ospf: merge area and virtual-link testcasesChristian Poessinger
2021-01-29ospf: T3267: fix invalid migrator version numberChristian Poessinger
2021-01-29ospf: T3267: move "interface ip ospf" configuration to "protocols ospf ↵Christian Poessinger
interface" For easier maintenance and operability move the interface specific protocol setting of OSPF to the OSPF protocol section. This is now also in-line with IS-IS. This means to migrate: ethernet eth0 { vif 202 { ip { ospf { authentication { md5 { key-id 10 { md5-key vyosvyos } } } dead-interval 40 hello-interval 10 priority 1 retransmit-interval 5 transmit-delay 1 } } } } to protocols { ospf { interface eth0.201 { authentication { md5 { key-id 10 { md5-key vyosvyos } } } dead-interval 40 hello-interval 10 priority 1 retransmit-interval 5 transmit-delay 1 } }
2021-01-29rpki: T3266: support deleting entire section from FRR configChristian Poessinger
2021-01-29rpki: T3255: fix polling-period default value of 300 secondsChristian Poessinger
2021-01-29rpki: T3255: disable debug knobsChristian Poessinger
2021-01-29Merge branch 't3255-rpki' of github.com:c-po/vyos-1x into currentChristian Poessinger
* 't3255-rpki' of github.com:c-po/vyos-1x: rpki: T3255: provide full protocol support in XML and Python op-mode: ssh: support generating client keypair smoketest: openvpn: remove print() when generating keys
2021-01-29rpki: T3255: provide full protocol support in XML and PythonChristian Poessinger
This commit provides the implementation of the OSPF CLI with a Jinja2 template that is loaded by FRR reload.
2021-01-29op-mode: ssh: support generating client keypairChristian Poessinger
vyos@vyos:~$ generate ssh client-key /config/auth/id_rsa_rpki Generating public/private rsa key pair. Your identification has been saved in /config/auth/id_rsa_rpki. Your public key has been saved in /config/auth/id_rsa_rpki.pub. The key fingerprint is: SHA256:aBMN1F6lINh4CbG/fuEVReCpbZr3U0/KdorWY6iGfvw vyos@vyos The key's randomart image is: +---[RSA 2048]----+ | oB+o. .+o | | o.++.o.o. | | ......+. | | . o.o. | | = S o. | | . o.+. . .| | ..o=. = + | | . +.+.+.B o| | .o.o.+E+.+ | +----[SHA256]-----+
2021-01-29smoketest: openvpn: remove print() when generating keysChristian Poessinger
2021-01-28Merge pull request #706 from DmitriyEshenko/1x-pppoe-cl02Christian Poessinger
smoketest: T3261: Add check PPPoE interface disable state
2021-01-28Merge pull request #707 from jack9603301/T3257Daniil Baturin
monitor: op-mode: T3257: Fix the CLI of tcpdump
2021-01-28monitor: op-mode: T3257: Fix the CLI of tcpdumpjack9603301
2021-01-28smoketest: T3261: Add check PPPoE interface disable stateDmitriyEshenko
2021-01-27Merge pull request #705 from bstepler/T3262Christian Poessinger
dhcpv6: T3262: don't run DHCPv6 client when only dhcpv6-options is configured
2021-01-27Merge pull request #704 from bstepler/T3240Christian Poessinger
dhcpv6: T3240: send DUID when only DHCPv6 PD is configured
2021-01-27dhcpv6: T3262: don't run DHCPv6 client when only dhcpv6-options is configuredBrandon Stepler
If dhcpv6-options is configured without requesting a DHCPv6 address or PD, the dhcpv6pd variable is assigned an empty dict.
2021-01-27dhcpv6: T3240: send DUID when only DHCPv6 PD is configuredBrandon Stepler
2021-01-27Merge pull request #703 from DmitriyEshenko/pppoe-client-2701202101Christian Poessinger
pppoe: T3261: Stop systemd service if pppoe interface disable
2021-01-27pppoe: T3261: Stop systemd service if pppoe interface disableDmitriyEshenko
2021-01-27Merge pull request #701 from erkin/currentDaniil Baturin
op-mode: T3110: Gracefully handle SIGPIPE in show-interfaces
2021-01-26Revert "smoketest: dhcpc6: do not increase duid"Christian Poessinger
This reverts commit 1992d9aed31b6906806635687c2b2d2d52310990. After commit b4889039 ("smoketest: refactor setUp() for all interface based testcases") we can now use dynamic duid tests.
2021-01-26smoketest: refactor setUp() for all interface based testcasesChristian Poessinger
It does not make sense (at all!) to re-initialize the entire class with every call to setUp(). We neither change the enabled/disabled tastcases dynamically, not do we adjust the testinterfaces during a run. Remove the runtime overhead and place one-time init calls into setUpClass() instead.
2021-01-26op-mode: T3110: Gracefully handle SIGPIPE in show-interfaceserkin
2021-01-26Merge pull request #699 from jack9603301/T3257Christian Poessinger
monitor: traffic: op-mode: T3257: tcpdump supporting complete protocol
2021-01-26Merge pull request #698 from sever-sever/T3256Christian Poessinger
rpki: T3256: Add XML for protocol rpki conf-mode
2021-01-26smoketest: dhcpc6: do not increase duidChristian Poessinger
For a yet undetermined reason incrementing the duid dynamically in the test script leads to an error - for the time beeing work with a fixed duid.