-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'vyos:current' into T6320
- Loading branch information
Showing
44 changed files
with
669 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Debian Package Build | ||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
|
||
jobs: | ||
package-build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: vyos/vyos-build:current | ||
options: --sysctl net.ipv6.conf.lo.disable_ipv6=0 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build Debian package | ||
run: dpkg-buildpackage -uc -us -tc -b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Repo-sync | ||
|
||
on: | ||
pull_request: | ||
pull_request_target: | ||
types: | ||
- closed | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!-- include start from accel-ppp/log.xml.i --> | ||
<node name="log"> | ||
<properties> | ||
<help>Server logging </help> | ||
</properties> | ||
<children> | ||
<leafNode name="level"> | ||
<properties> | ||
<help>Specifies log level</help> | ||
<valueHelp> | ||
<format>0</format> | ||
<description>Turn off logging</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>1</format> | ||
<description>Log only error messages</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>2</format> | ||
<description>Log error and warning messages</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>3</format> | ||
<description>Log error, warning and minimum information messages</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>4</format> | ||
<description>Log error, warning and full information messages</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>5</format> | ||
<description>Log all messages including debug messages</description> | ||
</valueHelp> | ||
<constraint> | ||
<validator name="numeric" argument="--range 0-5"/> | ||
</constraint> | ||
</properties> | ||
<defaultValue>3</defaultValue> | ||
</leafNode> | ||
</children> | ||
</node> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!-- include start from qos/class-match-group.xml.i --> | ||
<leafNode name="match-group"> | ||
<properties> | ||
<help>Filter group for QoS policy</help> | ||
<valueHelp> | ||
<format>txt</format> | ||
<description>Match group name</description> | ||
</valueHelp> | ||
<completionHelp> | ||
<script>${vyos_completion_dir}/qos/list_traffic_match_group.py</script> | ||
</completionHelp> | ||
<multi/> | ||
</properties> | ||
</leafNode> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!-- include start from qos/class-match-ipv4.xml.i --> | ||
<node name="ip"> | ||
<properties> | ||
<help>Match IP protocol header</help> | ||
</properties> | ||
<children> | ||
<node name="destination"> | ||
<properties> | ||
<help>Match on destination port or address</help> | ||
</properties> | ||
<children> | ||
#include <include/qos/class-match-ipv4-address.xml.i> | ||
#include <include/port-number.xml.i> | ||
</children> | ||
</node> | ||
#include <include/qos/match-dscp.xml.i> | ||
#include <include/qos/max-length.xml.i> | ||
#include <include/ip-protocol.xml.i> | ||
<node name="source"> | ||
<properties> | ||
<help>Match on source port or address</help> | ||
</properties> | ||
<children> | ||
#include <include/qos/class-match-ipv4-address.xml.i> | ||
#include <include/port-number.xml.i> | ||
</children> | ||
</node> | ||
#include <include/qos/tcp-flags.xml.i> | ||
</children> | ||
</node> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!-- include start from qos/class-match-ipv6.xml.i --> | ||
<node name="ipv6"> | ||
<properties> | ||
<help>Match IPv6 protocol header</help> | ||
</properties> | ||
<children> | ||
<node name="destination"> | ||
<properties> | ||
<help>Match on destination port or address</help> | ||
</properties> | ||
<children> | ||
#include <include/qos/class-match-ipv6-address.xml.i> | ||
#include <include/port-number.xml.i> | ||
</children> | ||
</node> | ||
#include <include/qos/match-dscp.xml.i> | ||
#include <include/qos/max-length.xml.i> | ||
#include <include/ip-protocol.xml.i> | ||
<node name="source"> | ||
<properties> | ||
<help>Match on source port or address</help> | ||
</properties> | ||
<children> | ||
#include <include/qos/class-match-ipv6-address.xml.i> | ||
#include <include/port-number.xml.i> | ||
</children> | ||
</node> | ||
#include <include/qos/tcp-flags.xml.i> | ||
</children> | ||
</node> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- include start from qos/class-match-mark.xml.i --> | ||
<leafNode name="mark"> | ||
<properties> | ||
<help>Match on mark applied by firewall</help> | ||
<valueHelp> | ||
<format>u32</format> | ||
<description>FW mark to match</description> | ||
</valueHelp> | ||
<constraint> | ||
<validator name="numeric" argument="--range 0-4294967295"/> | ||
</constraint> | ||
</properties> | ||
</leafNode> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!-- include start from qos/class-match-vif.xml.i --> | ||
<leafNode name="vif"> | ||
<properties> | ||
<help>Virtual Local Area Network (VLAN) ID for this match</help> | ||
<valueHelp> | ||
<format>u32:0-4095</format> | ||
<description>Virtual Local Area Network (VLAN) tag </description> | ||
</valueHelp> | ||
<constraint> | ||
<validator name="numeric" argument="--range 0-4095"/> | ||
</constraint> | ||
<constraintErrorMessage>VLAN ID must be between 0 and 4095</constraintErrorMessage> | ||
</properties> | ||
</leafNode> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
interface-definitions/include/version/reverseproxy-version.xml.i
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- include start from include/version/reverseproxy-version.xml.i --> | ||
<syntaxVersion component='reverse-proxy' version='1'></syntaxVersion> | ||
<!-- include end --> |
Oops, something went wrong.