Compare commits

..

13 Commits

Author SHA1 Message Date
TIP Automation User
92c012318a Chg: update image tag in helm values to v4.2.0 2025-12-25 06:34:08 +00:00
TIP Automation User
05adffe538 Chg: update image tag in helm values to v4.2.0-RC1 2025-12-12 23:56:46 +00:00
i-chvets
d68c7bdb77 Merge pull request #429 from Telecominfraproject/WIFI-15031-fix-fingerprinting-raw-mode
WIFI-15031: fix: updated config validation
2025-12-10 13:46:17 -05:00
Ivan Chvets
d2f2b8df90 fix: Updated configuration validation to fix issue with fingerprinting raw mode.
https://telecominfraproject.atlassian.net/browse/WIFI-15031
Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2025-12-10 11:49:36 -05:00
i-chvets
dfba03bd17 Merge pull request #428 from Telecominfraproject/version_update
version: Updated version to 4.2.0 (RC1)
2025-12-05 13:11:08 -05:00
Ivan Chvets
b6f0f113e2 version: Updated version to 4.2.0 (RC1)
Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2025-12-05 12:43:33 -05:00
i-chvets
ac04422302 Merge pull request #427 from Telecominfraproject/schema_sync
WIFI-15257: fix: Schema sync
2025-12-04 16:36:05 -05:00
Ivan Chvets
63114641a7 fix: Schema sync
https://telecominfraproject.atlassian.net/browse/WIFI-15257
Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2025-12-04 16:08:54 -05:00
i-chvets
691d3399f8 Merge pull request #426 from Telecominfraproject/version_update
fix: Version update - release 4.1.1
2025-09-11 12:24:22 -04:00
Ivan Chvets
6542726ac3 Merge branch 'master' of github.com:Telecominfraproject/wlan-cloud-ucentralgw into version_update 2025-09-11 11:59:42 -04:00
Ivan Chvets
4bc753f8b5 fix: Version update - release 4.1.1
Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2025-09-11 11:56:05 -04:00
i-chvets
e3a513fa6a Merge pull request #425 from Telecominfraproject/WIFI-15016_fix_schema_sync
WIFI 15016 fix: Sync schema.
2025-09-11 11:54:50 -04:00
Ivan Chvets
b151239a5c fix: Sync schema.
https://telecominfraproject.atlassian.net/browse/WIFI-15016

Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2025-09-11 11:23:14 -04:00
3 changed files with 37 additions and 31 deletions

View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13)
project(owgw VERSION 4.1.0)
project(owgw VERSION 4.2.0)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)

View File

@@ -9,7 +9,7 @@ fullnameOverride: ""
images:
owgw:
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw
tag: v4.1.0
tag: v4.2.0
pullPolicy: Always
# regcred:
# registry: tip-tip-wlan-cloud-ucentral.jfrog.io

View File

@@ -276,7 +276,8 @@ static std::string DefaultAPSchema = R"foo(
"sae-mixed",
"wpa3",
"wpa3-192",
"wpa3-mixed"
"wpa3-mixed",
"mpsk-radius"
],
"examples": [
"psk2"
@@ -376,21 +377,18 @@ static std::string DefaultAPSchema = R"foo(
"properties": {
"port-mirror": {
"description": "Enable mirror of traffic from multiple minotor ports to a single analysis port.",
"type": "array",
"items": {
"type": "object",
"properties": {
"monitor-ports": {
"description": "The list of ports that we want to mirror.",
"type": "array",
"items": {
"type": "string"
}
},
"analysis-port": {
"description": "The port that mirror'ed packets should be sent to.",
"type": "object",
"properties": {
"monitor-ports": {
"description": "The list of ports that we want to mirror.",
"type": "array",
"items": {
"type": "string"
}
},
"analysis-port": {
"description": "The port that mirror'ed packets should be sent to.",
"type": "string"
}
}
},
@@ -2419,6 +2417,11 @@ static std::string DefaultAPSchema = R"foo(
"encryption": {
"$ref": "#/$defs/interface.ssid.encryption"
},
"enhanced-mpsk": {
"description": "Optionally disable MPSK",
"type": "boolean",
"default": true
},
"multi-psk": {
"anyOf": [
{
@@ -3784,7 +3787,7 @@ static std::string DefaultAPSchema = R"foo(
"enum": [
"polled",
"final",
"raw-data"
"raw"
],
"default": "final"
},
@@ -4450,7 +4453,8 @@ static std::string DefaultSWITCHSchema = R"foo(
"sae-mixed",
"wpa3",
"wpa3-192",
"wpa3-mixed"
"wpa3-mixed",
"mpsk-radius"
],
"examples": [
"psk2"
@@ -4665,21 +4669,18 @@ static std::string DefaultSWITCHSchema = R"foo(
"properties": {
"port-mirror": {
"description": "Enable mirror of traffic from multiple minotor ports to a single analysis port.",
"type": "array",
"items": {
"type": "object",
"properties": {
"monitor-ports": {
"description": "The list of ports that we want to mirror.",
"type": "array",
"items": {
"type": "string"
}
},
"analysis-port": {
"description": "The port that mirror'ed packets should be sent to.",
"type": "object",
"properties": {
"monitor-ports": {
"description": "The list of ports that we want to mirror.",
"type": "array",
"items": {
"type": "string"
}
},
"analysis-port": {
"description": "The port that mirror'ed packets should be sent to.",
"type": "string"
}
}
},
@@ -6633,6 +6634,11 @@ static std::string DefaultSWITCHSchema = R"foo(
"encryption": {
"$ref": "#/$defs/interface.ssid.encryption"
},
"enhanced-mpsk": {
"description": "Optionally disable MPSK",
"type": "boolean",
"default": true
},
"multi-psk": {
"anyOf": [
{