Page MenuHomeVyOS Platform
Feed All Stories

Jun 5 2020

runar added a comment to T2549: repository restructuration suggestions.

Yes, we need to try/except the apply section (the other should never fail but we could still catch errors to not leave the system in an unknown state) but when applying the reverse configuration (ie: invert effective and new and re-apply) one must then be careful if that fails too (we do not want a forever loop :p). The code already runs all the get_dict and all the verify first, so we will only apply if all is ok, but still issues could occur.

Jun 5 2020, 8:48 PM · VyOS 2.0.x
richardpowellus added a comment to T421: Add Pv6 prefix delegation support.
In T421#66055, @gadams wrote:

@dsummers I have been able to get the current nightly builds to work on Comcast Business, which is delivered via ethernet. In this particular case, there are some unfortunate gotchas to keep in mind, but no modification of VyOS is currently needed, at least in my case. Very cool!

For anyone else who comes across this (I have talked to a couple folks outside of this task, as well), here are the gotchas, the second one of which is Comcast-specific:

  • You currently need to enable getting an IPv6 address on the ethernet interface, even though that's technically not required other than by the config syntax. Using parameters-only will prevent it from working, since WIDE dhcp6c will interpret that to mean that you also don't want delegated adresses.

In my experience, this causes only some small issues, but not failure. I am drafting a proposal to fix it, but it's slightly more complex than I guessed.

  • You need to know that while the Comcast cablemodem receives a /56 from the network to delegate to you, it carves off the first (sla-id 0) /64 of that for the link between it and your router, and then only delegates out of the highest (/56 4-bit sla-id f) /60 to your router. This is odd, and I don't know why they do it that way. So, you need to know that you'll be getting a /60 delegated to you, and that you should use 4-bit SLAs.

I had to figure this out by looking at the DHCPv6 conversation on the wire some time ago.

The config syntax could help a lot here, but this seems to be limited a bit by WIDE dhcp6c's conf options.

In any event, here's a working config I'm using (well, simplified, but still enough to make it work):

interfaces {
    ...
    ethernet eth3 {
        address 10.1.11.3/24
        address dhcpv6
        description OUTSIDE-v6
        dhcpv6-options {
            prefix-delegation {
                interface br0 {
                    address 1
                    sla-id 1
                    sla-len 4
                }
                interface eth2.4 {
                    address 1
                    sla-id 4
                    sla-len 4
                }
                interface eth2.6 {
                    address 1
                    sla-id 6
                    sla-len 4
                }
            }
        }
        ...
    }
    ....
}
...
    router-advert {
        interface br0 {
            name-server 2603:....
            name-server 2603:....
            prefix ::/64 {
                valid-lifetime 2592000
            }
        }
    .... and so on for the other interfaces ...

(The address 1 bits aren't strictly necessary, but I like my routers having easily recignizable addresses when I'm looking over traffic flows and routes and so on.)

Happy v6 surfing!

Jun 5 2020, 8:27 PM · VyOS 1.3 Equuleus (1.3.0-epa1)
c-po closed T1958: Include only firmware we actually need as Resolved.
Jun 5 2020, 8:22 PM · VyOS 1.3 Equuleus (1.3.0)
c-po updated subscribers of T1958: Include only firmware we actually need.

This could raise potential new bugs if a firmware file was missed out for whatever reason. Please open a new Task if this happened to you. Running it in @kroy's lab showed no problems so far.

Jun 5 2020, 6:41 PM · VyOS 1.3 Equuleus (1.3.0)
BcTpe4HbIu removed a watcher for VyConf: BcTpe4HbIu.
Jun 5 2020, 5:40 PM
BcTpe4HbIu removed a watcher for VyOS 2.0.x: BcTpe4HbIu.
Jun 5 2020, 5:40 PM
BcTpe4HbIu removed a watcher for VyOS 1.1.x: BcTpe4HbIu.
Jun 5 2020, 5:40 PM
thomas-mangin added a comment to T2549: repository restructuration suggestions.

Yes, we need to try/except the apply section (the other should never fail but we could still catch errors to not leave the system in an unknown state) but when applying the reverse configuration (ie: invert effective and new and re-apply) one must then be careful if that fails too (we do not want a forever loop :p). The code already runs all the get_dict and all the verify first, so we will only apply if all is ok, but still issues could occur.

Jun 5 2020, 4:32 PM · VyOS 2.0.x
GitHub <noreply@github.com> committed rVYOSONEX4f2e0f0e3805: Merge pull request #444 from jjakob/vif-s-fix-T2553 (authored by c-po).
Jun 5 2020, 4:27 PM
c-po closed T2548: Interfaces allowing inappropriate network addresses to be assigned as Resolved.
Jun 5 2020, 4:11 PM · VyOS 1.3 Equuleus (1.3.0)
c-po changed Is it a breaking change? from none to behavior on T1958: Include only firmware we actually need.
Jun 5 2020, 4:00 PM · VyOS 1.3 Equuleus (1.3.0)
c-po changed the status of T1958: Include only firmware we actually need from Open to In progress.
Jun 5 2020, 4:00 PM · VyOS 1.3 Equuleus (1.3.0)
jack9603301 added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

@dsummers Obviously, this kind of output belongs to error report, prompt dhcp6c@eth0 Unable to start normally, measures should be taken to eliminate them. I once submitted a PR (not yet passed) that can try to restart when the service fails. The original intention is to recover from the failure when the first load fails after the restart (because some interfaces are not initialized). I don't know if this patch can help temporarily dhcp6c@eth0 Restart, and complete the startup normally after 10 seconds of failure. However, you can try it. In a word, you should take measures to eliminate such errors.

Jun 5 2020, 3:51 PM
Viacheslav updated subscribers of T2513: BGP peer-group commit error and reboot conifg not found . .

I did some tests and the only problem appears when adding a route-map to ipv6.

Jun 5 2020, 3:42 PM
dsummers added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

Yes, I've been seeing those messages.

Jun 5 2020, 3:38 PM
thomas-mangin added a comment to T2522: Python CLI.

@jjakob control-R should be implemented. It is a feature I use too and expect it - just did not think it was worth a demo 0.0 release - there is plenty to improve with the code in the branch - it surely has bugs -as I said POC :-)

Jun 5 2020, 3:37 PM · VyOS 2.0.x
jjakob added a comment to T2553: set interface ethN vif-s nnnn does not commit.

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

Jun 5 2020, 3:34 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob changed the status of T2553: set interface ethN vif-s nnnn does not commit from Open to In progress.
Jun 5 2020, 3:28 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2522: Python CLI.

@thomas-mangin that's great if the POC already has the above - I'm on board with making it the replacement for vbash in that case. I can live without word jumping and line deletion (for now) if it has tab completion and history (I will miss reverse history search a lot as it doesn't search just the beginning of the line but the whole line for the pattern, I'm assuming prompt-toolkit just searches the beginning?). I do need to test it when I get some time to see if anything is still missing.

Jun 5 2020, 3:23 PM · VyOS 2.0.x
afics created T2553: set interface ethN vif-s nnnn does not commit.
Jun 5 2020, 2:52 PM · VyOS 1.3 Equuleus (1.3.0)
runar added a comment to T2549: repository restructuration suggestions.

About rollback, i'm wondering about a try:expect loop around apply() that will catch faults and trigger a rollback() to restore old files etc.
The rollback won't be a 100% abort, because vyatta-cfg would not rollback subsystems that have allready been configured.. but we will get a pr. Subsystem rollback and thats a start :) to get a full rollback wee need to change the backend or the executor in the backend.

Jun 5 2020, 2:43 PM · VyOS 2.0.x
thomas-mangin added a comment to T2549: repository restructuration suggestions.

generate should make a backup of the previous file before generating the new one. It will then make it possible to create the rollback as a file move and service reload.

Jun 5 2020, 2:39 PM · VyOS 2.0.x
thomas-mangin added a comment to T2522: Python CLI.

@jjakob the code can be installed on a router (using my vyos update tool - after running vyos setup router )

Jun 5 2020, 2:33 PM · VyOS 2.0.x
jjakob added a comment to T2549: repository restructuration suggestions.

To add my 2 cents:

Jun 5 2020, 2:02 PM · VyOS 2.0.x
GitHub <noreply@github.com> committed rVYOSONEX35c2d21a1df1: Merge pull request #443 from mrozentsvayg/openvpn-T2550-ipv4-remote-host (authored by c-po).
Jun 5 2020, 2:01 PM
jjakob added a comment to T2542: OpenVPN client tap interfaces not coming up.

Another possibility would be to modify the VTunIf's bridgeable parameter when creating it. That wouldn't require a different name for tap and all the config migration that comes with it, but I don't know if it's possible.

Jun 5 2020, 1:41 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2542: OpenVPN client tap interfaces not coming up.

I also don't think we can find out whether a interface is tun or tap from the up/down script (no parameter or environment variable seems to tell it this) so it'd be good if tun and tap had different names due to this too. It would require migrating the name of existing interfaces (from vtun to vtap if tunnel type is tap) under interfaces openvpn, interfaces bridge member, service router-advert, firewall, nat, possibly other places as well.

Jun 5 2020, 1:38 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob renamed T2542: OpenVPN client tap interfaces not coming up from OpenVPN loose config to OpenVPN client tap interfaces not coming up.
Jun 5 2020, 1:29 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2550: OpenVPN: IPv4 not working in client mode.

What happens when one remote-host is IPv4 and one is IPv6? The proposed fix would leave the protocol as udp6 in that case and the error would still be there.

Jun 5 2020, 1:25 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob merged task T2552: [BUG] commit-archive domain recognition error into T2468: Passwords with special characters fail in commit-archive.
Jun 5 2020, 1:17 PM · VyConf
jjakob merged T2552: [BUG] commit-archive domain recognition error into T2468: Passwords with special characters fail in commit-archive.
Jun 5 2020, 1:17 PM · VyOS Rolling, Bugs
jjakob added a comment to T2552: [BUG] commit-archive domain recognition error.

duplicate of T2468

Jun 5 2020, 1:17 PM · VyConf
ccieliu renamed T2552: [BUG] commit-archive domain recognition error from [BUG] report to [BUG] commit-archive domain recognition error.
Jun 5 2020, 1:17 PM · VyConf
ccieliu created T2552: [BUG] commit-archive domain recognition error.
Jun 5 2020, 1:15 PM · VyConf
jjakob added a comment to T2522: Python CLI.

Writing the config parsing, editing, committing and saving shouldn't be that hard.
Re-implementing completion with the current set of features would be very hard.

Jun 5 2020, 1:10 PM · VyOS 2.0.x
jjakob added a comment to T2515: Ethernet interface is automatically disabled when removing it from bond.

A workaround would be to simply call interfaces-ethernet.py from the bond script itself after it removes it from the bond.
The consequence of migrating bond member config from the interface node to the bond node, the same problem exists for bridges as well.

Jun 5 2020, 12:48 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2542: OpenVPN client tap interfaces not coming up.

Also regarding bridging: the current VTunIf says vtun is bridgeable. I doubt bridging a tun interface is wanted as that's a purely L3 tunnel. As the bridge member config syntax places the members under the bridge interface, the bridge interface determines if a interface is bridgeable by looking at its class definition. Thus to make openvpn in tun mode not bridgeable and tap mode bridgeable, those would need to be 2 different classes with different interface names ('vtun' and 'vtap'?). A hackish way is possible by making the bridge code check the openvpn config directly, but I highly dislike hackish solutions. Even T2241 was a 'hackish' solution that was necessary due to a previous bridge syntax migration without thinking about the consequences of it (moving the bridge member config under the bridge code makes syntactical sense, but it requires hackish workarounds like T2241 with the curernt way the config system operates)

Jun 5 2020, 12:40 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2542: OpenVPN client tap interfaces not coming up.

Looking at the above errors:

Jun 5 2020, 12:32 PM · VyOS 1.3 Equuleus (1.3.0)
jjakob added a comment to T2339: OpenVPN: IPv4 no longer working after adding IPv6 support.

Indeed, I didn't test client mode with the IPv6 patch, I assumed openvpn would use 'proto' for the listening socket only and not for the client socket (since it could detect which family the remote-host address is, it could select the correct socket, but it honors the 'proto' in the config) so my assumption was wrong. I appreciate the help.

Jun 5 2020, 11:42 AM · VyOS 1.3 Equuleus (1.3.0)
Viacheslav added a comment to T2513: BGP peer-group commit error and reboot conifg not found . .

@lawrencepan your configuration not committed because,

  1. "route-reflector-client" can be used only when remote-as and local-as are equal

Try to check your commit.
You wiil see

Jun 5 2020, 11:31 AM
Viacheslav added a comment to T2389: BGP community-list unknown command.

PR https://github.com/vyos/vyatta-cfg-quagga/pull/49

Jun 5 2020, 10:38 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
Viacheslav updated the task description for T2389: BGP community-list unknown command.
Jun 5 2020, 10:16 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
Viacheslav updated the task description for T2389: BGP community-list unknown command.
Jun 5 2020, 10:15 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
runar added a comment to T2549: repository restructuration suggestions.

Here comes some suggestions from my part :)

Jun 5 2020, 8:55 AM · VyOS 2.0.x
dsummers created T2551: DHCPv6-PD prefix length not being set in config file.
Jun 5 2020, 8:08 AM
jack9603301 added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

As required by the DHCPv6 PD function, the IPv6 part seems to be migrated from ISC DHCPv6 to wide-dhcpv6. According to your error log analysis, dhcp6c@eth0 Start failed.

Jun 5 2020, 7:03 AM
jack9603301 added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

Strange, I didn't test this problem again, but according to the T2449 problem I submitted before, DHCPv6 of IPv6 can get the address and route normally (the route depends on SLAAC). Isn't it ok now?

Jun 5 2020, 7:02 AM
c-po committed rVYOSONEXd692b330838f: T2548: interface address does not support IP network definition.
Jun 5 2020, 6:14 AM
GitHub <noreply@github.com> committed rVYOSONEXe98dd388824f: Merge pull request #441 from sever-sever/xml-conf-rip (authored by c-po).
Jun 5 2020, 5:41 AM
dsummers added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

@jack9603301 As I already stated in the first comment in T2510 and in T421, this is not configuring DHCPv6-PD.

Jun 5 2020, 5:20 AM
jack9603301 added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

Where do you configure DHCPv6 PD?

Jun 5 2020, 4:30 AM
dsummers added a comment to T421: Add Pv6 prefix delegation support.

@jack9603301 As stated a couple of times above, please see T2510 for my configuration.

Jun 5 2020, 4:17 AM · VyOS 1.3 Equuleus (1.3.0-epa1)
jack9603301 added a comment to T421: Add Pv6 prefix delegation support.

@dsummers How is it possible, please give a configuration to facilitate others to check (this is a good habit)

Jun 5 2020, 3:21 AM · VyOS 1.3 Equuleus (1.3.0-epa1)
oddboy added a comment to T2510: 1.3 DHCPv6 Ethernet not working.

Fwiw, I found that the scripts that run "pass into to /usr/sbin/ip" , but the ip command is actually at /sbin/ip.

Jun 5 2020, 2:09 AM
dsummers added a comment to T421: Add Pv6 prefix delegation support.

@gadams Thanks for your reply.

Jun 5 2020, 1:59 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Jun 4 2020

mrozentsvayg added a comment to T2339: OpenVPN: IPv4 no longer working after adding IPv6 support.

Hi,

This bug exists for remote-host as well.

Jun 4 2020, 11:58 PM · VyOS 1.3 Equuleus (1.3.0)
mrozentsvayg added a comment to T2550: OpenVPN: IPv4 not working in client mode.

proposing fix:
https://github.com/vyos/vyos-1x/pull/443

Jun 4 2020, 11:53 PM · VyOS 1.3 Equuleus (1.3.0)
mrozentsvayg triaged T2550: OpenVPN: IPv4 not working in client mode as Normal priority.
Jun 4 2020, 11:37 PM · VyOS 1.3 Equuleus (1.3.0)
thomas-mangin created T2549: repository restructuration suggestions.
Jun 4 2020, 8:37 PM · VyOS 2.0.x
c-po claimed T2548: Interfaces allowing inappropriate network addresses to be assigned.
Jun 4 2020, 7:39 PM · VyOS 1.3 Equuleus (1.3.0)
kroy created T2548: Interfaces allowing inappropriate network addresses to be assigned.
Jun 4 2020, 7:09 PM · VyOS 1.3 Equuleus (1.3.0)
c-po updated subscribers of T2542: OpenVPN client tap interfaces not coming up.

@jjakob any idea?

Jun 4 2020, 6:00 PM · VyOS 1.3 Equuleus (1.3.0)
c-po added a comment to T2515: Ethernet interface is automatically disabled when removing it from bond.

I do not like this behavior as the config states the interface is "not disabled" but from an OS point of view it is - this is inconsistent and thus simply wrong.

Jun 4 2020, 5:55 PM · VyOS 1.3 Equuleus (1.3.0)
c-po moved T2476: Bond member description change leads to network outage from Need Triage to Finished on the VyOS 1.3 Equuleus board.
Jun 4 2020, 5:53 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po moved T2476: Bond member description change leads to network outage from Need Triage to VyOS 1.2.6 on the VyOS 1.2 Crux board.
Jun 4 2020, 5:53 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
c-po added a reverting change for rVYOSONEX44355e6525da: add dependency on debian tshark package: rVYOSONEX1bd4a3eed2e1: Revert "add dependency on debian tshark package".
Jun 4 2020, 3:13 PM
c-po committed rVYOSONEX1bd4a3eed2e1: Revert "add dependency on debian tshark package".
Jun 4 2020, 3:13 PM
c-po added a comment to T2542: OpenVPN client tap interfaces not coming up.

Main reason would be I guess this error:

Jun  4 16:39:55 LR1 openvpn-vtun1[21166]: Could not determine IPv4/IPv6 protocol
Jun  4 16:39:55 LR1 openvpn-vtun1[21166]: SIGUSR1[soft,init_instance] received, process restarting
Jun 4 2020, 2:40 PM · VyOS 1.3 Equuleus (1.3.0)
c-po committed rVYOSONEX2e9d188a49a4: op-mode: T2546: add "show monitoring" command.
Jun 4 2020, 2:11 PM
c-po committed rVYOSONEX10d7e3d236a5: op-mode: T2546: add "show log firewall|image" commands.
Jun 4 2020, 2:11 PM
c-po committed rVYOSONEX3fdbde8ca034: op-mode: T2546: add "show login" commands.
Jun 4 2020, 2:11 PM
Unknown Object (User) added a comment to T2515: Ethernet interface is automatically disabled when removing it from bond.

One more question/proposition.
Before ethX is added to the bond its IP addresses are being removed (that's good). Then, when ethX is removed from the bond it is being left as disabled. If we manually re-enable that interface the interfaces-ethernet.py script is run and it configures all its settings (including IPv6 link-local address). Therefore, maybe it is not that bad idea to leave the interface disabled when it leaves the bond. So, what if we just add a warning message to inform users that bond leaving interface will stay disabled until it is manually re-enabled.

Jun 4 2020, 2:03 PM · VyOS 1.3 Equuleus (1.3.0)
GitHub <noreply@github.com> committed rVYOSONEXb2d98015b152: Merge pull request #442 from L6NqLW/T2527 (authored by c-po).
Jun 4 2020, 12:35 PM
Unknown Object (User) added a comment to T2476: Bond member description change leads to network outage.

PR for 1.2: https://github.com/vyos/vyatta-cfg-system/pull/124

Jun 4 2020, 8:36 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.6)
Unknown Object (User) closed T2514: "mac" setting for bond members as Resolved.
Jun 4 2020, 8:33 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T2527: bonding: the last slave interface is not deleted.

PR: https://github.com/vyos/vyos-1x/pull/442

Jun 4 2020, 8:29 AM · VyOS 1.3 Equuleus (1.3.0)
Viacheslav added a comment to T2547: Rewrite protocol RIP [conf-mode] to new XML/Python style.
  1. PR for XML https://github.com/vyos/vyos-1x/pull/441
Jun 4 2020, 8:10 AM
Viacheslav created T2547: Rewrite protocol RIP [conf-mode] to new XML/Python style.
Jun 4 2020, 8:00 AM
gadams added a comment to T421: Add Pv6 prefix delegation support.

@dsummers I have been able to get the current nightly builds to work on Comcast Business, which is delivered via ethernet. In this particular case, there are some unfortunate gotchas to keep in mind, but no modification of VyOS is currently needed, at least in my case. Very cool!

Jun 4 2020, 6:50 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Jun 3 2020

c-po committed rVYOSONEX9b08d0b881d2: T2546: fix "show log" command - restore node.def.
Jun 3 2020, 4:15 PM
c-po committed rVYOSONEX738f6181faff: T2546: add "show log vpn sstp".
Jun 3 2020, 3:35 PM
c-po committed rVYOSONEXe974c36637d6: T2546: fix "show log vpn" after migrating to Accel-PPP.
Jun 3 2020, 3:35 PM
c-po committed rVYOSONEXfd5b81f66e44: Enable debug mode to build-command-templates.
Jun 3 2020, 3:26 PM
c-po committed rVYOSONEX1ca732305a1f: T2546: migrate "show log" to vyos-1x.
Jun 3 2020, 3:24 PM
c-po committed rVYOSONEXf6e840a6da4f: T2546: migrate "show poweroff" to vyos-1x.
Jun 3 2020, 2:38 PM
c-po committed rVYOSONEX6eee95a8056e: T2546: migrate "show reboot" to vyos-1x.
Jun 3 2020, 2:36 PM
c-po committed rVYOSONEX216859622e06: op-mode: migrate line ending from dos.
Jun 3 2020, 2:36 PM
c-po committed rVYOSONEX2f55297aab87: op-mode: T2546: migrate "show license".
Jun 3 2020, 2:32 PM
c-po committed rVYOSONEX9ab669d726d9: op-mode: ethernet: T2546: migrate basic commands.
Jun 3 2020, 2:32 PM
jack9603301 added a comment to T421: Add Pv6 prefix delegation support.

When I'm done with the reboot dhcp6c@pppoe0 After the problem of possible startup failure, another strange problem was found, that is, every once in a while, the IPv6 route assigned by DHCPv6 PD will fail, and I can't find the reason yet. Can you help me find the reason?

Jun 3 2020, 9:43 AM · VyOS 1.3 Equuleus (1.3.0-epa1)
fetzerms added a comment to T2504: Dropped packets on xcp-ng.

Thanks for picking up this task. I think it is a duplicate of T2505.

Jun 3 2020, 9:41 AM
Viacheslav created T2546: The root task for rewriting [op-mode] to XML.
Jun 3 2020, 8:39 AM · VyOS 1.3 Equuleus (1.3.6)
dsummers added a comment to T421: Add Pv6 prefix delegation support.

Is this new DHCPv6-PD feature supposed to be working on Ethernet interfaces?

Jun 3 2020, 6:16 AM · VyOS 1.3 Equuleus (1.3.0-epa1)
jack9603301 added a comment to T421: Add Pv6 prefix delegation support.

Strangely, I found that under my use case dhcp6c@pppoe0 The prefix obtained cannot be routed the next day.

Jun 3 2020, 4:46 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Jun 2 2020

thomas-mangin added a comment to T2522: Python CLI.

It should not be too hard to convert the current parser to read.
https://gist.github.com/thomas-mangin/17a450a3e26a4cc41902475c0a1dfe5f

Jun 2 2020, 11:32 PM · VyOS 2.0.x
syncer assigned T2504: Dropped packets on xcp-ng to zsdc.
Jun 2 2020, 10:30 PM
thomas-mangin added a comment to T2522: Python CLI.

@jjakob you are right, there is no shell integration and this is using the python promt-toolkit library to handle input/output.

Jun 2 2020, 8:10 PM · VyOS 2.0.x
jjakob added a comment to T2522: Python CLI.

A significant part of the old config system is the bash-completion integration as well. I assume this is not integrated with bash but is a separate console that you start and takes over all stdin/stdout? Is it possible to implement the same completion output as there is now?

Jun 2 2020, 7:51 PM · VyOS 2.0.x
thomas-mangin added a comment to T2539: Issues with parsing ip range for source nat translation address.

Thank you for reporting this issue, it looks like that parser allows ranges of IP address (IP hyphen IP) but the parser does not. You could get around using CIDR notation but this indeed need looking into.

Jun 2 2020, 7:44 PM · VyConf
c-po claimed T1807: Improve WireGuard CLI "endpoint" on.
Jun 2 2020, 7:37 PM · VyOS 1.3 Equuleus (1.3.0)