aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
* net/fastd: assign PKG_CPE_IDFabrice Fontaine2024-01-29
| | | | | | https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:fastd_project:fastd Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* net/fail2ban: assign PKG_CPE_IDFabrice Fontaine2024-01-29
| | | | | | https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:fail2ban:fail2ban Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* net/atftp: assign PKG_CPE_IDFabrice Fontaine2024-01-29
| | | | | | https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:atftp_project:atftp Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* knot: update to version 3.3.4Jan Hák2024-01-29
| | | | Signed-off-by: Jan Hák <jan.hak@nic.cz>
* sing-box: update to 1.8.4Van Waholtz2024-01-27
| | | | Signed-off-by: Van Waholtz <brvphoenix@gmail.com>
* natmap: update to 20240126Ray Wang2024-01-27
| | | | Signed-off-by: Ray Wang <r@hev.cc>
* banip: update 0.9.3-5Dirk Brenken2024-01-26
| | | | | | * fix the nft Set survey function Signed-off-by: Dirk Brenken <dev@brenken.org>
* v2ray-geodata: Update to latest versionTianling Shen2024-01-26
| | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* tailscale: Update to 1.58.2Zephyr Lykos2024-01-26
| | | | | | https://github.com/tailscale/tailscale/releases/tag/v1.58.2 Signed-off-by: Zephyr Lykos <git@mochaa.ws>
* net/tcpreplay: fix PKG_CPE_IDFabrice Fontaine2024-01-25
| | | | | | | | There is not a single CVE under cpe:/a:appneta:tcpreplay so use cpe:/a:broadcom:tcpreplay: https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:broadcom:tcpreplay Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* Merge pull request #23138 from ffontaine/add-i2pd-cpeidFlorian Eckert2024-01-25
|\ | | | | net/i2pd: assign PKG_CPE_ID
| * net/i2pd: assign PKG_CPE_IDFabrice Fontaine2024-01-24
| | | | | | | | | | | | https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Ai2pd%3Ai2pd Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* | v2raya: do not allow changing config/log directoryTianling Shen2024-01-25
| | | | | | | | | | | | We need stable path to persist configurations and read log from LuCI. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | dnsproxy: Update to 0.63.1Tianling Shen2024-01-25
|/ | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* ocserv: updated source URL to httpsNikos Mavrogiannopoulos2024-01-24
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* ocserv: updated to 1.2.4Nikos Mavrogiannopoulos2024-01-24
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* pdns-recursor: Build rec-5.0.1, adding Rust dependenciesOtto Moerbeek2024-01-23
| | | | | | | | also fix license variable Co-authored-by: Tianling Shen <cnsztl@gmail.com> Signed-off-by: Otto Moerbeek <otto@drijf.net> Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
* Merge pull request #23128 from TDT-AG/pr/20240119-modemmanagerFlorian Eckert2024-01-23
|\ | | | | modemmanager: replace modem available check on start with the new monitore service
| * modemmanger: bump PKG_RELEASEFlorian Eckert2024-01-19
| | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * modemmanager: suppress mm_log debug messages by defaultFlorian Eckert2024-01-19
| | | | | | | | | | | | | | | | | | The log is filled with 'debug' messages. This is not necessary and is only normaly needed during development. To suppress this message, check whether the level is 'debug' and if so, suppress it. If this message is required again, the message can be generated by commenting out this line. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * modemmanager: replace modem available check on start with the new monitore ↵Florian Eckert2024-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | service Before this change, the status of the sysfs paths from the kernel events was cached with a cache file. This is necessary to mark configured modems as available for the netifd. Using the new monitor service via the mmcli command 'mmcli -M' simplifies the whole process. There is no need to start sub shells in the background anymore that monitors whether the modem has already been added to the ModemManager. For this purpose, a new service was added that reacts on add and remove events for modems in the ModemManager and, if necessary, marks the logical netifd interface as available. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * modemmanager: move shell include to the beginning of the fileFlorian Eckert2024-01-19
| | | | | | | | | | | | | | It is usual that the includes are listed at the beginning of the script. So let's do it that way too. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * modemmanager: move generally applicable functions to modemmanager.commonFlorian Eckert2024-01-19
| | | | | | | | | | | | | | | | These moved functions are general functions. This is a preparatory commit so that these moved functions can also be used in other ModemManager scripts. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | tailscale: Update to 1.58.0Zephyr Lykos2024-01-23
| | | | | | | | | | | | https://github.com/tailscale/tailscale/releases/tag/v1.58.0 Signed-off-by: Zephyr Lykos <git@mochaa.ws>
* | openvpn: remove myself as maintainerMagnus Kroken2024-01-21
| | | | | | | | Signed-off-by: Magnus Kroken <mkroken@gmail.com>
* | cloudflared: Update to 2024.1.4Tianling Shen2024-01-20
| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | evilginx2: add new packageW. Michael Petullo2024-01-19
| | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | snort3: update to 3.1.78.0John Audia2024-01-19
|/ | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump ,,_ -*> Snort++ <*- o" )~ Version 3.1.78.0 '''' By Martin Roesch & The Snort Team http://snort.org/contact#team Copyright (C) 2014-2024 Cisco and/or its affiliates. All rights reserved. Copyright (C) 1998-2013 Sourcefire, Inc., et al. Using DAQ version 3.0.14 Using LuaJIT version 2.1.0-beta3 Using OpenSSL 3.0.12 24 Oct 2023 Using libpcap version 1.10.4 (with TPACKET_V3) Using PCRE version 8.45 2021-06-15 Using ZLIB version 1.3 Using Hyperscan version 5.4.2 2024-01-15 Using LZMA version 5.4.4 Build system: x86/64 Build-tested: x86/64/AMD Cezanne Run-tested: x86/64/AMD Cezanne Signed-off-by: John Audia <therealgraysky@proton.me>
* modemmanager: set allowedmode to 'any' if nothing is configuredFlorian Eckert2024-01-19
| | | | | | | | | | | The modem saves the permitted technology configuration in the modem itself. If the technology configuration is deleted in the uci, this is not passed on to the modem. This means that the previously saved technology configuration is remains in the modem and is therefore still active. By setting the technology to 'any', if no option is set, all technologies are allowed again. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* adblock-fast: update to 1.1.1-3Stan Grishin2024-01-19
| | | | | | | * allow top-level domains in the blocked-domains options fixes https://github.com/openwrt/packages/issues/23125 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* nebula: update to 1.8.2Stan Grishin2024-01-14
| | | | | | * update to 1.8.2: https://github.com/slackhq/nebula/releases/tag/v1.8.2 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* cloudflared: Update to 2024.1.2Tianling Shen2024-01-14
| | | | | | | Finally fixed build with Go 1.21. Fixes: #22383 Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* rclone: Update to 1.65.1Tianling Shen2024-01-14
| | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* xray-core: Update to 1.8.7Tianling Shen2024-01-14
| | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* tailscale: create combined tailscale/tailscaledThomas Kupper2024-01-14
| | | | | | | | | | Modify Makefile to combine tailscale and tailscaled according to Tailscale documentatio (https://tailscale.com/kb/1207/small-tailscale) This resulted for x86_64 in an exec of 31MB + the symlink. Before it was 29MB (tailscaled) and 10MB (tailscale). Signed-off-by: Thomas Kupper <thomas.kupper@gmail.com>
* ksmbd-tools: update to 3.5.1Rosen Penev2024-01-13
| | | | | | | Various fixes for ksmbd, most notably a visibility fix for the latest ksmbd code. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Merge pull request #23082 from yangfl/masterFlorian Eckert2024-01-11
|\ | | | | i2pd: Update to 2.50.2
| * i2pd: Update to 2.50.2David Yang2024-01-10
| | | | | | | | Signed-off-by: David Yang <mmyangfl@gmail.com>
* | knxd: bump to upstream version 0.14.60Othmar Truniger2024-01-10
|/ | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* uspot: update to Git HEAD (2024-01-09)Thibaut VARÈNE2024-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0cffba9458d3 treewide: add support for RADIUS Reply-Message c9fb744fdee8 treewide: add support for 'lang=' & ChilliSpot-Lang 584a162cb19a handler-uam: ensure that 'seconds_remaining' is always set bd1f7c5de1ae Makefile: align with packages feed one 0ea6ad3c4e54 Makefile: mark uspot-www and uspotfilter "PKGARCH:=all" e6a286ccfdbf uspot/uspotfilter: use 'logger -t' 427ed16cfde5 uspot: expose ratelimits in client data 4ba1dd9c5135 uspot: don't send NAS-Port-Type 78a37ef49b85 templates: add id="replymsg" to reply msg header e3f4e179fd17 templates: show remaining time in "connected" 398762dff711 radius-client: correctly use str_to_hex() 730ef800d9da templates: simplify HTML 6bb39282fd8f Documentation update b6c802adac19 portal: handle_request() logic refactoring 1aa1a5eb28d7 uspotfilter: implement peer_lookup() ba5547ec61f1 portal: speedup peer lookup by leveraging spotfilter d551376c29bb templates: added html5 time tag to timeleft output 154c98e0b77b uspotfilter: mark client as active when set() 8dcb03a37a77 uspotfilter: rework neigh management cfb2ce7909da uspotfilter: use client_remove() where applicable 8411314dbf90 Documentation update 8dacf3df9935 uspot: use a single operation for client removal 297b7857c1e0 uspotfilter: fix DELNEIGH processing 76003917c205 uspotfilter: client_set() only clear idle when allowing f46a855c5085 uspotfilter: remove botched IPv6 "support" 4ff31cbf0e2b uspot: client_remove(): stay in sync with spotfilter edc9ad7e60a3 uspot/uspotfilter: use ucode-mod-log for logging 52e24aecf2db uspotfilter: use ucode '??=' syntax c4b6f2f0bb1e Update README Update the package Makefile to reflect the changes from the following above-listed commits: 0ea6ad3c4e54 Makefile: mark uspot-www and uspotfilter "PKGARCH:=all" edc9ad7e60a3 uspot/uspotfilter: use ucode-mod-log for logging Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
* travelmate: update 2.1.2-2Dirk Brenken2024-01-09
| | | | | | * fix a possible re-connection issue/cornercase seen on single radio units Signed-off-by: Dirk Brenken <dev@brenken.org>
* Merge pull request #23076 from stangri/master-adblock-fastStan Grishin2024-01-08
|\ | | | | adblock-fast: bugfix: pause command
| * adblock-fast: bugfix: pause commandStan Grishin2024-01-07
| | | | | | | | | | | | | | * the pause command used to incorrectly cause block-lists reload, this has been fixed in this version Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | Merge pull request #22440 from myszsoda/atftpd_option_enableFlorian Eckert2024-01-08
|\ \ | | | | | | atftpd: Add 'enable' config option
| * | atftpd: Add 'enable' config optionJakub Raczynski2023-11-10
| | | | | | | | | | | | | | | | | | | | | | | | Current version of atftpd daemon does automatically start when installed. This commit adds 'enable' option to config file to have control over atftpd daemon. Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
| * | atftpd: Add missing field to default configurationJakub Raczynski2023-11-10
| | | | | | | | | | | | | | | | | | | | | Although init script did consist of default value for missing 'port' field, add it to configuration file for consistency. Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
| * | atftpd: Refactor init scriptJakub Raczynski2023-11-10
| | | | | | | | | | | | | | | | | | | | | - Add local variables for read configuration - Convert uppercase to lowercase for local variables Signed-off-by: Jakub Raczynski <myszsoda@gmail.com>
* | | alist: Update to 3.30.0Tianling Shen2024-01-08
| |/ |/| | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | banip: update 0.9.3-4Dirk Brenken2024-01-07
| | | | | | | | | | | | * made the default mail template "responsive" to get a better view esp. on mobile devices Signed-off-by: Dirk Brenken <dev@brenken.org>
* | Merge pull request #23070 from muink/masterTianling Shen2024-01-07
|\ \ | | | | | | sing-box: update to 1.8.0