Page MenuHomeVyOS Platform
Feed Advanced Search

May 17 2020

thomas-mangin added a comment to T2467: Restarting flow accounting fails with systemd error.

The run code could check the command name against a list of known "need sudo" commands and prepend it automagically so the command looks like normal but is auto-sudo'ed

May 17 2020, 6:59 PM · VyOS 1.3 Equuleus (1.3.0)

May 13 2020

thomas-mangin added a comment to T2453: Improve serial console (add options to auto-detect or hard-set terminal size).

https://github.com/joejulian/xterm/blob/master/resize.c Not complicated to port in the vyos library, replacing the current code and therefore only run when required

May 13 2020, 8:49 AM · VyOS 1.5 Circinus

May 12 2020

thomas-mangin added a comment to T2453: Improve serial console (add options to auto-detect or hard-set terminal size).

Should we trap the signal in vash, set an env value and use it with vyos?

May 12 2020, 9:23 PM · VyOS 1.5 Circinus

May 10 2020

thomas-mangin added a comment to T2442: Move application of STP settings for bridge members from interfaces-bridge.py to Interface.add_to_bridge().

If enable is not clear as a name to say that it adds the feature to the class, it is a class decorator, then please suggest a better name.

May 10 2020, 9:30 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin closed T2372: VLAN: error on commit if main interface is disabled as Resolved.
May 10 2020, 9:27 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2366: change the default for Interface creation to False.

I will look into the use case and see if I can think of something.

May 10 2020, 9:23 AM · VyOS 1.5 Circinus

May 9 2020

thomas-mangin added a comment to T2433: Improve CLI value validator performance.

I have implemented a "validator program" which is an entry point which will locate a named python program and run it. It uses the import mechanism of python at startup so the setup time is very high.

May 9 2020, 5:02 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
thomas-mangin added a comment to T2404: Cannot change MTU.

I raised this with the team and the idea of auto-detection does not get much support, which is fine, I just wanted to make sure I was doing the right thing. So I will finish this patch which will prevent some failure case and try to make the error message friendlier. Also, can look at where in the chain of change the MTU is performed to see if it can be rolled back.

May 9 2020, 12:42 PM · VyOS 1.3 Equuleus (1.3.6)

May 8 2020

thomas-mangin added a comment to T2417: Python validator cleanup.

https://github.com/vyos/vyos-1x/pull/395

May 8 2020, 11:51 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin reopened T2417: Python validator cleanup as "In progress".
May 8 2020, 11:50 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin created T2437: New Config Code in the library.
May 8 2020, 10:53 AM · VyOS 1.4 Sagitta
thomas-mangin added a comment to T2409: At boot, effective config should not be equal to current config.

@jjakob it does nothing about the boot case but it would be much easier to add it to that code than what we do ATM.

May 8 2020, 10:51 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2436: equuleus: Testing: vyos-1x: syntax checking Python scripts in PR.

It seems that github has special rules for the .github file and that no PR can be done for it:
https://github.com/thomas-mangin/vyos-1x/blob/T2436/.github/workflows/pythonapp.yml

May 8 2020, 10:22 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2436: equuleus: Testing: vyos-1x: syntax checking Python scripts in PR.

I would also suggest doing the same using github actions so that on push to your local repository to get a warning from github.

May 8 2020, 9:54 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2372: VLAN: error on commit if main interface is disabled.

Why do we need to remove all addresses from the interface when it is disabled?

May 8 2020, 9:43 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin closed T2417: Python validator cleanup as Resolved.
May 8 2020, 9:42 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2409: At boot, effective config should not be equal to current config.

Can I throw https://github.com/vyos/vyos-1x/blob/current/src/conf_mode/interfaces-tunnel.py#L32 into the mix?

May 8 2020, 9:26 AM · VyOS 1.3 Equuleus (1.3.0)

May 7 2020

thomas-mangin updated the task description for T2407: alternate installation for the vyos-1x python code.
May 7 2020, 9:14 PM · VyOS 2.0.x
thomas-mangin added a comment to T2407: alternate installation for the vyos-1x python code.

How this can be implemented in practice was tested with https://github.com/thomas-mangin/vyos-extra

  • the program can be installed using pip/setuptools and the "vyosextra.main:main" entry point, generating a "vyos" program.
  • the "release" program in the root folder generates a self-contained executable (using the builtin python3 zipapp library) which can be place before in the path, taking precedence over the installed version.
  • each feature "vyos ssh", "vyos update" is a single program and could be installed independently using other entry points
  • dropping a program in the folder automatically registers it to the main "vyos" program, each program has a "def main()" with a docstring used for the "-h"
  • the assets in the data folder are converted into python dict and used when the program is a zipapp.
May 7 2020, 9:13 PM · VyOS 2.0.x
thomas-mangin created T2433: Improve CLI value validator performance.
May 7 2020, 8:41 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
thomas-mangin added a comment to T2425: Rewrite all policy zebra filters to XML/Python style.

@jjakob I was going to offer to do so this week if people agreed to give me a chance to show good it could be.

May 7 2020, 1:20 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2425: Rewrite all policy zebra filters to XML/Python style.

Using shell scripts would be a step back. The biggest part of the python script is the parsing of the vyos code. That's why I am suggesting that vyos command should be sent to a python daemon.
We can connect to it using IPC, and this can be done via a small C wrapper (or even directly in the caller's code to not even fork).

vyos@vyos# time bash -c ""
May 7 2020, 1:16 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2404: Cannot change MTU.

I was also wondering if we should attempt an auto-detection of MTU on boot and save the result? This is why I was asking if this was the right approach.

May 7 2020, 11:41 AM · VyOS 1.3 Equuleus (1.3.6)

May 6 2020

thomas-mangin added a comment to T2404: Cannot change MTU.

Not sure if this is the right approach or not. Feedback welcomed.

May 6 2020, 11:44 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin claimed T2426: vymgmt unparsable output.
May 6 2020, 3:27 PM · Python Management Library
thomas-mangin added a comment to T2426: vymgmt unparsable output.

https://github.com/vyos/vyos-1x/pull/394

May 6 2020, 3:27 PM · Python Management Library
thomas-mangin added a comment to T2407: alternate installation for the vyos-1x python code.
May 6 2020, 8:06 AM · VyOS 2.0.x
thomas-mangin edited projects for T2407: alternate installation for the vyos-1x python code, added: VyOS 1.1.x; removed VyOS 2.0.x.
May 6 2020, 8:05 AM · VyOS 2.0.x

May 5 2020

thomas-mangin added a comment to T2426: vymgmt unparsable output.

ack - I will change this to make sure it is safe !

May 5 2020, 6:35 PM · Python Management Library

May 3 2020

thomas-mangin added a comment to T2404: Cannot change MTU.

Some code should also be added to detect the parent MTU size and make sure a clan MTU is smaller than the parent

May 3 2020, 8:15 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2404: Cannot change MTU.

The mtu provided are reasonable and should not fail IMHO. I need to understand why Linux does not want to honour it.. hw limitation or other. If it is a limitation then we should detect it and report it to the user

May 3 2020, 8:05 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2404: Cannot change MTU.

That would only hide the problem. The MTU bug would still be here.

May 3 2020, 8:03 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2404: Cannot change MTU.

An issue to change the MTU should not fail the whole interface change but just this one but the code does not not allow this easily. I will try to work on this.

May 3 2020, 7:24 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2404: Cannot change MTU.

The reason seems to be that when the kernel can not change the MTU when writing to the sysfs, it will raise a OSError with the reason why.

May 3 2020, 4:59 PM · VyOS 1.3 Equuleus (1.3.6)

May 2 2020

thomas-mangin created T2417: Python validator cleanup.
May 2 2020, 2:37 PM · VyOS 1.3 Equuleus (1.3.0)

Apr 30 2020

thomas-mangin updated the task description for T2407: alternate installation for the vyos-1x python code.
Apr 30 2020, 7:08 PM · VyOS 2.0.x
thomas-mangin created T2407: alternate installation for the vyos-1x python code.
Apr 30 2020, 6:35 PM · VyOS 2.0.x

Apr 28 2020

thomas-mangin added a comment to T2394: dhcpv6 client does not start.

I had already reported before my refactor of the code that DHCPv6 does not work.
https://phabricator.vyos.net/T2268

Apr 28 2020, 6:53 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2394: dhcpv6 client does not start.

http://man7.org/linux/man-pages/man8/start-stop-daemon.8.html

EXIT STATUS
Apr 28 2020, 6:47 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2214: BGP peers dropping randomly.

https://vincent.bernat.ch/en/blog/2017-ipv6-route-lookup-linux

Apr 28 2020, 6:41 PM · VyOS 1.2 Crux
thomas-mangin added a comment to T2214: BGP peers dropping randomly.

Marek Isalski Today at 6:31 PM

Apr 28 2020, 6:38 PM · VyOS 1.2 Crux
thomas-mangin added a comment to T2184: OpenVPN op_mode tools broken.
vyos@vyos:~$ show interfaces openvpn vtun1
vtun1: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN group default qlen 100
    link/none
    inet 127.0.0.1 peer 10.255.1.2/32 scope host vtun1
       valid_lft forever preferred_lft forever
    inet6 fe80::a6ba:dc03:94c5:6b42/64 scope link stable-privacy
       valid_lft forever preferred_lft forever
Apr 28 2020, 10:58 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2184: OpenVPN op_mode tools broken.

@jjakob sorry for wasting your time here :-( I will try to replicate.

Apr 28 2020, 8:57 AM · VyOS 1.3 Equuleus (1.3.0)

Apr 27 2020

thomas-mangin added a comment to T2214: BGP peers dropping randomly.

@Merjin is trying this:

sudo sysctl -w net.ipv6.route.max_size=131072

https://serverfault.com/questions/902161/linux-host-randomly-stops-answering-ipv6-neighbor-solicitation-requests
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861115

Apr 27 2020, 3:29 PM · VyOS 1.2 Crux
thomas-mangin added a comment to T2390: unify the chmod_ function of VyOS.

To explain the permission for the user/group/world are expressed in octal (3 bits) so 755 is binary for 111 101 101

Apr 27 2020, 2:47 PM · VyOS 1.4 Sagitta
thomas-mangin added a comment to T2184: OpenVPN op_mode tools broken.

@jjakob can we close this task ?

Apr 27 2020, 2:03 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2388: template rendering should create folder and set permission.

https://github.com/vyos/vyos-1x/pull/381

Apr 27 2020, 11:18 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin created T2390: unify the chmod_ function of VyOS.
Apr 27 2020, 10:36 AM · VyOS 1.4 Sagitta
thomas-mangin added a comment to T2363: Use pyroute2 instead of calling 'ip'.

Should a iproute.py wrapper be considered to prevent having calls to "ip" everywhere in the code?
Therefore if at a later date a better solution comes along the calls to binary would not be everywhere in the code ?

Apr 27 2020, 10:22 AM
thomas-mangin added a comment to T2363: Use pyroute2 instead of calling 'ip'.

Fair enough. I have gone thought the bug tracker of pyroute2 and indeed it does not inspire confidence!

Apr 27 2020, 10:20 AM

Apr 26 2020

thomas-mangin added a comment to T2214: BGP peers dropping randomly.

any L2/L3 issue affecting TCP between the BGP speaker will cause this message. Looking forward to a TCP dump of the traffic when it occurs.

Apr 26 2020, 10:53 PM · VyOS 1.2 Crux
thomas-mangin created T2388: template rendering should create folder and set permission.
Apr 26 2020, 10:05 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2379: DHCPv6 address for interface deletion triggers a script error.

https://github.com/vyos/vyos-1x/pull/380

Apr 26 2020, 9:48 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin closed T2350: Interface geneve conf-mode error, a subtask of T2353: Interface [conf_mode] errors parent task, as Resolved.
Apr 26 2020, 8:51 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin closed T2350: Interface geneve conf-mode error as Resolved.
Apr 26 2020, 8:51 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2363: Use pyroute2 instead of calling 'ip'.

I agree but it will be quite some work ... I would happy to work on this as it would remove my of my issues with calling "cmd()" for network interface setting.

Apr 26 2020, 8:39 PM
thomas-mangin awarded T2363: Use pyroute2 instead of calling 'ip' a Like token.
Apr 26 2020, 8:35 PM

Apr 25 2020

thomas-mangin added a comment to T2241: Changing settings on an interface causes it to fall out of bridge.

@jjakob if you enable debugging and record what is happening to the interface when it drops would be useful.

Apr 25 2020, 2:11 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2241: Changing settings on an interface causes it to fall out of bridge.

For clarity, I do not believe the rewrite in the parent task is the root of the issue, as the behaviour on configuration was not changed. The code was restructured but the action logic remained the same. The same commands/actions will be run now as were run before the patchset. If something changed it will be in the conf mode interface code and not ifconfig AFAICS

Apr 25 2020, 10:12 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2241: Changing settings on an interface causes it to fall out of bridge.

Yes the code always does down / up. It is something @cpo and I discussed and it was deemed safer when performing changes. There could be a way to indicate that a change occur which should cause a trigger in another section. Something all sections should run on every change. This would be a major design change as we would not anymore apply everything, would need to decide what part of the change trigger this update process and implement a new section and make sure it is run !

Apr 25 2020, 10:09 AM · VyOS 1.3 Equuleus (1.3.0)

Apr 24 2020

thomas-mangin added a comment to T2226: unify all the ways commands are run.

@jjakob this is the wrong phabricator entry to discuss it but I got your point ;-)

Apr 24 2020, 2:19 PM
thomas-mangin added a comment to T2360: Document the common logging library airbag.py.

This is correct.

Apr 24 2020, 2:10 PM · VyOS 1.3 Equuleus (1.3.6), Restricted Project
thomas-mangin added a comment to T2377: logging across boot.

@jjakob https://github.com/vyos/vyos-1x/pull/376

Apr 24 2020, 1:46 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin created T2377: logging across boot.
Apr 24 2020, 9:43 AM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2226: unify all the ways commands are run.

The file should have been 660 and it should have worked .. I will check

Apr 24 2020, 7:00 AM

Apr 23 2020

thomas-mangin added a comment to T2226: unify all the ways commands are run.

Yes, I also have a patch ... somewhere .. which prevent to change any of the /config files on the system (so that a user can not make damage to the system).
I also need to add a check to only use the file if the user and permission are what is expected. I will do it :-)
The file should be created as group vyattacfg tho with rights allowing both the user and root to write to it.

Apr 23 2020, 8:32 PM
thomas-mangin added a comment to T2366: change the default for Interface creation to False.

@jjakob There is no need to check if an interface exists before creation, the code has always tried to find the interface and use it if there, otherwise it will create it.

Apr 23 2020, 8:25 PM · VyOS 1.5 Circinus
thomas-mangin added a comment to T2366: change the default for Interface creation to False.

@jjakob yes, what you propose to check if an interface exists is good. If you know the type (as defined in the class which as the same name as the "set interface" section such as ethernet) you can use Section.interfaces('ethernet') to only get what you want.

Apr 23 2020, 8:08 PM · VyOS 1.5 Circinus
thomas-mangin closed T2374: Tunnel interface can not be disabled as Resolved.

https://github.com/vyos/vyos-1x/pull/375

Apr 23 2020, 7:41 PM · VyOS 1.3 Equuleus (1.3.0)

Apr 22 2020

thomas-mangin updated the task description for T2366: change the default for Interface creation to False.
Apr 22 2020, 5:07 PM · VyOS 1.5 Circinus
thomas-mangin created T2366: change the default for Interface creation to False.
Apr 22 2020, 5:06 PM · VyOS 1.5 Circinus
thomas-mangin closed T2365: remove duplication as Resolved.
Apr 22 2020, 4:50 PM
thomas-mangin added a comment to T2365: remove duplication.

First, I thought you had merged the patch, as you did not, there is no duplication ATM.

Apr 22 2020, 3:42 PM
thomas-mangin added a comment to T2190: Instantiating Interfaces without risk of creation.
This may possibly be the cause of some bugs?

If the interface exists, it is perfectly harmless: it was the previous behaviour. The example where it can cause issue when a interface name is used and does not exists as it will create it. So really op_mode commands.

Apr 22 2020, 3:34 PM

Apr 21 2020

thomas-mangin created T2365: remove duplication.
Apr 21 2020, 10:07 PM
thomas-mangin added a comment to T2352: l2tpv3 conf_mode errors.

https://github.com/vyos/vyos-1x/pull/367

Apr 21 2020, 10:02 PM
thomas-mangin added a comment to T2353: Interface [conf_mode] errors parent task.

https://github.com/vyos/vyos-1x/pull/372 will now not display tunnel (but gre-bridge) as options for bridge. Still not preventing them to be used.

Apr 21 2020, 9:42 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2353: Interface [conf_mode] errors parent task.
Apr 21 2020, 9:35 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2357: GRE-bridge conf_mode errors.

works if run as root (or sudo) but not as it.

Apr 21 2020, 9:32 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2354: Wireless conf_mode errors.

/sys/class/ieee80211 does not exist on VirtualBox perhaps the interface configuration should fail it is missing ?

Apr 21 2020, 9:21 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2353: Interface [conf_mode] errors parent task.

So the commands were not on crux under the tunnel section and trying to use either ip link or brctl is failing:

Apr 21 2020, 9:16 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2353: Interface [conf_mode] errors parent task.

For all the bridge issues, I wanted to see what was happening on crux, taking T2356 as reference:

Apr 21 2020, 8:54 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2331: VRRP op-mode errors.

https://github.com/vyos/vyos-1x/pull/370

Apr 21 2020, 8:44 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2361: Unable to delete VLAN vif interface.

https://github.com/vyos/vyos-1x/pull/369

Apr 21 2020, 8:35 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin changed the status of T2274: Move the interface default values from the conf_mode file to the interface, a subtask of T2171: Unify creation and manipulation of interfaces, from Needs testing to Open.
Apr 21 2020, 3:05 PM · VyOS 1.4 Sagitta
thomas-mangin changed the status of T2274: Move the interface default values from the conf_mode file to the interface from Needs testing to Open.
Apr 21 2020, 3:05 PM · VyOS 1.3 Equuleus (1.3.5)
thomas-mangin closed T2204: Support tunnel source-interface as Resolved.
Apr 21 2020, 3:04 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2204: Support tunnel source-interface.

Works for me ..

[ interfaces tunnel tun0 ]
DEBUG/IFCONFIG cmd 'ip tunnel add tun0 mode gre local 127.0.0.1 remote 1.1.1.1 dev eth0 ttl 255 tos inherit'
Apr 21 2020, 3:04 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2274: Move the interface default values from the conf_mode file to the interface.
Apr 21 2020, 2:57 PM · VyOS 1.3 Equuleus (1.3.5)
thomas-mangin changed the status of T2274: Move the interface default values from the conf_mode file to the interface, a subtask of T2171: Unify creation and manipulation of interfaces, from Open to Needs testing.
Apr 21 2020, 2:56 PM · VyOS 1.4 Sagitta
thomas-mangin changed the status of T2274: Move the interface default values from the conf_mode file to the interface from Open to Needs testing.
Apr 21 2020, 2:56 PM · VyOS 1.3 Equuleus (1.3.5)
thomas-mangin added a comment to T2274: Move the interface default values from the conf_mode file to the interface.
Apr 21 2020, 2:54 PM · VyOS 1.3 Equuleus (1.3.5)
thomas-mangin created T2349: list_interface.py exclusion.
Apr 21 2020, 2:42 PM · VyOS 1.5 Circinus

Apr 18 2020

thomas-mangin created T2334: remove Interface.options and use Interface.default instead.
Apr 18 2020, 4:40 PM · VyOS 1.3 Equuleus (1.3.6)
thomas-mangin added a comment to T2320: Wireguard creates non-existing interfaces in [op-mode]..

The code has the concept of options which can be infered from the default dict and thefore should probably be removed for simplication.

Apr 18 2020, 4:36 PM · VyOS 1.3 Equuleus (1.3.0)

Apr 12 2020

thomas-mangin added a comment to T2236: DMVPN broken after tunnel rewrite to XML/Python.

https://github.com/vyos/vyos-1x/pull/338

Apr 12 2020, 9:49 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2236: DMVPN broken after tunnel rewrite to XML/Python.

https://github.com/vyos/vyos-1x/pull/335

Apr 12 2020, 11:32 AM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin added a comment to T2236: DMVPN broken after tunnel rewrite to XML/Python.

could you please try this patch. if it still fails, can you remove the 'mtu' from the 'options' line and try again ?

diff --git a/python/vyos/ifconfig/tunnel.py b/python/vyos/ifconfig/tunnel.py
index 0506066..46900ce 100644
--- a/python/vyos/ifconfig/tunnel.py
+++ b/python/vyos/ifconfig/tunnel.py
@@ -141,8 +141,8 @@ class GREIf(_Tunnel):
     default = {'type': 'gre'}
     required = ['local', ]  # mGRE is a GRE without remote endpoint
Apr 12 2020, 11:13 AM · VyOS 1.3 Equuleus (1.3.0)

Apr 11 2020

thomas-mangin claimed T2274: Move the interface default values from the conf_mode file to the interface.
Apr 11 2020, 10:35 PM · VyOS 1.3 Equuleus (1.3.5)
thomas-mangin created T2274: Move the interface default values from the conf_mode file to the interface.
Apr 11 2020, 10:35 PM · VyOS 1.3 Equuleus (1.3.5)