Page MenuHomeVyOS Platform
Feed Search

Jun 25 2020

c-po closed T1808: add package nftables as Resolved.
Jun 25 2020, 6:21 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added a comment to T1808: add package nftables.

Latest rolling has nftables 0.9.6 - closing this

Jun 25 2020, 6:21 PM · VyOS 1.3 Equuleus (1.3.0)
c-po updated the task description for T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:53 PM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a comment to T2651: Generate CLI abstraction for options passed to CURL and SSH client.

I think this is a good idea. Maybe separate the protocols, http-client and ssh-client?

Jun 25 2020, 3:52 PM · VyOS 1.3 Equuleus (1.3.0)
c-po updated the task description for T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:48 PM · VyOS 1.3 Equuleus (1.3.0)
c-po updated the task description for T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:48 PM · VyOS 1.3 Equuleus (1.3.0)
c-po triaged T2651: Generate CLI abstraction for options passed to CURL and SSH client as Normal priority.
Jun 25 2020, 3:47 PM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a comment to T1850: syslog protocol can be set multiple times per facility for the same host.

Or we can make protocol a multi node.

Jun 25 2020, 3:43 PM
dmbaturin added a comment to T1850: syslog protocol can be set multiple times per facility for the same host.

Since the user can specify both protocols inside, we'll probably have to duplicate the whole things if we detect that.

Jun 25 2020, 3:41 PM
c-po added a parent task for T2596: Allow specifying source IP for 'add system image': T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:38 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added a parent task for T2615: Provide an explicit option for server fingerprint in commit archive, and make insecure the default: T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:38 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added subtasks for T2651: Generate CLI abstraction for options passed to CURL and SSH client: T2615: Provide an explicit option for server fingerprint in commit archive, and make insecure the default, T2596: Allow specifying source IP for 'add system image'.
Jun 25 2020, 3:38 PM · VyOS 1.3 Equuleus (1.3.0)
c-po created T2651: Generate CLI abstraction for options passed to CURL and SSH client.
Jun 25 2020, 3:38 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added a comment to T2615: Provide an explicit option for server fingerprint in commit archive, and make insecure the default.

Maybe related to T2596

Jun 25 2020, 3:35 PM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a project to T1901: Semicolon in values is interpreted as a part of the shell command by validators: VyOS 1.2 Crux (VyOS 1.2.6).
Jun 25 2020, 3:30 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
jestabro added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

@jjakob that is in fact what we are doing: for stability, some of the changes are necessarily incremental --- these are not new abstractions, but rather, refinements of the existing ones, which allow the separation of new code from legacy. We are avoiding any patching of the old backend, simply replacing with the structures which will allow a switch to vyconf, while improving performance and extension of the new code.

Jun 25 2020, 3:30 PM · VyOS 1.3 Equuleus
thomas-mangin added a comment to T2582: Script daemon to offload processing during commit.

I propose to provide alternatives is_ functions using the new XML code. I will provide a patch for review.

Jun 25 2020, 2:51 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

To be fair, I'm getting frustrated by the layers-upon-layers of new abstractions getting added on old code that doesn't work properly in the first place. I'd much prefer if we just started with a clean slate. I liked @thomas-mangin 's idea of replacing vyatta-cfg completely with our own code, either vyconf or his python daemon. I wouldn't waste time patching up the old backend, just make a decision in one place to replace it completely.

Jun 25 2020, 2:25 PM · VyOS 1.3 Equuleus
jjakob added a comment to T2523: Upgrade from 1.2.5 to 1.3-rolling-202005261512 results in broken network config on second boot.

I think I ran into this today after upgrading from 1.3-rolling-202006110117 to 1.3-rolling-202006241940. My config had eth1-eth3 (as those were the default names created by a previous install of 1.3 somewhere around May) and those worked fine for numerous reboots before this upgrade. The first reboot after adding the new image, everything was fine. The 2nd reboot (actually a power outage) the interfaces were eth0-eth2 on the system, but eth1-eth3 in the config, so the config load failed.

Jun 25 2020, 2:18 PM · VyOS 1.3 Equuleus (1.3.3)
jestabro added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

I agree @jjakob that we are still converging on the best way to structure the salient information, namely the difference between effective and session configs, however this will be internalized: a simple example of use for testing and daemon (and other) is:

Jun 25 2020, 1:59 PM · VyOS 1.3 Equuleus
jjakob added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

Keep in mind that the preferred way to implement scripts is, in my mind, the one used by interfaces-tunnel.py: it takes both session and effective configs and compares them, only applying the changes for the differences that are required. get_config_dict just takes the session config and so it requires a complete teardown and re-initialization of any system component that is configured from it (restarting instead of reloading services, deleting interfaces instead of modifying just 1 setting, ...)
I don't consider just get_config_dict as the preferred future way to implement features for that reason, rather it is the interfaces-tunnel that could be made the reference.
get_config_dict could be ran 2 times (once with effective=True) in each script, then the script could compare/make a diff of the 2 dicts, but that's what interfaces-tunnel ConfigurationState does.
Take for example a minor change in the current openvpn code - changing the description of the interface - currently results in a complete service outage (restart). AFAIK all scripts are like this. It didn't use to be that way in Vyatta, most perl scripts compared session and effective configs and just applied the necessary changes.

Jun 25 2020, 1:56 PM · VyOS 1.3 Equuleus
jestabro added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

I'm not sure that we have to go that far, but let me take a closer look, and we can discuss; the model is to be able to call, in batch, the functions of an arbitrary conf_mode script, without variation in structure or behaviour.

Jun 25 2020, 1:55 PM · VyOS 1.3 Equuleus
thomas-mangin claimed T2643: show interfaces does not scale with terminal width.
Jun 25 2020, 1:55 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

There is really no difference between calling Config() and using it functions in the code - as is done by every module - vs having the class inherit from it as I do not use any private ( _ prefixed ) functions. I can modify the code to have self.config as an object of the class instead but IMO this is cosmetic and does not change anything with the API and coding guideline.

Jun 25 2020, 1:48 PM · VyOS 1.3 Equuleus
jestabro added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

Only that it inherits from Config, hence the form of the Config instance can not be changed, say, to 'off-line' Config, or 'testing' Config, which would have different init functions; if it took Config as an argument instead, or a named argument with default the 'live' Config, then it would not be an issue for generalization. But we should discuss the details further, and collect results and suggestions.

Jun 25 2020, 1:41 PM · VyOS 1.3 Equuleus
jjakob created T2650: interfaces bridge, bonding: revert back to per-interface membership syntax.
Jun 25 2020, 1:40 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2640: Running VyOS inside Docker containers.

not willing to take the lead on this task but happy to help.

Jun 25 2020, 1:29 PM · VyOS 1.3 Equuleus (1.3.3)
thomas-mangin added a comment to T2649: Ensure configration mode scripts conform to coding guidelines.

@jestabro could you please clarify how interfaces-tunnel.py is not following the guideline. The class it uses to generate the dict is internal to the get_config() function and the dict API is respected.

Jun 25 2020, 1:28 PM · VyOS 1.3 Equuleus
jestabro added a subtask for T2582: Script daemon to offload processing during commit: T2649: Ensure configration mode scripts conform to coding guidelines.
Jun 25 2020, 12:32 PM · VyOS 1.3 Equuleus (1.3.0)
jestabro added a parent task for T2649: Ensure configration mode scripts conform to coding guidelines: T2582: Script daemon to offload processing during commit.
Jun 25 2020, 12:32 PM · VyOS 1.3 Equuleus
jestabro created T2649: Ensure configration mode scripts conform to coding guidelines.
Jun 25 2020, 12:29 PM · VyOS 1.3 Equuleus
zsdc changed the status of T2640: Running VyOS inside Docker containers from Open to In progress.
Jun 25 2020, 12:01 PM · VyOS 1.3 Equuleus (1.3.3)
jjakob triaged T2648: router-advert: erroneous syslog warning about invalid all-zeros prefix as Low priority.
Jun 25 2020, 10:45 AM · VyOS 1.3 Equuleus (1.3.0), test
jjakob changed the status of T2155: Cannot set anything on Intel 82599ES 10-Gigabit SFI/SFP+ from Open to Needs testing.

Possibly related to T2205, it might have been fixed since this was reported.

Jun 25 2020, 9:49 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a project to T2300: Cannot remove PBR: VyOS 1.3 Equuleus.

Apparently the "still in use" check logic really leaves much to be desired. See T1292. I wonder if there's a general fix within the current approach.

Jun 25 2020, 8:42 AM · VyOS 1.4 Sagitta
dmbaturin closed T2159: webproxy log read from wrong file as Resolved.

That part is rewritten in current already. https://github.com/vyos/vyos-1x/blob/current/op-mode-definitions/show-log.xml#L212

Jun 25 2020, 8:39 AM · VyOS 1.3 Equuleus (1.3.0), vyatta-webproxy
olofl added a comment to T2641: Rewrite vpn ipsec OP commands in new style XML syntax.

Going to mention this in here:

Jun 25 2020, 8:24 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T1241: Remove of policy route throws CLI error.

@dmbaturin sure, PR https://github.com/vyos/vyatta-cfg-firewall/pull/17

Jun 25 2020, 8:13 AM · VyOS 1.2 Crux (VyOS 1.2.6)
dmbaturin closed T2062: Wrong dhcp-server static route subnet bytes as Resolved.
Jun 25 2020, 7:52 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
dmbaturin added a project to T2062: Wrong dhcp-server static route subnet bytes: VyOS 1.2 Crux (VyOS 1.2.6).
Jun 25 2020, 7:52 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
dmbaturin added a comment to T2097: Problems when using <path> as completion helper in op-mode.

Turns out it's because the conf mode "allowed: " is escaped and eval'd when it's passed to the shell: https://github.com/vyos/vyatta-cfg/blob/current/src/cstore/cstore.cpp#L756-L762

Jun 25 2020, 7:48 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a comment to T1241: Remove of policy route throws CLI error.

Could you make a pull request?

Jun 25 2020, 7:20 AM · VyOS 1.2 Crux (VyOS 1.2.6)
dmbaturin added a project to T2638: FRR: New framework for configuring FRR : VyOS 1.3 Equuleus.

I've reviewed the code and it looks good to me.

Jun 25 2020, 7:17 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T1762: VLAN interface configuration fails after internal representation of edit level was switched from a string to a list, a subtask of T1764: Use lists instead of whitespace-separated strings in vyos.config , as Resolved.
Jun 25 2020, 7:04 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T1762: VLAN interface configuration fails after internal representation of edit level was switched from a string to a list as Resolved.
Jun 25 2020, 7:04 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin renamed T1665: prefix-list and prefix-list6 rules incorrectly accept a host address where prefix is required from prefix-list incorrectly accept a host address where prefix is required to prefix-list and prefix-list6 rules incorrectly accept a host address where prefix is required.
Jun 25 2020, 7:03 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin renamed T1665: prefix-list and prefix-list6 rules incorrectly accept a host address where prefix is required from Commit failed after delete prefix-list to prefix-list incorrectly accept a host address where prefix is required.
Jun 25 2020, 7:02 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin edited a custom field on T2487: VRRP does not display info when group disabled.
Jun 25 2020, 6:25 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T2487: VRRP does not display info when group disabled as Resolved.

Ideally we may want to add an extended "if VRRP configured" check, or make keepalived produce an empty (or special) file when it's running but has no data. For now this fix should do though.

Jun 25 2020, 6:25 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin renamed T2455: No support for the IPv6 VTI from Impossible to assign ipv6 address on VTI interface to No support for the IPv6 VTI.
Jun 25 2020, 6:02 AM · VyOS 1.4 Sagitta
dmbaturin added a comment to T2455: No support for the IPv6 VTI.

VTI is secretly IPIP, so it doesn't support IPv6. The real issue is that we don't support the IPv6 variant of VTI yet.

Jun 25 2020, 6:02 AM · VyOS 1.4 Sagitta
dmbaturin assigned T2430: cannot delete specific route static next-hop to jestabro.
Jun 25 2020, 6:01 AM · VyOS 1.3 Equuleus (1.3.0-epa1)
dmbaturin added a comment to T2376: /config/user-data and "preserved during image upgrade!".

The user-data dir actually is preserved on upgrade, it's just the check that is faulty. Need to look into it.

Jun 25 2020, 6:00 AM · VyOS 1.2 Crux
dmbaturin added a project to T2329: Show remote config openvpn : VyOS 1.2 Crux.
Jun 25 2020, 5:59 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux
dmbaturin closed T2329: Show remote config openvpn , a subtask of T2322: CLI [op-mode] bugs. Root task, as Resolved.
Jun 25 2020, 5:59 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T2329: Show remote config openvpn as Resolved.

Added a warning.

Jun 25 2020, 5:58 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux
dmbaturin added a project to T2218: Add support for the peeringdb module in salt (upgrade salt-minion to 2019.2): VyOS 1.3 Equuleus.
Jun 25 2020, 5:43 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
dmbaturin closed T2165: When trying to add route to ripng it complains that ip address should be IPv4 format as Resolved.
Jun 25 2020, 5:42 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a project to T2159: webproxy log read from wrong file: VyOS 1.3 Equuleus.
Jun 25 2020, 5:42 AM · VyOS 1.3 Equuleus (1.3.0), vyatta-webproxy
dmbaturin added a project to T2155: Cannot set anything on Intel 82599ES 10-Gigabit SFI/SFP+: VyOS 1.3 Equuleus.
Jun 25 2020, 5:41 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T2101: Fix VXLAN config option parsing, a subtask of T2057: Generalised Interface configuration, as Resolved.
Jun 25 2020, 5:37 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin closed T2101: Fix VXLAN config option parsing as Resolved.
Jun 25 2020, 5:37 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin added a project to T2062: Wrong dhcp-server static route subnet bytes: VyOS 1.3 Equuleus.
Jun 25 2020, 5:36 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
dmbaturin added projects to T2090: Deleting 'service salt-minion' causes python TypeError: VyOS 1.2 Crux, VyOS 1.3 Equuleus.
Jun 25 2020, 5:32 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux
dmbaturin closed T1986: Python configuration manipulation library leaks open files as Resolved.
Jun 25 2020, 5:30 AM · VyOS 1.3 Equuleus (1.3.0)
dmbaturin changed the status of T1963: Can't copy or rename a node from Open to Confirmed.

Still reproducible in 1.3-rolling-202006241940

Jun 25 2020, 5:28 AM · VyOS Rolling, Bugs, VyOS 1.5 Circinus
trae32566 updated the task description for T2646: Sysctl for IPv4 ECMP Hash Policy Not Set.
Jun 25 2020, 5:22 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2646: Sysctl for IPv4 ECMP Hash Policy Not Set.
Jun 25 2020, 5:20 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2644: Bonding interfaces cannot be disabled.
Jun 25 2020, 2:57 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2643: show interfaces does not scale with terminal width.
Jun 25 2020, 2:50 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2642: sshd fails to start due to configuration error.
Jun 25 2020, 2:27 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 24 2020

Viacheslav added a comment to T2637: Vlan is not removed from the system.

vif interfaces are removed normally.

Jun 24 2020, 7:19 PM · VyOS 1.3 Equuleus (1.3.0)
SIN3R6Y added a comment to T2630: Allow Interface MTU over 9000.

There is the weird area here, as 1G interfaces are generally capped at 9K more or less (whether limits include those overheads or not is always weird, such as switches saying they are 9K but also 9120). For VM nics, you're never completely sure of what the host or what the switches directly connected to the hosts will allow either.

Maybe warn on over 9000 but not block it? Also, what are NVMeoF/RoCE NIC's saying these days? Still, since path MTU discovery isn't reliable, direct testing the interface seems like a good fallback, but while udev running it might be okay, again for VM nics, the host changing the underlying hardware could cause changes while running, so rescan on every commit?

Jun 24 2020, 6:58 PM · VyOS 1.3 Equuleus (1.3.0)
jestabro updated the task description for T2582: Script daemon to offload processing during commit.
Jun 24 2020, 6:55 PM · VyOS 1.3 Equuleus (1.3.0)
Viacheslav changed the status of T2637: Vlan is not removed from the system, a subtask of T2353: Interface [conf_mode] errors parent task, from Open to Needs testing.
Jun 24 2020, 6:48 PM · VyOS 1.3 Equuleus (1.3.6)
Viacheslav changed the status of T2637: Vlan is not removed from the system from Open to Needs testing.
Jun 24 2020, 6:48 PM · VyOS 1.3 Equuleus (1.3.0)
c-po closed T1938: syslog doesn't start automatically as Resolved.
Jun 24 2020, 6:10 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po changed the status of T2595: Update Linux Kernel to v4.19.128 from Unknown Status to Resolved.
Jun 24 2020, 6:10 PM · VyOS 1.3 Equuleus (1.3.0)
fmertz added a comment to T2564: Extend VyOS to support appliance LCDs.

Update: After hooking up an actual EZIO device to my VM and working the code back and forth, I seem to have settled on this design:

Jun 24 2020, 4:55 PM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) claimed T2641: Rewrite vpn ipsec OP commands in new style XML syntax.
Jun 24 2020, 4:48 PM · VyOS 1.4 Sagitta
Unknown Object (User) created T2641: Rewrite vpn ipsec OP commands in new style XML syntax.
Jun 24 2020, 4:48 PM · VyOS 1.4 Sagitta
c-po updated the task description for T2625: Provide generic Library for package builds.
Jun 24 2020, 4:28 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po updated the task description for T2625: Provide generic Library for package builds.
Jun 24 2020, 4:11 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po updated the task description for T2625: Provide generic Library for package builds.
Jun 24 2020, 4:09 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po updated the task description for T2625: Provide generic Library for package builds.
Jun 24 2020, 3:49 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
zsdc created T2640: Running VyOS inside Docker containers.
Jun 24 2020, 3:48 PM · VyOS 1.3 Equuleus (1.3.3)
c-po updated the task description for T2625: Provide generic Library for package builds.
Jun 24 2020, 3:37 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po changed the status of T2595: Update Linux Kernel to v4.19.128 from Resolved to Unknown Status.
Jun 24 2020, 3:21 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added a project to T2595: Update Linux Kernel to v4.19.128: VyOS 1.2 Crux (VyOS 1.2.6).
Jun 24 2020, 3:08 PM · VyOS 1.3 Equuleus (1.3.0)
c-po moved T1938: syslog doesn't start automatically from Need Triage to Finished on the VyOS 1.3 Equuleus board.
Jun 24 2020, 3:07 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po claimed T1938: syslog doesn't start automatically.
Jun 24 2020, 3:07 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
olofl created T2639: sort output of show vpn ipsec sa .
Jun 24 2020, 2:56 PM · VyOS 1.3 Equuleus (1.3.0)
Viacheslav added a comment to T1938: syslog doesn't start automatically.

It looks like this bug is in the kernel.
1.2.5 - 4.19.106-amd64

Jun 24 2020, 2:50 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
Viacheslav added a project to T1938: syslog doesn't start automatically: VyOS 1.2 Crux.
Jun 24 2020, 2:43 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
Viacheslav closed T2633: Error with arp_accept on tun interface, a subtask of T2353: Interface [conf_mode] errors parent task, as Resolved.
Jun 24 2020, 12:34 PM · VyOS 1.3 Equuleus (1.3.6)
Viacheslav closed T2633: Error with arp_accept on tun interface as Resolved.

Work as expected.

Jun 24 2020, 12:34 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2637: Vlan is not removed from the system.

The problem also probably exists with vif_s .. it needs to be investigated.

Jun 24 2020, 10:28 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2637: Vlan is not removed from the system.

https://github.com/vyos/vyos-1x/pull/474/files

Jun 24 2020, 10:27 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin claimed T2637: Vlan is not removed from the system.
Jun 24 2020, 10:05 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin closed T2634: remove autogeneration of interface "ip section" from vyatta-cfg-system as Resolved.
Jun 24 2020, 8:24 AM · VyOS 1.3 Equuleus (1.3.0)