0
0
mirror of https://github.com/openwrt/luci.git synced 2025-04-04 15:05:26 +00:00

471 Commits

Author SHA1 Message Date
6c061b644c luci-mod-network: fix handleAdd in wireless.js
handleAdd did not work correctly for a while: some state was not cleaned
up (try: wireless -> add -> no changes -> click dismiss -> press save).

The state is now properly removed when pressing dismiss, by stashing
addedSection correctly under the map m and not in this.

Also requires a null check in render_modal_status.

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-04-01 18:10:30 +02:00
cdce600aae luci-mod-network: give wireless.js ES2016 treatment and refactor
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-04-01 16:43:05 +02:00
0a3b60d050 luci-mod-network: correct dnsrr field name to rrname
follow-up fix for f88f9034f20a97a50179881cde89676f5b5dd948

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-03-05 23:21:33 -06:00
29fe3f5fda luci: show wifi vlan in the associated wireless stations list
This patch adds a badge to the associated wireless stations with the vlan id
and name. It is displayed in the same color as the network, to which it is
bridged, so the color corresponds to the color in the network configuration
page.

Signed-off-by: Tobias Waldvogel <tobias.waldvogel@gmail.com>
2025-02-23 12:51:07 -06:00
2fb2bd36c7 luci-mod-network: add bridge_isolate option
Adds the 'bridge_isolate' option to wireless interfaces.

Signed-off-by: Jan Froch <jan@froch.eu>
2025-02-02 23:50:01 +01:00
e845441baf luci-base: i18n string context
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-01-31 23:28:12 +01:00
070b2e57c6 luci-mod-network: handle default protocol for UCI interfaces
The protocol defaults to 'none' in netifd if unspecified.

Some previously unused and some now redundant code is also removed.

Signed-off-by: Erik Karlsson <erik.karlsson@iopsys.eu>
2025-01-22 15:49:14 +01:00
d889c27b4b luci-mod-network: fix disabling packet steering
The default value of an empty option is enabled, not disabled.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
2025-01-21 09:30:53 +01:00
b85628e16c luci-mod-network: i18n fix
Follow-up fix to fb4cf432d2232a0ba2ccd3a8ff81a3679c8d054d

Resolves sync errors:

standard input:682: warning: Empty msgid.  It is reserved by GNU gettext:
                             gettext("") returns the header entry with
                             meta information, not the empty string.
standard input:733: warning: Empty msgid.  It is reserved by GNU gettext:
                             gettext("") returns the header entry with
                             meta information, not the empty string.
standard input:761: warning: Empty msgid.  It is reserved by GNU gettext:
                             gettext("") returns the header entry with
                             meta information, not the empty string.
standard input:818: warning: Empty msgid.  It is reserved by GNU gettext:
                             gettext("") returns the header entry with
                             meta information, not the empty string.

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-01-14 03:10:15 +01:00
96d6781b12 luci-mod-network: comment grammar fix
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2025-01-13 17:57:45 +01:00
c9cc773449 luci-mod-network: handle missing dnsrr hexdata as empty string
If the value returned from UCI was falsy, it became an empty array instead
of an empty string, which crashed the UI when trying to invoke the
non-existing replace instance function on the value.

Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
2025-01-06 17:22:15 +00:00
7fe0218bcf luci-base: rename mii-tool object property to mii_tool
otherwise ucode function call breaks with:

RPC call to luci/getInitList failed with error -32000: Object not found

Follow-up fix to ab15b5e379717be5e194bc3992ae13960b973f18

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-12-19 22:38:23 +00:00
ab15b5e379 luci-mod-network: gate bonding behind kmod presence
The kmod install link only displays in new device dialogues so as not
to be too prominent.

Closes 
Closes 

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-12-19 18:44:47 +00:00
fb4cf432d2 luci-mod-network: add support for bonding device in netifd
netifd support for bonding devices has been added in commit 5ba9744.
The other way to have bonding available in luci is via
luci-proto-bonding and its proto-bonding dependency.

luci-proto-bonding requires an IP address on a bond interface due to a
netifd limitation. This can cause some issues if you want to bridge an
Ethernet port and a bond.

This patch aims to have the device to be configurable not as an
interface protocol but as a device.

Signed-off-by: Nicolò Veronese <nicveronese@gmail.com>
2024-12-19 18:44:47 +00:00
7cd6b385e0 luci-mod-network: ifname_multi -> ifname_multi-bridge
This is to prepare for the bonding implementation, two configuration
nodes cannot share the same name.

Probably a more unique and precise naming would be better.

Signed-off-by: Nicolò Veronese <nicveronese@gmail.com>
2024-12-19 17:43:44 +00:00
8b3c13f7b3 luci-mod-network: validate DHCP leasetime input
Without validation, `dnsmasq` can fail silently if users enter
invalid leasetime input. This change adds input validation to
align user input with the backend parsing logic. Whilst it does
not enforce the >120 seconds requirement, this is documented
in the field description and handled by `dnsmasq`'s `option.c`,
which adjusts values <120 to meet this minimum.

Signed-off-by: Lyall Beveridge <lyall.beveridge@morsemicro.com>
2024-12-16 21:55:31 +01:00
e23f6069d6 luci-mod-network: remove old netifd version check which needs opkg
master and 24 use much newer versions.

This will prevent a read error on the non-existent control file when
the system uses apk.

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-12-15 21:08:56 +01:00
4bc20a2bfb luci-mod-network: update package-manager link
opkg is no longer available as the generic name for package-manager

Closes , 

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-12-15 19:59:52 +01:00
a6e3ea42ac luci-mod-network: add ipproto property to routes
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-12-12 21:36:10 +01:00
bbc4a90925 luci-mod-network: fix DHCP ip constraint (masks generate "bad address")
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-28 19:30:01 +01:00
9a6dc74ab8 luci-mod-network: routes: implement cloneable for all tabs
This enables cloning of individual routes and rules where one wishes
to make similar entries rapidly.

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-24 15:55:24 +01:00
cfa774ee72 luci-mod-network: Fix for a9e1685 to enable translation
Fix the erroneous placement of ) in a9e1685 to actually provide translation.

Fixes 

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2024-11-17 10:24:03 +02:00
53e66da926 luci-mod-network: dhcp; implement ignore_hosts_dir dnsmasq setting
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-14 21:02:49 +01:00
a9e1685f64 luci-mod-network: improve route setting descriptions
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-14 20:42:41 +01:00
1c61a66950 luci-mod-network: show 'Interface disabled' in status
Signed-off-by: Fengyu Wu <saldry@proton.me>
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-05 19:31:33 +01:00
247820d854 luci-mod-network: rework interface status info
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-11-05 18:34:18 +01:00
2becdcc2f5 luci-mod-network: add 11be support - revert hwval null check for 5g/2g mode
remove misplaced ax/be checks

Signed-off-by: Rudy Andram <rmandrad@gmail.com>
2024-10-29 19:58:05 +01:00
79e9a4717b luci-mod-network: move wifi country-code to 'general' tab
increase prominence of this setting

Closes 

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-28 02:09:54 +01:00
e662dc8151 luci-mod-network: add support for wireless no outdoor restriction
Some channels may restrict its use to indoor only. Add support for
this and alert the user if a channel with this limitation is used.

Closes 

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 05:36:58 +02:00
83a147ea79 luci-mod-network: use RichListValue widget from form.js
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 05:10:59 +02:00
f2e14b8946 luci-mod-network: add ppsk option (support for private psk)
Include support in luci to enable the Private PSK.
When Private PSK is enabled, clients can use a default password (common),
or have their own private password that is associate with the client MAC.

The password is retrieved from RADIUS server, asking for the client MAC,
and when such client MAC is not defined, RADIUS should return a default
password.

RADIUS can also return other parameters like VLANs, which can be used to
put clients dinamically in different vlans based on their MAC, or the
default configuration.

Private PSK is not compatible yet with SAE encryption, therefore cannot
be used yet with WPA3 or WPA3-mixed.

It implements the UI for the PPSK already in master: https://github.com/openwrt/openwrt/pull/3509

Closes 

Signed-off-by: Manuel Giganto <mgigantoregistros@gmail.com>
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 03:06:12 +02:00
4437b6bbfd luci-mod-network: Add cache-rr to cache responses by record type name
This follows https://github.com/openwrt/openwrt/pull/14975

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 01:39:59 +02:00
4254b02e79 luci-mod-network: Add filter-rr to filter responses by record type name
This follows https://github.com/openwrt/openwrt/pull/14975

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 01:33:21 +02:00
f88f9034f2 luci-mod-network: Add DNS-RR resource record tab to DHCP
As a convenience at load/save, the hex field de/encodes hex respectively

This follows https://github.com/openwrt/openwrt/pull/14975

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-10-23 01:13:04 +02:00
383edb4d6d luci-wireless: Add 11be support
Tested with filogic banana rpi4 / QNAP qualcommax ipq8074

Signed-off-by: Rudy Andram <rmandrad@gmail.com>
Tested-By: Daniel Pawlik <pawlik.dan@gmail.com>
2024-10-07 19:29:35 +02:00
300961bb1b luci-mod-network: split interface name and protocol validation
The previous implementation of binding the protocol validation to the
name validation caused problems when creating a new interface where an
already existing interface had the new one's protocol as its name, as the
protocol would be used when validating if an interface of that name already
existed.

Consider the following case:
1. Interface 'gre' with protocol PPPoE is created
2. Interface 'foo' with protocol GRE tunnel over IPv4 (which resolves to
   'gre') tries to be created

Creating interface 'foo' would error out during protocol validation as
'gre' would be passed to the name validation, which in turn would check if
an interface with name 'gre' already exists, which it does.

Instead of reusing the validation logic, simply trigger the name
validation manually as the protocol changes to properly pass the name of
the interface instead of the protocol. This also gives the benefit of
keeping all error states related to the name contained in the appropriate
UI element.

Fixes 

Tested-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
2024-10-07 17:18:33 +02:00
a2c21a62c9 luci-mod-network: change to non-breaking space character
Closes 

Thanks to @efahl

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-09-20 17:49:07 +02:00
d6d3c77df0 luci-mod-network: sourcefilter option available for modemmanager
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
2024-09-14 22:24:19 +02:00
ae6de0c7f4 luci-mod-network: Clarify 'metric' value
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-09-12 01:18:05 +02:00
38be2663ea ACL: Add system read for luci-mod-network needed for timezone in wireless 2024-09-06 01:31:17 +02:00
96be7a3eb9 Merge pull request from schuettecarsten/pr/dnsmasq_edns0_upstream
dnsmasq: Add options for new EDNS0 options
2024-09-02 09:35:29 +02:00
648a09907e luci-mod-network: routes.js: make interface setting optional
Fixes: 
Ref: https://git.openwrt.org/5c2e5d5ea4e0dd9a0ed66154d818b96bf81664f4
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2024-08-30 11:54:45 +02:00
8c8073729f dnsmasq: Add options for new EDNS0 options
Signed-off-by: Carsten Schuette <schuettecarsten@googlemail.com>
2024-08-02 09:43:37 +02:00
75422e1034 luci-mod-network: wireless.js: expose ocv settings
Make it possible to set Operating Channel Validation through luci.

Signed-off-by: Michael Yartys <mail@yartys.no>
2024-07-26 01:48:12 +02:00
84ffb655b0 luci-mod-network: made expandAndFormatMAC return arrays
instead of returning a space separated string

follow-up to 5ab0cb1f15bcb31015ae8345d302c6d023ba51e2

Closes 

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-07-25 16:30:35 +02:00
5ab0cb1f15 luci-mod-network: Correctly assign dnsmasq instance: name not number
Closes 

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-07-23 15:18:07 +02:00
711fafef1f luci-mod-network: revert replacing button tags with div tags
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2024-07-19 11:01:55 +02:00
46e8c0b8f7 luci-mod-network: Present GCMP (AES) options in wifi
And include ccmp-256 bit

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-07-18 00:42:52 +02:00
3bf3c0a048 luci-mod-network: Present wpa3-192bit option in wifi
Closes 

See db3934d2f7

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
2024-07-18 00:42:52 +02:00
a0dcba5b78 Merge pull request from TDT-AG/pr/20240607-luci-base
treewide: add new css class button-row
2024-07-17 09:31:52 +02:00