aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
...
* | | | | dawn: use autorelease featureNick Hainke2021-01-27
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Package version is automatically increased as described here: https://github.com/openwrt/packages/issues/14537 Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | Merge pull request #14515 from sartura/sysrepoRosen Penev2021-01-26
|\ \ \ \ | | | | | | | | | | netopeer2: merge-config: listen on ipv6 and ipv4
| * | | | netopeer2: merge-config: listen on ipv6 and ipv4Jakov Smolic2021-01-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The default local-adress makes Netopeer2-server listen on ipv4 only. We change it to :: in order to listen on ipv6 as well as ipv4. Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
* | | | | Merge pull request #14494 from neheb/nRosen Penev2021-01-26
|\ \ \ \ \ | | | | | | | | | | | | nfs-kernel-server: update to 2.5.2
| * | | | | nfs-kernel-server: update to 2.5.2Rosen Penev2021-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove uClibc-ng patch as it was upstreamed. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #14578 from lucize/frrupRosen Penev2021-01-26
|\ \ \ \ \ \ | | | | | | | | | | | | | | frr: update 7.5 to latest backports
| * | | | | | frr: update 7.5 to latest backportsLucian Cristian2021-01-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | | Merge pull request #14576 from Andy2244/ksmbd-fix-#13758Rosen Penev2021-01-26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ksmbd-tools: fix #13758
| * | | | | | | ksmbd-tools: fix #13758Andy Walsh2021-01-26
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix for possible exploit #13758 * sanetize all external template/config inputs * fix some shellcheck warnings Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* / / / / / / samba4: update to 4.13.4Andy Walsh2021-01-26
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update to 4.13.4 Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* | | | | | ddns-scripts: Increase PKG_RELEASEGerald Hansen2021-01-26
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Gerald Hansen <gerald.hansen@posteo.de>
* | | | | | ddns-scripts: Remove not working ddns providerGerald Hansen2021-01-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I checked the hostname for existing DNS A and AAAA entries and these ones didn't have an entry. Signed-off-by: Gerald Hansen <gerald.hansen@cloud.ionos.com>
* | | | | | ddns-scripts: Change parameter for myonlineportalGerald Hansen2021-01-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the default uclient-fetch doesn't support authentication header and the ddns provider myonlineportal.net support also username and passwort as url parameter this can be changed. Signed-off-by: Gerald Hansen <gerald.hansen@cloud.ionos.com>
* | | | | | nextdns: Update to version 1.10.1Olivier Poitrey2021-01-25
| |_|/ / / |/| | | | | | | | | | | | | | Signed-off-by: Olivier Poitrey <rs@nextdns.io>
* | | | | Merge pull request #14555 from fatbob313/umurmur0.2.19Rosen Penev2021-01-25
|\ \ \ \ \ | | | | | | | | | | | | uMurmur: Update to 0.2.19. Patches required for 0.2.17 merged upstream.
| * | | | | uMurmur: Update to 0.2.19. Patches required for 0.2.17 merged upstream.Martin Johansson2021-01-25
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Martin Johansson <martin@fatbob.nu>
* | | | | | Merge pull request #14539 from PolynomialDivision/owipcalc-default-routeJo-Philipp Wich2021-01-25
|\ \ \ \ \ \ | |/ / / / / |/| | | | | owipcalc: fix contains not respect default route
| * | | | | owipcalc: fix contains not respect default routeNick Hainke2021-01-23
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In IPv4 the default route can be written as 0.0.0.0/0 In IPv6 the default route can be written as ::/0 If u try owipcalc 0.0.0.0/0 contains 1.1.1.1 or owipcalc ::/0 contains ::1 owipcalc will respond with 0 meaning that the "default prefixes" do not contain the routes. That is why we check now for 0 prefix. Furthermore, if the prefix is 0, i will be 16. We will access a negative array entry in the line: uint8_t net1 = x->s6_addr[15-i] & m; Divide by % 16 to prevent i becoming 16: uint8_t i = ((128 - a->prefix) / 8) % 16; Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | Merge pull request #14334 from bogdik/masterHannu Nyman2021-01-24
|\ \ \ \ \ | | | | | | | | | | | | Add Eoip packege
| * | | | | eoip: Add packageBogdan Shatik2021-01-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add eoip package,this can create ethernet tunnels compatible with Mikrotik EoIP tunnel. At current moment it is easiest way to create stateless tunnel with Mikrotik. Signed-off-by: Bogdan Shatik <bogdikxxx@mail.ru>
* | | | | | Merge pull request #14529 from ja-pa/ooniprobe-3.4.0Josef Schlehofer2021-01-24
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | ooniprobe: update to version 3.4.0
| * | | | | ooniprobe: update to version 3.4.0Jan Pavlinec2021-01-22
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | Merge pull request #14531 from adschm/calcmoveRosen Penev2021-01-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | owipcalc/maccalc: import from base
| * | | | | | maccalc: import from baseAdrian Schmutzler2021-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a helpful utility, but it does not have any dependencies in base repository. Move it to packages feed. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
| * | | | | | owipcalc: import from baseAdrian Schmutzler2021-01-22
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a helpful utility, but it does not have any dependencies in base repository. Move it to packages feed. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
* | | | | | Merge pull request #14530 from TDT-AG/pr/20210122-iperfRosen Penev2021-01-22
|\ \ \ \ \ \ | | | | | | | | | | | | | | iperf: import iperf3 and iperf from base
| * | | | | | iperf3: import from baseFlorian Eckert2021-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | | iperf: import from baseFlorian Eckert2021-01-22
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | | Merge pull request #14500 from stangri/master-https-dns-proxyRosen Penev2021-01-22
|\ \ \ \ \ \ | | | | | | | | | | | | | | https-dns-proxy: bugfix: high CPU utilization
| * | | | | | https-dns-proxy: bugfix: high CPU utilizationStan Grishin2021-01-18
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | | | tor-hs: fix rpcdJan Pavlinec2021-01-22
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - add rpcd dependecy - handle rpcd in post inst/rm sections Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | Merge pull request #14510 from zhanhb/ddns-scriptsFlorian Eckert2021-01-22
|\ \ \ \ \ | | | | | | | | | | | | ddns-scripts: fix wget-ssl path
| * | | | | ddns-scripts: fix wget-ssl pathHuangbin Zhan2021-01-17
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* | | | | | Merge pull request #14489 from pprindeville/isc-dhcp-add-other-rfc1918-netsPhilip Prindeville2021-01-21
|\ \ \ \ \ \ | | | | | | | | | | | | | | isc-dhcp: support dynamic dns for 10/8 and 172.16/12
| * | | | | | isc-dhcp: support dynamic dns for 10/8 and 172.16/12Philip Prindeville2021-01-15
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | | | | | mosquitto: bump to 2.0.5Karl Palsson2021-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes 2.0.5 https://mosquitto.org/blog/2021/01/version-2-0-5-released/ Includes 2.0.4 https://mosquitto.org/blog/2020/12/version-2-0-4-released/ Includes 2.0.3 https://mosquitto.org/blog/2020/12/version-2-0-3-released/ Multiple fixes to broker and client and libraries, related the 2.x changes. Signed-off-by: Karl Palsson <karlp@etactica.com>
* | | | | | knot: update to version 3.0.4Jan Hak2021-01-21
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan Hak <jan.hak@nic.cz>
* | | | | | safe-search: restart dnsmasq instead of reloadGregory L. Dietsche2021-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some users have reported that reloading dnsmasq does not always work. It sometimes stop responding to DNS lookup requests after being reloaded. This patch changes "safe-search-maintenance" so that it restarts dnsmasq instead of reloading it. Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
* | | | | | safe-search: Dynamic UpdatesGregory L. Dietsche2021-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure that the best available IP is always used for all supported safe-search providers. This is accomplished by periodically checking DNS for the most recent list of IP addresses associated with each provider. Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
* | | | | | udpspeeder: Update to version 20210116.0 of upstreamNishant Sharma2021-01-20
| |_|_|/ / |/| | | | | | | | | | | | | | Signed-off-by: Nishant Sharma <codemarauder@gmail.com>
* | | | | modemmanager: bump versionNicholas Smith2021-01-19
| |/ / / |/| | | | | | | | | | | Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
* | | | haproxy: Update HAProxy to v2.2.8Christian Lachner2021-01-17
|/ / / | | | | | | | | | | | | | | | - Update haproxy download URL and hash Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | Merge pull request #14480 from OpenIoTHub/masterRosen Penev2021-01-14
|\ \ \ | | | | | | | | gateway-go: update to 0.1.95
| * | | gateway-go: update to 0.1.95Yu Fang2021-01-14
| | | | | | | | | | | | | | | | Signed-off-by: Yu Fang <yu@iotserv.com>
* | | | isc-dhcp: add dynamic dns integration for local bind serverPhilip Prindeville2021-01-13
|/ / / | | | | | | | | | | | | | | | | | | | | | Start after named is running. Add support for "cname", "domain", "mxhost", and "srvhost" configs. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | | Merge pull request #14366 from bmork/smartsnmpdHannu Nyman2021-01-12
|\ \ \ | | | | | | | | smartsnmpd: remove dysfunctional package
| * | | smartsnmpd: remove dysfunctional packageBjørn Mork2020-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package has been completely broken on several levels since commit eadd5abe40a0 ("smartsnmpd: Update to 2015-02-22 version") The update changed the configuration file syntax without fixing the scripts generating this file. The OpenWrt package would therefore fail to run. Worse than that, the last upstream version is completely broken is unable to generate proper snmp replies even if the configuration file is fixed, This has been tested and verified on both OpenWrt/realtek and Debian/amd64. I considered fixing the package, but dropped it for the following reasons 1) upstream has abandoned the project 2) the upstream fork "smithsnmp" continues to make aribitrary changes to configuration files and other packaging challenges 3) the package is tied to the lua5.1 C API, and further upgrades will be non-trivial 4) there are several other snmp daemons available in OpenWrt, without any of these issues 5) no one is interested in this package The last point is proven by the lack of testing and feedback. The last update was not even tested by the person preparing and commiting the update. Signed-off-by: Bjørn Mork <bjorn@mork.no>
* | | | ooniprobe: update to version 3.1.0Jan Pavlinec2021-01-12
| | | | | | | | | | | | | | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | Merge pull request #14441 from flyn-org/clamavHannu Nyman2021-01-12
|\ \ \ \ | | | | | | | | | | clamav: allow configuring clamd to use TCP socket
| * | | | clamav: allow configuration to use TCP socketW. Michael Petullo2021-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Something having to do with passing a file descriptor over spamd's Unix socket causes the ClamAV milter to fail. The milter says "ERROR: Unknown reply from clamd," and running strace on spamd reveals "No file descriptor received. ERROR." Some work by others can be found on the Internet that suggests using a TCP socket for the communication between the milter and spamd fixes this. Lucian Cristian confirmed this on OpenWrt. I am not sure why the Unix socket does not work. I suspect it is something related to musl, but I have not yet found evidence of this. This merge request adds the option to configure spamd to use a TCP socket, and it uses this as the default. The merge request also adds an init script for clamav-milter. Signed-off-by: W. Michael Petullo <mike@flyn.org>