Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
347950ff72 | ||
|
|
0bccfbd11f | ||
|
|
360bc1e86d | ||
|
|
5b385385de | ||
|
|
ea23dfedc5 | ||
|
|
34a32fa7e8 | ||
|
|
06930df7c6 | ||
|
|
df058dfe33 | ||
|
|
45213b4eac |
@@ -1,19 +0,0 @@
|
|||||||
.git/
|
|
||||||
.gitignore
|
|
||||||
.gitattributes
|
|
||||||
.github/
|
|
||||||
output/
|
|
||||||
installer/output/
|
|
||||||
*.bin
|
|
||||||
html_data.c
|
|
||||||
html_data.h
|
|
||||||
*.o
|
|
||||||
*.rel
|
|
||||||
*.lst
|
|
||||||
*.sym
|
|
||||||
*.asm
|
|
||||||
*.ihx
|
|
||||||
*.img
|
|
||||||
*.map
|
|
||||||
*.mem
|
|
||||||
*.lk
|
|
||||||
@@ -17,7 +17,5 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
apt update
|
apt update
|
||||||
apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y
|
apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y
|
||||||
- name: Check if machine.c can be compiled for all machines
|
|
||||||
run: make machine_check
|
|
||||||
- name: Make project
|
- name: Make project
|
||||||
run: make MACHINE="KP_9000_6XHML_X2"
|
run: make
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM debian:13-slim
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
|
||||||
make \
|
|
||||||
gcc \
|
|
||||||
sdcc \
|
|
||||||
xxd \
|
|
||||||
python3 \
|
|
||||||
libjson-c-dev \
|
|
||||||
golang-go \
|
|
||||||
git \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# git safe.directory for mounted repos (Makefile uses git describe)
|
|
||||||
RUN git config --global --add safe.directory /workspace
|
|
||||||
|
|
||||||
WORKDIR /workspace
|
|
||||||
|
|
||||||
CMD ["bash"]
|
|
||||||
@@ -1,101 +1,38 @@
|
|||||||
|
BOOTLOADER_ADDRESS=0x100
|
||||||
|
|
||||||
VERSION=0.1.0
|
VERSION=0.1.0
|
||||||
IMAGESIZE = 524288
|
IMAGESIZE = 524288
|
||||||
DEFAULT_CONFIG_LOCATION = 454656
|
|
||||||
CONFIG_LOCATION = 458752
|
CONFIG_LOCATION = 458752
|
||||||
HTML_LOCATION = 262144
|
HTML_LOCATION = 262144
|
||||||
|
|
||||||
ifeq ($(origin CC),default)
|
|
||||||
CC = sdcc
|
CC = sdcc
|
||||||
endif
|
|
||||||
CC_FLAGS = -mmcs51 -I. -Ihttpd -Iuip
|
CC_FLAGS = -mmcs51 -I. -Ihttpd -Iuip
|
||||||
ASM ?= sdas8051
|
ASM = sdas8051
|
||||||
AFLAGS= -plosgff
|
AFLAGS= -plosgff
|
||||||
|
|
||||||
SUBDIRS := tools
|
SUBDIRS := tools uip httpd
|
||||||
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
|
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
|
||||||
|
|
||||||
ifeq ($(MACHINE),)
|
BUILDDIR = output/
|
||||||
MACHINE:= $(shell grep "^\s*#define MACHINE_" machine.h | sed "s/^\s*#define MACHINE_//")
|
|
||||||
else
|
|
||||||
CC_FLAGS += -DMACHINE_$(MACHINE)
|
|
||||||
endif
|
|
||||||
|
|
||||||
BUILDDIR = output/$(MACHINE)
|
|
||||||
VERSION_HEADER := version.h
|
VERSION_HEADER := version.h
|
||||||
|
|
||||||
GIT_VERSION := $(shell git rev-parse --short HEAD)
|
all: create_build_dir $(VERSION_HEADER) $(SUBDIRS) $(BUILDDIR)rtlplayground.bin
|
||||||
ifeq ($(shell git status --porcelain --untracked-files=no),)
|
|
||||||
else
|
|
||||||
GIT_VERSION := $(GIT_VERSION)-dirty
|
|
||||||
endif
|
|
||||||
|
|
||||||
VERSION_EXTENSION = v$(VERSION)-$(GIT_VERSION)
|
|
||||||
FILENAME_EXTENSION = $(VERSION_EXTENSION)-$(MACHINE)
|
|
||||||
|
|
||||||
# Deterministic build date: honor SOURCE_DATE_EPOCH, else the HEAD commit date,
|
|
||||||
# else wall-clock (no-git fallback). Keeps same-commit builds byte-identical
|
|
||||||
# (BUILD_DATE is baked into the image and covered by the trailing CRC).
|
|
||||||
SOURCE_DATE_EPOCH ?= $(shell git show -s --format=%ct HEAD 2>/dev/null)
|
|
||||||
ifeq ($(SOURCE_DATE_EPOCH),)
|
|
||||||
BUILD_DATE := $(shell date +"%Y-%m-%d %H:%M:%S")
|
|
||||||
else
|
|
||||||
BUILD_DATE := $(shell date -u -d @$(SOURCE_DATE_EPOCH) +"%Y-%m-%d %H:%M:%S" 2>/dev/null \
|
|
||||||
|| date -u -r $(SOURCE_DATE_EPOCH) +"%Y-%m-%d %H:%M:%S")
|
|
||||||
endif
|
|
||||||
|
|
||||||
all: create_build_dir $(VERSION_HEADER) $(SUBDIRS) $(BUILDDIR)/rtlplayground-$(FILENAME_EXTENSION).bin
|
|
||||||
|
|
||||||
create_build_dir:
|
create_build_dir:
|
||||||
mkdir -p "$(BUILDDIR)"
|
mkdir -p $(BUILDDIR)
|
||||||
mkdir -p "$(BUILDDIR)/uip"
|
|
||||||
mkdir -p "$(BUILDDIR)/httpd"
|
|
||||||
|
|
||||||
# Keep machine.c in first position to fail immediately on invalid $MACHINE value
|
SRCS = rtlplayground.c rtl837x_flash.c rtl837x_leds.c rtl837x_phy.c rtl837x_port.c cmd_parser.c html_data.c rtl837x_igmp.c rtl837x_stp.c rtl837x_pins.c dhcp.c machine.c
|
||||||
SRCS = \
|
OBJS = ${SRCS:%.c=$(BUILDDIR)%.rel}
|
||||||
machine.c \
|
OBJS += uip/$(BUILDDIR)/timer.rel uip/$(BUILDDIR)/uip-fw.rel uip/$(BUILDDIR)/uip-neighbor.rel uip/$(BUILDDIR)/uip-split.rel uip/$(BUILDDIR)/uip.rel uip/$(BUILDDIR)/uip_arp.rel uip/$(BUILDDIR)/uiplib.rel httpd/$(BUILDDIR)/httpd.rel httpd/$(BUILDDIR)/page_impl.rel
|
||||||
cmd_editor.c \
|
|
||||||
cmd_parser.c \
|
|
||||||
dhcp.c \
|
|
||||||
html_data.c \
|
|
||||||
rtlplayground.c \
|
|
||||||
syslog.c \
|
|
||||||
udp_apps.c
|
|
||||||
|
|
||||||
# RTL837x
|
html_data.c html_data.h: html tools
|
||||||
SRCS += \
|
tools/$(BUILDDIR)fileadder -a $(HTML_LOCATION) -s $(IMAGESIZE) -b BANK1 -d html -p html_data
|
||||||
rtl837x_bandwidth.c \
|
|
||||||
rtl837x_flash.c \
|
|
||||||
rtl837x_igmp.c \
|
|
||||||
rtl837x_init.c \
|
|
||||||
rtl837x_leds.c \
|
|
||||||
rtl837x_phy.c \
|
|
||||||
rtl837x_pins.c\
|
|
||||||
rtl837x_port.c \
|
|
||||||
rtl837x_stp.c
|
|
||||||
SRCS += \
|
|
||||||
httpd/httpd.c \
|
|
||||||
httpd/page_impl.c
|
|
||||||
SRCS += \
|
|
||||||
uip/timer.c \
|
|
||||||
uip/uip.c \
|
|
||||||
uip/uiplib.c \
|
|
||||||
uip/uip_arp.c \
|
|
||||||
uip/uip-fw.c \
|
|
||||||
uip/uip-neighbor.c \
|
|
||||||
uip/uip-split.c
|
|
||||||
|
|
||||||
OBJS = ${SRCS:%.c=$(BUILDDIR)/%.rel}
|
|
||||||
DEPS := ${SRCS:%.c=$(BUILDDIR)/%.d}
|
|
||||||
HTML := $(shell find html -name '*.js' -or -name '*.html' -or -name '*.svg')
|
|
||||||
|
|
||||||
html_data.c html_data.h &: $(HTML) | tools
|
|
||||||
tools/output/fileadder -a $(HTML_LOCATION) -s $(IMAGESIZE) -b BANK1 -d html -p html_data
|
|
||||||
|
|
||||||
$(VERSION_HEADER):
|
$(VERSION_HEADER):
|
||||||
@printf '%s\n' "#ifndef VERSION_H" "#define VERSION_H" \
|
@echo "#ifndef VERSION_H" > $(VERSION_HEADER)
|
||||||
"#define VERSION_SW \"$(VERSION_EXTENSION)\"" \
|
@echo "#define VERSION_H" >> $(VERSION_HEADER)
|
||||||
"#define BUILD_DATE \"$(BUILD_DATE)\"" \
|
@echo "#define VERSION_SW \"v$(VERSION)-g$(shell git rev-parse --short HEAD)\"" >> $(VERSION_HEADER)
|
||||||
"#endif" > $(VERSION_HEADER)
|
@echo "#endif" >> $(VERSION_HEADER)
|
||||||
|
|
||||||
httpd: html_data.h
|
httpd: html_data.h
|
||||||
|
|
||||||
@@ -103,46 +40,36 @@ $(SUBDIRS):
|
|||||||
$(MAKE) -C $@
|
$(MAKE) -C $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f html_data.c html_data.h $(VERSION_HEADER)
|
-make -C uip clean
|
||||||
-if [ -d $(BUILDDIR) ]; then find $(BUILDDIR) -type f ! -name "*.bin" -delete; fi
|
-make -C httpd clean
|
||||||
|
-rm html_data.c html_data.h $(VERSION_HEADER)
|
||||||
|
-rm -r $(BUILDDIR)
|
||||||
|
|
||||||
distclean:
|
$(BUILDDIR)crtstart.rel: crtstart.asm
|
||||||
-rm -f html_data.c html_data.h $(VERSION_HEADER)
|
$(ASM) $(AFLAGS) -o $@ $<
|
||||||
-rm -rf $(BUILDDIR)
|
|
||||||
|
|
||||||
$(BUILDDIR)/%.rel: %.c | create_build_dir html_data.h
|
$(BUILDDIR)crc16.rel: crc16.asm
|
||||||
$(CC) -MMD $(CC_FLAGS) -o $@ -c $<
|
$(ASM) $(AFLAGS) -o $@ $<
|
||||||
|
|
||||||
$(BUILDDIR)/%.rel: %.asm | create_build_dir
|
$(BUILDDIR)%.rel: %.c
|
||||||
|
$(CC) $(CC_FLAGS) -o $@ -c $<
|
||||||
|
|
||||||
|
$(BUILDDIR)%.rel: $(BUILDDIR)%.asm
|
||||||
${ASM} ${AFLAGS} -o $@ $<
|
${ASM} ${AFLAGS} -o $@ $<
|
||||||
# mv -f $(addprefix $(basename $^), .lst .rel .sym) .
|
# mv -f $(addprefix $(basename $^), .lst .rel .sym) .
|
||||||
|
|
||||||
$(BUILDDIR)/rtlplayground.ihx: $(OBJS) $(BUILDDIR)/crtbank.rel $(BUILDDIR)/crc16.rel
|
$(BUILDDIR)rtlplayground.ihx: $(BUILDDIR)crtstart.rel $(OBJS) $(BUILDDIR)crc16.rel
|
||||||
$(CC) $(CC_FLAGS) -Wl-bHOME=0x00000 -Wl-bBANK1=0x14000 -Wl-bBANK2=0x24000 -Wl-r -o $@ $^
|
$(CC) $(CC_FLAGS) -Wl-bHOME=${BOOTLOADER_ADDRESS} -Wl-bBANK1=0x14000 -Wl-bBANK2=0x24000 -Wl-r -o $@ $^
|
||||||
|
|
||||||
$(BUILDDIR)/rtlplayground.img: $(BUILDDIR)/rtlplayground.ihx
|
$(BUILDDIR)rtlplayground.img: $(BUILDDIR)rtlplayground.ihx
|
||||||
objcopy --input-target=ihex -O binary $< $@
|
objcopy --input-target=ihex -O binary $< $@
|
||||||
|
|
||||||
$(BUILDDIR)/rtlplayground-$(FILENAME_EXTENSION).bin: $(BUILDDIR)/rtlplayground.img | tools
|
$(BUILDDIR)rtlplayground.bin: $(BUILDDIR)rtlplayground.img
|
||||||
if [ -e $@ ]; then rm $@; fi
|
if [ -e $@ ]; then rm $@; fi
|
||||||
tools/output/imagebuilder -i $^ $@
|
tools/$(BUILDDIR)imagebuilder -i $^ $@
|
||||||
tools/output/fileadder -a $(DEFAULT_CONFIG_LOCATION) -s $(IMAGESIZE) -d config.txt $@
|
tools/$(BUILDDIR)fileadder -a $(CONFIG_LOCATION) -s $(IMAGESIZE) -d config.txt $@
|
||||||
tools/output/fileadder -a $(CONFIG_LOCATION) -s $(IMAGESIZE) -d config.txt $@
|
tools/$(BUILDDIR)fileadder -a $(HTML_LOCATION) -s $(IMAGESIZE) -d html -p html_data $@
|
||||||
tools/output/fileadder -a $(HTML_LOCATION) -s $(IMAGESIZE) -d html -p html_data -b BANK1 $@
|
tools/$(BUILDDIR)crc_calculator -u $@
|
||||||
tools/output/crc_calculator -u $@
|
|
||||||
ln -sf $(MACHINE)/rtlplayground-$(FILENAME_EXTENSION).bin output/rtlplayground.bin
|
|
||||||
|
|
||||||
.PHONY: clean all $(SUBDIRS) $(VERSION_HEADER) create_build_dir
|
|
||||||
|
|
||||||
.PHONY:
|
.PHONY: clean all $(SUBDIRS)
|
||||||
machine_check:
|
|
||||||
@mkdir -p $(BUILDDIR)/tmp
|
|
||||||
@set -eo pipefail; \
|
|
||||||
for MACHINE in `grep -e ' MACHINE_' machine.c | sed -e 's%^.* MACHINE_%%' -e 's%[ ]*//.*$$%%' | sort -u`; \
|
|
||||||
do \
|
|
||||||
echo "Checking $${MACHINE}"; \
|
|
||||||
$(CC) $(CC_FLAGS) -DMACHINE_$${MACHINE} -MMD -o $(BUILDDIR)/tmp/machine_check -c machine.c; \
|
|
||||||
done
|
|
||||||
@rm -rf $(BUILDDIR)/tmp
|
|
||||||
|
|
||||||
-include $(DEPS)
|
|
||||||
|
|||||||
@@ -52,192 +52,96 @@ devices by looking at the image using e.g. Ghidra. If you want to contribute to
|
|||||||
design of the web-interface or get a feeling for the interface first, a standalone
|
design of the web-interface or get a feeling for the interface first, a standalone
|
||||||
device simulator is provided, which runs entirely under Linux as a local webserver.
|
device simulator is provided, which runs entirely under Linux as a local webserver.
|
||||||
|
|
||||||
## (0) Compiling Requirements
|
## Compiling
|
||||||
|
|
||||||
Install the following particular build requisites (Debian 12/13), note that Ubuntu 24.04
|
Install the following particular build requisites (Debian 12/13), note that Ubuntu 24.04
|
||||||
still has an older version of sdcc, but you will need sdcc version 4.5 for the code to compile:
|
still has an older version of sdcc, but you will need sdcc version 4.5 for the code to compile:
|
||||||
```
|
```
|
||||||
sudo apt install make gcc sdcc xxd python-is-python3 libjson-c-dev
|
sudo apt install sdcc xxd python-is-python3 libjson-c-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>If using Docker (click to expand)</summary>
|
|
||||||
|
|
||||||
### Prerequisites
|
|
||||||
|
|
||||||
Install Docker for your platform:
|
|
||||||
|
|
||||||
- **Linux (Debian/Ubuntu)**: `sudo apt install docker.io` then `sudo usermod -aG docker $USER` (log out and back in)
|
|
||||||
- **Linux (other distros)**: Follow the [Docker Engine install guide](https://docs.docker.com/engine/install/)
|
|
||||||
- **Windows**: Install [Docker Desktop for Windows](https://docs.docker.com/desktop/setup/install/windows-install/)
|
|
||||||
- **macOS**: Install [Docker Desktop for Mac](https://docs.docker.com/desktop/setup/install/mac-install/)
|
|
||||||
|
|
||||||
### Usage
|
|
||||||
|
|
||||||
A Dockerfile is provided for a reproducible build environment:
|
|
||||||
|
|
||||||
```
|
|
||||||
docker build -t rtlplayground-dev .
|
|
||||||
```
|
|
||||||
|
|
||||||
Build the firmware (replace MACHINE with your target, e.g. `DEFAULT_8C_1SFP`):
|
|
||||||
|
|
||||||
```
|
|
||||||
docker run --rm -v $(pwd):/workspace rtlplayground-dev make MACHINE=DEFAULT_8C_1SFP
|
|
||||||
```
|
|
||||||
|
|
||||||
The resulting `.bin` file appears in `output/` on your host.
|
|
||||||
|
|
||||||
Build host tools only:
|
|
||||||
|
|
||||||
```
|
|
||||||
docker run --rm -v $(pwd):/workspace rtlplayground-dev make -C tools
|
|
||||||
```
|
|
||||||
|
|
||||||
Run the web-interface simulator locally:
|
|
||||||
|
|
||||||
```
|
|
||||||
docker run --rm -p 8080:8080 -v $(pwd):/workspace rtlplayground-dev \
|
|
||||||
tools/output/httpd_sim /workspace/html
|
|
||||||
```
|
|
||||||
|
|
||||||
Edit `machine.h` or `config.txt` on your host, then re-run `make` — the
|
|
||||||
source directory is mounted into the container, so changes take effect
|
|
||||||
immediately. To build for a different machine, pass `MACHINE=...`.
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
## (1) Compiling for direct chip flashing AND upgrading an existing RTLPlayground running device
|
|
||||||
|
|
||||||
Edit machine.h with an editor like vi or nano. Select the correct machine the firmware should build for.
|
|
||||||
|
|
||||||
> [!TIP]
|
|
||||||
> You can write configuration parameters in config.txt (see below) in order your switch to get
|
|
||||||
> straight at the first boot, a correct IP configuration.
|
|
||||||
|
|
||||||
Now, building the firmware image should work:
|
Now, building the firmware image should work:
|
||||||
```
|
```
|
||||||
make
|
$ make
|
||||||
|
sdas8051 -plosgff crtstart.asm
|
||||||
|
sdcc -mmcs51 -c rtlplayground.c
|
||||||
|
sdcc -mmcs51 -c rtl837x_flash.c
|
||||||
|
sdcc -mmcs51 -Wl-bHOME=0x100 -o rtlplayground.ihx crtstart.rel rtlplayground.rel rtl837x_flash.rel
|
||||||
|
objcopy --input-target=ihex -O binary rtlplayground.ihx rtlplayground.img
|
||||||
|
if [ -e rtlplayground.bin ]; then rm rtlplayground.bin; fi
|
||||||
|
echo "0000000: 00 40" | xxd -r - rtlplayground.bin
|
||||||
|
cat rtlplayground.img >> rtlplayground.bin
|
||||||
```
|
```
|
||||||
Note, that the image generated ends in .bin, not .img, in order to make IMSProg happy.
|
Note, that the image generated ends in .bin, not .img, in order to make
|
||||||
|
IMSProg happy.
|
||||||
image location is stored in `RTLPlayground/output/rtlplayground_version_machine.bin`
|
|
||||||
for example
|
|
||||||
```
|
|
||||||
rtlplayground-v0.1.0-12c98ba-dirty-LIANGUO_ZX_SWTGW215AS.bin
|
|
||||||
```
|
|
||||||
|
|
||||||
> [!CAUTION]
|
|
||||||
> This image can be flashed directly to the chip OR through the firmware update/upgrade
|
|
||||||
> interface of RTLPlaygound interface
|
|
||||||
|
|
||||||
## (2) Compiling for OEM running device with management options (web upgrade)
|
|
||||||
|
|
||||||
Managed switches can be updated from the existing original firmware using a SPECIFIC upgrade image.
|
|
||||||
You first need to build the firmware for direct chip flashing : See below (1)
|
|
||||||
|
|
||||||
Then
|
|
||||||
|
|
||||||
```
|
|
||||||
cd installer
|
|
||||||
make
|
|
||||||
```
|
|
||||||
image location is stored in `RTLPlayground/installer/output/rtlplayground_oem_upgrade.bin`
|
|
||||||
|
|
||||||
> [!CAUTION]
|
|
||||||
> This image must ONLY be used for original OEM firmware web interface firmware upgrade.
|
|
||||||
> You do not need this image if you are already on RTLplayground firmware.
|
|
||||||
> Unless you go back to the original OEM firmware, you would only flash this specific firmware
|
|
||||||
> only once. Future upgrades of RTLPlayground will only need to follow (1)
|
|
||||||
|
|
||||||
example of compilation console output
|
|
||||||
|
|
||||||
|
Managed switches can be updated from the existing original firmware using an upgrade image.
|
||||||
|
In the `installer`folder of the source code you will need to run `make` which will build
|
||||||
|
an image out of `rtlplayground.bin` built in the previous step:
|
||||||
```
|
```
|
||||||
RTLPlayground/installer$ make
|
RTLPlayground/installer$ make
|
||||||
mkdir -p output
|
mkdir -p output/
|
||||||
gcc updatebuilder.c -o output/updatebuilder
|
gcc updatebuilder.c -o output/updatebuilder
|
||||||
sdas8051 -plosgff -o output/crtstart.rel crtstart.asm
|
sdas8051 -plosgff -o output/crtstart.rel crtstart.asm
|
||||||
sdcc -mmcs51 --code-loc 0x1000 -o output/installer.rel -c installer.c
|
sdcc -mmcs51 --code-loc 0x1000 -o output/installer.rel -c installer.c
|
||||||
sdcc -mmcs51 -Wl-bHOME=0x1100 -Wl-r -o output/rtlinstaller.ihx output/crtstart.rel output/installer.rel
|
sdcc -mmcs51 -Wl-bHOME=0x1100 -Wl-r -o output/rtlinstaller.ihx output/crtstart.rel output/installer.rel
|
||||||
./output/updatebuilder -i output/rtlinstaller.ihx -o output/rtlplayground_oem_upgrade.bin ../output/rtlplayground.bin
|
cp ../output//rtlplayground.bin output/
|
||||||
|
./output//updatebuilder -i output/rtlinstaller.ihx output/rtlplayground.bin
|
||||||
Input file size: 524288
|
Input file size: 524288
|
||||||
Bytes read: 524288
|
Bytes read: 524288
|
||||||
EOF
|
EOF
|
||||||
Payload sum 1 is: 0x25100
|
Payload sum 1 is: 0x29d10
|
||||||
Payload sum 2 is: 0x25100
|
Payload sum 2 is: 0x29d10
|
||||||
Payload sum with header is: 0x264ec
|
Payload sum with header is: 0x2b0fc
|
||||||
Payload sum is: 0xf8fe94
|
Payload sum is: 0xad8a75
|
||||||
Header checksum is: 0x5a1
|
Header checksum is: 0x4c3
|
||||||
```
|
```
|
||||||
|
The resulting image can be found in `RTLPlayground/installer/output/rtlplayground.bin`
|
||||||
|
> [!CAUTION]
|
||||||
|
> DO NOT UPLOAD THE UPGADE IMAGE UNLESS YOU CAN MAKE A BACKUP USING A SOIC CLAMP OF THE
|
||||||
|
> ORIGINAL FIRMWARE!
|
||||||
|
|
||||||
## (3) Sandbox Usage with Ghidra (optional)
|
## Installation
|
||||||
|
|
||||||
You can play with the image using ghidra or flash real Switch Hardware. For
|
You can play with the image using ghidra or flash real Switch Hardware. For
|
||||||
ghidra see this information about [Ghidra images](ghidra.md).
|
ghidra see this information about [Ghidra images](ghidra.md).
|
||||||
|
|
||||||
## (4) Installation through the Web interface (software way)
|
|
||||||
|
|
||||||
Managed switches (OEM firmware of RTLplaygroud firmware) can be upgraded via the web interface.
|
|
||||||
Unmanaged switch cannot be flashed this way (see 5).
|
|
||||||
|
|
||||||
Go to "Firmware update" tab, select the correct file.
|
|
||||||
|
|
||||||
> [!IMPORTANT]
|
|
||||||
> If your device already runs RTLPlayground, you must upload the binary file /RTLPlayground/output/rtlplayground_Version_Machine.bin
|
|
||||||
> If your device is OEM, you must upload the binary file /RTLPlayground/installer/outputrtlplayground_oem_upgrade.bin
|
|
||||||
|
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> Check one more time that your device matches the machine type before flashing.
|
> NOTE THAT WHILE THIS PROCEDURE HAS BEEN SUCCESSFULLY TESTED ON ALL DEVICES ABOVE,
|
||||||
> Be shure you have a backup of the original firmware before diving in RTLPlaygroung.
|
> ABSOLUTELY NO GUARANTY CAN BE GIVEN THAT YOU WILL NOT DESTROY YOUR SWITCH,
|
||||||
|
> ANY OTHER EQUIPMENT INVOLVED OR HARM YOURSELF BY OPENING THE ELECTRONIC
|
||||||
|
> DEVICE. OPENING THE SWITCH WILL VOID ITS WARRANTY.
|
||||||
|
|
||||||
Finally, push the Upload File Button and you're done !
|
You can upload the upgrade image of managed switches via the web interface of the
|
||||||
|
original firmware just as if you were installing a firmware upgrade. However,
|
||||||
|
this is strongly discouraged, as you may brick your device, unless you can make
|
||||||
|
firmware backups via a SOIC clamp or soldered flash socket, first!
|
||||||
|
|
||||||
|
For unmanaged devices, the only way to install RTLPlayground is by flashing the
|
||||||
|
Flash memory directly.
|
||||||
|
|
||||||
## (5) Flashing the ROM directly (hardware way, but also only way to rescue)
|
You will need to open your switch to flash the image directly onto the flash chip,
|
||||||
|
which is done easiest using a SOIC-8 clip (alternatively you de-solder the
|
||||||
|
flash chip and install a SOIC adapter):
|
||||||
|
- Disconnect power from switch
|
||||||
|
- Attach the clip onto the flash chip
|
||||||
|
- Connect USB of flash programmer, the power LED on the switch will light
|
||||||
|
up, check cabling if not. Don't panic, mixing up GND and 3.3V does not
|
||||||
|
seem to destroy the switch (at leasts the on I did this to).
|
||||||
|
- Use IMSProg (flashrom should work, too) to detect the clip
|
||||||
|
- MAKE A BACKUP OF THE EXISTING FIRMWARE!
|
||||||
|
- then load the firmware into IMSProg
|
||||||
|
- and program flash
|
||||||
|
|
||||||
This procedure is the only way to flash unmanaged switches, if the ROM chip is large enough.
|
Now you can connect a serial cable to the UART port found on all the
|
||||||
This is also the only way to unbrick your device if something went wroong.
|
devices, set 8N1 @ 115200 baud and power up the switch.
|
||||||
|
|
||||||
> [!IMPORTANT]
|
The device will perform some examples and provide a minimal console, the
|
||||||
> You need a SOIC-8 clip to flash the ROM chip directly onboard.
|
documentation of which can be found in the source code rtlplayground.c`.
|
||||||
> Alternatively you can de-solder the flash chip and install a SOIC adapter).
|
|
||||||
> For flashing the chip directly, you must use the binary file /RTLPlayground/output/rtlplayground_Version_Machine.bin
|
|
||||||
|
|
||||||
> [!CAUTION]
|
## The web-interface
|
||||||
> As you need to open your switch case, consider that the warranty is gone.
|
The web-interface can be reached under the [default 192.168.10.247](http://192.168.10.247).
|
||||||
|
The default password is `1234`.
|
||||||
- Disconnect power from switch.
|
|
||||||
- Open the switch.
|
|
||||||
- Attach the clip onto the flash chip (Red line on Pin 1, Pin 1 has a point marker).
|
|
||||||
- Connect USB of flash programmer, the power LED on the switch will light up, check cabling if not.
|
|
||||||
- Don't panic, mixing up GND and 3.3V usually does not destroy the switch.
|
|
||||||
- Use IMSProg, Flashrom, or whatever Programmer to detect the chip.
|
|
||||||
- MAKE A BACKUP (DUMP) OF THE EXISTING FIRMWARE !
|
|
||||||
- ERASE THE ROM (BLANK) !
|
|
||||||
- Load the firmware into IMSProg.
|
|
||||||
- Flash is to the ROM chip.
|
|
||||||
- Disconect the clip from the ROM chip.
|
|
||||||
- You're done, ready for the first boot.
|
|
||||||
|
|
||||||
## (6) Connecting a serial interface (optional)
|
|
||||||
|
|
||||||
You can connect a serial cable to the UART port found on all the devices, set 8N1 @ 115200 baud.
|
|
||||||
|
|
||||||
## (7) Power Up
|
|
||||||
|
|
||||||
When you power up the switch, the device will perform some examples and provide a minimal console
|
|
||||||
(if wired to a serial interface), the documentation of which can be found in the source code rtlplayground.c`.
|
|
||||||
|
|
||||||
## (8) The web-interface
|
|
||||||
|
|
||||||
The web-interface can be reached under the [default 192.168.10.247](http://192.168.10.247) unless you
|
|
||||||
specified an IP adress in the config.txt before compilation.
|
|
||||||
|
|
||||||
> [!TIP]
|
|
||||||
> The default password is `1234`.
|
|
||||||
|
|
||||||
## (9) The command line
|
|
||||||
|
|
||||||
|
## The command line
|
||||||
The command line is very rudimentary and mostly for testing purposes.
|
The command line is very rudimentary and mostly for testing purposes.
|
||||||
The following is a boot-log with some examples:
|
The following is a boot-log with some examples:
|
||||||
```
|
```
|
||||||
@@ -302,6 +206,7 @@ PORT 04 1G
|
|||||||
<MODULE INSERTED> Rate: 67 Encoding: 01
|
<MODULE INSERTED> Rate: 67 Encoding: 01
|
||||||
Lightron Inc. WSPXG-ES3LC-IHA 0000
|
Lightron Inc. WSPXG-ES3LC-IHA 0000
|
||||||
|
|
||||||
|
|
||||||
> stat
|
> stat
|
||||||
CMD: stat
|
CMD: stat
|
||||||
Port State Link TxGood TxBad RxGood RxBad
|
Port State Link TxGood TxBad RxGood RxBad
|
||||||
@@ -319,40 +224,17 @@ Lightron Inc. WSPXG-ES3LC-IHA 0000
|
|||||||
CMD: sfp
|
CMD: sfp
|
||||||
Rate: 67 Encoding: 01
|
Rate: 67 Encoding: 01
|
||||||
Lightron Inc. WSPXG-ES3LC-IHA 0000
|
Lightron Inc. WSPXG-ES3LC-IHA 0000
|
||||||
```
|
|
||||||
|
|
||||||
## (10) Advanced configuration
|
|
||||||
|
|
||||||
You can configure more deeply the switch without the need of the console mode.
|
|
||||||
|
|
||||||
While in compilation part, you might write directly to config.txt file before making the binary firmware
|
|
||||||
|
|
||||||
```
|
```
|
||||||
nano config.txt
|
|
||||||
```
|
|
||||||
|
|
||||||
If you want to modify settings after the flash is done, go to the Advanced Settings tab in System Settings
|
|
||||||
|
|
||||||
<img width="1085" height="646" alt="ADVANCED SETTINGS" src="doc/images/advanced_settings.png" />
|
|
||||||
|
|
||||||
```
|
|
||||||
ip xxx.xxx.xxx.xxx = IP adress of the switch
|
|
||||||
gw yyy.yyy.yyy.yyy = IP adress of the gateway
|
|
||||||
netmask zzz.zzz.zzz.zzz = Network mask of the switch
|
|
||||||
port x name xxx = Name xxx the port number x
|
|
||||||
port z 1g = Set 1g speed for port z
|
|
||||||
igmp on/off = Turn IGMP on or off
|
|
||||||
```
|
|
||||||
[To be continue]
|
|
||||||
|
|
||||||
Enjoy playing!
|
Enjoy playing!
|
||||||
|
|
||||||
## (11) Other documents
|
## Other documents
|
||||||
|
The following documents give further documentation on specific features of
|
||||||
The following documents give further documentation on specific features of the RTL837x SoCs:
|
the RTL837x SoCs:
|
||||||
- [RTL8372/3 Feature support](doc/hardware.md)
|
- [RTL8372/3 Feature support](doc/hardware.md)
|
||||||
- [CPU Port](doc/CpuPort.md)
|
- [CPU Port](doc/CpuPort.md)
|
||||||
- [L2 learning](doc/l2.md)
|
- [L2 learning](doc/l2.md)
|
||||||
|
- [CPU Port](doc/CpuPort.md)
|
||||||
- [IGMP (IP-MC streaming)](doc/igmp.md)
|
- [IGMP (IP-MC streaming)](doc/igmp.md)
|
||||||
- [SFP+ ports](doc/sfp.md)
|
- [SFP+ ports](doc/sfp.md)
|
||||||
- [Trunking aka. port aggregation](doc/trunking.md)
|
- [Trunking aka. port aggregation](doc/trunking.md)
|
||||||
|
|||||||
@@ -1,211 +0,0 @@
|
|||||||
#include "cmd_parser.h"
|
|
||||||
#include "machine.h"
|
|
||||||
|
|
||||||
#pragma codeseg BANK2
|
|
||||||
#pragma constseg BANK2
|
|
||||||
|
|
||||||
// Position in the serial buffer
|
|
||||||
__xdata uint8_t l;
|
|
||||||
// Properties of currently edited command line in cmd_buffer[CMD_BUF_SIZE]
|
|
||||||
__xdata uint8_t cursor;
|
|
||||||
__xdata uint8_t cmd_line_len;
|
|
||||||
__xdata uint8_t current_cmdline[CMD_BUF_SIZE];
|
|
||||||
__xdata uint16_t history_editptr;
|
|
||||||
|
|
||||||
|
|
||||||
extern __xdata uint8_t cmd_history[CMD_HISTORY_SIZE];
|
|
||||||
extern __xdata uint16_t cmd_history_ptr;
|
|
||||||
|
|
||||||
void cmd_editor_init(void) __banked
|
|
||||||
{
|
|
||||||
l = sbuf_ptr; // We have printed out entered characters until l
|
|
||||||
cursor = 0;
|
|
||||||
cmd_line_len = 0;
|
|
||||||
cmd_available = 0;
|
|
||||||
history_editptr = 0xffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Allows editing the current command line held in cmd_buffer[CMD_BUF_SIZE] by
|
|
||||||
* identifying new characters typed or up to 4-byte escape sequences in the
|
|
||||||
* serial buffer ring sbuf[SBUF_SIZE].
|
|
||||||
* Upon detecting new characters or escape sequences, the cmd_buffer and the
|
|
||||||
* representation of the command line in the terminal are updated.
|
|
||||||
* To debug, the easist is to interpose a tty-interceptor between the physical
|
|
||||||
* serial device and a logical one created by interceptty:
|
|
||||||
* sudo interceptty -s 'ispeed 115200 ospeed 115200' /dev/ttyUSB0 /dev/tmpS
|
|
||||||
* picocom -b 115200 /dev/tmpS
|
|
||||||
*/
|
|
||||||
void cmd_edit(void) __banked
|
|
||||||
{
|
|
||||||
while (l != sbuf_ptr) {
|
|
||||||
if (sbuf[l] >= ' ' && sbuf[l] < 127) { // A printable character, copy to command line
|
|
||||||
// Reserve one byte for the terminating NUL written on Enter. When the
|
|
||||||
// line is full, drop the character but still fall through to advance the
|
|
||||||
// serial-ring read pointer below; a 'continue' here would spin forever.
|
|
||||||
if (cmd_line_len < CMD_BUF_SIZE - 1) {
|
|
||||||
write_char(sbuf[l]);
|
|
||||||
// Shift buffer to right
|
|
||||||
for (uint8_t i = cmd_line_len; i > cursor; i--)
|
|
||||||
cmd_buffer[i] = cmd_buffer[i-1];
|
|
||||||
// Insert char in comand buffer
|
|
||||||
cmd_buffer[cursor++] = sbuf[l];
|
|
||||||
cmd_line_len++;
|
|
||||||
// Print rest of line
|
|
||||||
for (uint8_t i = cursor; i < cmd_line_len; i++)
|
|
||||||
write_char(cmd_buffer[i]);
|
|
||||||
// Move backwards
|
|
||||||
for (uint8_t i = cursor; i < cmd_line_len; i++)
|
|
||||||
write_char('\010'); // BS works like cursor-left
|
|
||||||
}
|
|
||||||
} else if (sbuf[l] == '\033') { // ESC-Sequence
|
|
||||||
// Wait until we have at least 3 characters including the ESC character in the serial buffer
|
|
||||||
if (((sbuf_ptr + SBUF_SIZE - l) & SBUF_MASK) < 3)
|
|
||||||
continue;
|
|
||||||
if (((sbuf_ptr > l ? sbuf_ptr - l : SBUF_SIZE + sbuf_ptr - l) >= 4)
|
|
||||||
&& sbuf[l] == '\033' && sbuf[(l + 1) & SBUF_MASK] == '[' && sbuf[(l + 2) & SBUF_MASK] == '3' && sbuf[(l + 3) & SBUF_MASK] == '~') { // DEL
|
|
||||||
if (cursor < cmd_line_len) {
|
|
||||||
write_char('\033'); write_char('['); write_char('1'); write_char('P'); // Delete to end of line
|
|
||||||
cmd_line_len--;
|
|
||||||
for (uint8_t i = cursor; i < cmd_line_len; i++) {
|
|
||||||
cmd_buffer[i] = cmd_buffer[i+1];
|
|
||||||
write_char(cmd_buffer[i]);
|
|
||||||
}
|
|
||||||
for (uint8_t i = cursor; i < cmd_line_len; i++)
|
|
||||||
write_char('\010');
|
|
||||||
}
|
|
||||||
l += 4;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
continue;
|
|
||||||
} else if (sbuf[l] == '\033' && sbuf[(l + 1) & SBUF_MASK] == '[' && sbuf[(l + 2) & SBUF_MASK] == 'D') { // <CURSOR-LEFT>
|
|
||||||
if (cursor) {
|
|
||||||
write_char('\010'); // BS works like cursor-left
|
|
||||||
cursor--;
|
|
||||||
}
|
|
||||||
l += 3;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
continue;
|
|
||||||
} else if (sbuf[l] == '\033' && sbuf[(l + 1) & SBUF_MASK] == '[' && sbuf[(l + 2) & SBUF_MASK] == 'C') { // <CURSOR-RIGHT>
|
|
||||||
if (cursor < cmd_line_len) {
|
|
||||||
write_char('\033'); write_char('['); write_char('C');
|
|
||||||
cursor++;
|
|
||||||
}
|
|
||||||
l += 3;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
continue;
|
|
||||||
} else if (sbuf[l] == '\033' && sbuf[(l + 1) & SBUF_MASK] == '[' && sbuf[(l + 2) & SBUF_MASK] == 'A') { // <CURSOR-UP>
|
|
||||||
for (uint8_t i = 0; i < cmd_line_len; i++)
|
|
||||||
current_cmdline[i] = cmd_buffer[i];
|
|
||||||
current_cmdline[cmd_line_len] = 0;
|
|
||||||
__xdata uint16_t p;
|
|
||||||
if (history_editptr == 0xffff)
|
|
||||||
p = (cmd_history_ptr - 2) & CMD_HISTORY_MASK;
|
|
||||||
else
|
|
||||||
p = history_editptr;
|
|
||||||
// Move cursor to beginning of line
|
|
||||||
write_char('\033'); write_char('['); itoa(cursor + 2); write_char('D');
|
|
||||||
cursor = 0;
|
|
||||||
while (cmd_history[p] && cmd_history[p] != '\n') {
|
|
||||||
cursor++;
|
|
||||||
p--;
|
|
||||||
p &= CMD_HISTORY_MASK;
|
|
||||||
}
|
|
||||||
history_editptr = (p - 1) & CMD_HISTORY_MASK;
|
|
||||||
p = (p + 1) & CMD_HISTORY_MASK;
|
|
||||||
if (cursor) {
|
|
||||||
print_string("\033[2K> "); // Clear entire line: ^[[2K and print new prompt
|
|
||||||
for (uint8_t i = 0; i < cursor; i++) {
|
|
||||||
cmd_buffer[i] = cmd_history[p];
|
|
||||||
write_char(cmd_buffer[i]);
|
|
||||||
p = (p+1) & CMD_HISTORY_MASK;
|
|
||||||
}
|
|
||||||
cmd_line_len = cursor;
|
|
||||||
} else {
|
|
||||||
print_string("\033[2C"); // Move 2 right to start of editing space
|
|
||||||
}
|
|
||||||
l += 3;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
continue;
|
|
||||||
} else if (sbuf[l] == '\033' && sbuf[(l + 1) & SBUF_MASK] == '[' && sbuf[(l + 2) & SBUF_MASK] == 'B') { // <CURSOR-DOWN>
|
|
||||||
if (history_editptr != 0xffff) {
|
|
||||||
__xdata uint16_t p = (history_editptr + 2) & CMD_HISTORY_MASK;
|
|
||||||
// Move cursor to beginning of line
|
|
||||||
write_char('\033'); write_char('['); itoa(cursor + 2); write_char('D');
|
|
||||||
print_string("\033[2K> "); // Clear entire line: ^[[2K and print new prompt
|
|
||||||
uint8_t i = 0;
|
|
||||||
while (cmd_history[p] && cmd_history[p] != '\n') {
|
|
||||||
p = (p + 1) & CMD_HISTORY_MASK;
|
|
||||||
}
|
|
||||||
p = (p + 1) & CMD_HISTORY_MASK;
|
|
||||||
while (cmd_history[p] && cmd_history[p] != '\n') {
|
|
||||||
cmd_buffer[i] = cmd_history[p];
|
|
||||||
write_char(cmd_buffer[i++]);
|
|
||||||
p = (p + 1) & CMD_HISTORY_MASK;
|
|
||||||
}
|
|
||||||
history_editptr = (p - 1) & CMD_HISTORY_MASK;
|
|
||||||
if (!i) {
|
|
||||||
if (current_cmdline[i]) {
|
|
||||||
while (current_cmdline[i]) {
|
|
||||||
cmd_buffer[i] = current_cmdline[i];
|
|
||||||
write_char(cmd_buffer[i++]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
write_char('\033'); write_char('['); write_char('C');
|
|
||||||
}
|
|
||||||
history_editptr = 0xffff;
|
|
||||||
// Move cursor right
|
|
||||||
}
|
|
||||||
cmd_line_len = i;
|
|
||||||
cursor = 0;
|
|
||||||
// Move cursor again to beginning of line
|
|
||||||
write_char('\033'); write_char('['); itoa(i); write_char('D');
|
|
||||||
} else {
|
|
||||||
// If we are at the last entry of the history, just move the cursor to the end of the line
|
|
||||||
if (cursor < cmd_line_len) {
|
|
||||||
write_char('\033'); write_char('['); itoa(cmd_line_len - cursor); write_char('C');
|
|
||||||
}
|
|
||||||
cursor = cmd_line_len;
|
|
||||||
}
|
|
||||||
l += 3;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
continue;
|
|
||||||
} else { // An unknown or not yet complete Escape sequence: wait
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
} else if (sbuf[l] == 127 || sbuf[l] == 8) { // Backspace DEL or BS/^H
|
|
||||||
if (cursor > 0) {
|
|
||||||
write_char('\010');
|
|
||||||
for (uint8_t i = cursor; i < cmd_line_len; i++)
|
|
||||||
write_char(cmd_buffer[i]);
|
|
||||||
write_char(' '); // Overwrite end of line
|
|
||||||
// Move backwards n steps:
|
|
||||||
for (uint8_t i = cursor; i <= cmd_line_len; i++)
|
|
||||||
write_char('\010');
|
|
||||||
cursor--;
|
|
||||||
for (uint8_t i = cursor; i <= cmd_line_len; i++)
|
|
||||||
cmd_buffer[i] = cmd_buffer[i+1];
|
|
||||||
cmd_line_len--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If the command buffer is currently in use, we cannot copy to it
|
|
||||||
if (cmd_available)
|
|
||||||
break;
|
|
||||||
// Check whether return was pressed:
|
|
||||||
if (sbuf[l] == '\n' || sbuf[l] == '\r') {
|
|
||||||
write_char('\n');
|
|
||||||
cmd_buffer[cmd_line_len] = '\0';
|
|
||||||
// write_char('>'); print_string_x(cmd_buffer); write_char('<');
|
|
||||||
// If there is a command we print the prompt after execution
|
|
||||||
// otherwise immediately because there is nothing to execute
|
|
||||||
if (cmd_line_len)
|
|
||||||
cmd_available = 1;
|
|
||||||
else
|
|
||||||
print_cmd_prompt();
|
|
||||||
cursor = 0;
|
|
||||||
cmd_line_len = 0;
|
|
||||||
history_editptr = 0xffff;
|
|
||||||
}
|
|
||||||
l++;
|
|
||||||
l &= SBUF_MASK;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
#ifndef _CMD_EDITOR_H_
|
|
||||||
#define _CMD_EDITOR_H_
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
void cmd_editor_init(void) __banked;
|
|
||||||
void cmd_edit(void) __banked;
|
|
||||||
|
|
||||||
#endif
|
|
||||||
@@ -5,15 +5,11 @@
|
|||||||
|
|
||||||
#include "rtl837x_common.h"
|
#include "rtl837x_common.h"
|
||||||
|
|
||||||
extern __xdata uint8_t cmd_buffer[CMD_BUF_SIZE];
|
extern __xdata uint8_t cmd_buffer[SBUF_SIZE];
|
||||||
extern __xdata uint8_t cmd_available;
|
extern __xdata uint8_t cmd_available;
|
||||||
extern __xdata uint8_t err_status;
|
|
||||||
|
|
||||||
void cmd_tokenize(void) __banked;
|
uint8_t cmd_tokenize(void) __banked;
|
||||||
void cmd_parser(void) __banked;
|
void cmd_parser(void) __banked;
|
||||||
void execute_config(void) __banked;
|
void execute_config(void) __banked;
|
||||||
void execute_commands(__xdata uint8_t *p) __banked;
|
|
||||||
void print_sw_version(void) __banked;
|
void print_sw_version(void) __banked;
|
||||||
void clear_command_history(void) __banked;
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
.area HOME (CODE)
|
|
||||||
.area GSINIT0 (CODE)
|
|
||||||
.area GSINIT1 (CODE)
|
|
||||||
.area GSINIT2 (CODE)
|
|
||||||
.area GSINIT3 (CODE)
|
|
||||||
.area GSINIT4 (CODE)
|
|
||||||
.area GSINIT5 (CODE)
|
|
||||||
.area GSINIT (CODE)
|
|
||||||
.area GSFINAL (CODE)
|
|
||||||
.area CSEG (CODE)
|
|
||||||
|
|
||||||
|
|
||||||
.area HOME (CODE)
|
|
||||||
|
|
||||||
__sdcc_banked_call::
|
|
||||||
push _PSBANK
|
|
||||||
xch a,r0
|
|
||||||
push a
|
|
||||||
mov a,r1
|
|
||||||
push a
|
|
||||||
mov a,r2
|
|
||||||
anl a,#0x1f
|
|
||||||
mov _PSBANK, a
|
|
||||||
xch a, r0
|
|
||||||
ret
|
|
||||||
|
|
||||||
__sdcc_banked_ret::
|
|
||||||
pop _PSBANK
|
|
||||||
ret
|
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
.globl __start__stack
|
||||||
|
;--------------------------------------------------------
|
||||||
|
; Stack segment in internal ram
|
||||||
|
;--------------------------------------------------------
|
||||||
|
.area SSEG (DATA)
|
||||||
|
__start__stack:
|
||||||
|
.ds 1
|
||||||
|
|
||||||
|
.area VECTOR (CODE)
|
||||||
|
.globl __interrupt_vect
|
||||||
|
__interrupt_vect:
|
||||||
|
ljmp __sdcc_gsinit_startup
|
||||||
|
ljmp _isr_ext0 ; 0x03
|
||||||
|
.ds 5
|
||||||
|
ljmp _isr_timer0 ; 0x0b
|
||||||
|
.ds 5
|
||||||
|
ljmp _isr_ext1 ; 0x13
|
||||||
|
.ds 5
|
||||||
|
reti ; 0x1b TIMER 1 IRQ
|
||||||
|
.ds 7
|
||||||
|
ljmp _isr_serial ; 0x23
|
||||||
|
.ds 5
|
||||||
|
ljmp _isr_timer2 ; 0x2b TIMER 2 IRQ
|
||||||
|
.ds 5
|
||||||
|
reti ; 0x33 NOT used by DW8051
|
||||||
|
.ds 7
|
||||||
|
reti ; 0x3b Serial port 1 RX/TX IRQ
|
||||||
|
.ds 7
|
||||||
|
ljmp _isr_ext2 ; 0x43
|
||||||
|
.ds 5
|
||||||
|
ljmp _isr_ext3 ; 0x4b
|
||||||
|
|
||||||
|
.globl __start__stack
|
||||||
|
|
||||||
|
.area GSINIT0 (CODE)
|
||||||
|
|
||||||
|
__sdcc_gsinit_startup::
|
||||||
|
mov sp,#__start__stack - 1
|
||||||
|
|
||||||
|
.area GSFINAL (CODE)
|
||||||
|
ljmp _bootloader
|
||||||
|
|
||||||
|
__sdcc_banked_call::
|
||||||
|
push _PSBANK
|
||||||
|
xch a,r0
|
||||||
|
push a
|
||||||
|
mov a,r1
|
||||||
|
push a
|
||||||
|
mov a,r2
|
||||||
|
anl a,#0x1f
|
||||||
|
mov _PSBANK, a
|
||||||
|
xch a, r0
|
||||||
|
ret
|
||||||
|
|
||||||
|
__sdcc_banked_ret::
|
||||||
|
pop _PSBANK
|
||||||
|
ret
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
#include "uip.h"
|
#include "uip.h"
|
||||||
#include "uip/uip.h"
|
#include "uip/uip.h"
|
||||||
|
|
||||||
|
extern __code struct uip_eth_addr uip_ethaddr;
|
||||||
__xdata struct dhcp_state dhcp_state;
|
__xdata struct dhcp_state dhcp_state;
|
||||||
__xdata uip_ipaddr_t server;
|
__xdata uip_ipaddr_t server;
|
||||||
|
|
||||||
@@ -41,7 +42,6 @@ __xdata uip_ipaddr_t server;
|
|||||||
#define DHCP_REBIND_LEN 4
|
#define DHCP_REBIND_LEN 4
|
||||||
#define DHCP_CLIENT_ID 61
|
#define DHCP_CLIENT_ID 61
|
||||||
#define DHCP_CLIENT_ID_LEN 7
|
#define DHCP_CLIENT_ID_LEN 7
|
||||||
#define DHCP_HOSTNAME 12
|
|
||||||
#define DHCP_REQUEST_IP 50
|
#define DHCP_REQUEST_IP 50
|
||||||
#define DHCP_REQUEST_IP_LEN 4
|
#define DHCP_REQUEST_IP_LEN 4
|
||||||
#define DHCP_PARAMS 55
|
#define DHCP_PARAMS 55
|
||||||
@@ -72,13 +72,18 @@ struct dhcp_pkt {
|
|||||||
uint8_t cookie[4];
|
uint8_t cookie[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
#define DHCP_P ((__xdata struct dhcp_pkt *)&uip_buf[RTL_TAG_SIZE + VLAN_TAG_SIZE])
|
||||||
|
#define DHCP_OPT ((__xdata uint8_t *)&uip_buf[RTL_TAG_SIZE + VLAN_TAG_SIZE + sizeof (struct dhcp_pkt)])
|
||||||
|
*/
|
||||||
|
|
||||||
#define DHCP_P ((__xdata struct dhcp_pkt *)uip_appdata)
|
#define DHCP_P ((__xdata struct dhcp_pkt *)uip_appdata)
|
||||||
#define DHCP_OPT ((__xdata uint8_t *)(uip_appdata) + sizeof (struct dhcp_pkt))
|
#define DHCP_OPT ((__xdata uint8_t *)(uip_appdata) + sizeof (struct dhcp_pkt))
|
||||||
|
|
||||||
__xdata uint32_t long_value;
|
__xdata uint32_t long_value;
|
||||||
|
|
||||||
|
|
||||||
void dhcp_print_ip(__xdata uint8_t *a)
|
void dhcp_print_ip(uint8_t *a)
|
||||||
{
|
{
|
||||||
itoa(a[0]); write_char('.');
|
itoa(a[0]); write_char('.');
|
||||||
itoa(a[1]); write_char('.');
|
itoa(a[1]); write_char('.');
|
||||||
@@ -99,7 +104,7 @@ void dhcp_prepare_request(void)
|
|||||||
DHCP_P->flags = 0;
|
DHCP_P->flags = 0;
|
||||||
// Clear fields client_ip to bootp_file
|
// Clear fields client_ip to bootp_file
|
||||||
memset(DHCP_P->client_ip, 0, 224);
|
memset(DHCP_P->client_ip, 0, 224);
|
||||||
memcpy(DHCP_P->client_addr, uip_ethaddr.addr, 6);
|
memcpyc(DHCP_P->client_addr, uip_ethaddr.addr, 6);
|
||||||
DHCP_P->cookie[0] = 0x63;
|
DHCP_P->cookie[0] = 0x63;
|
||||||
DHCP_P->cookie[1] = 0x82;
|
DHCP_P->cookie[1] = 0x82;
|
||||||
DHCP_P->cookie[2] = 0x53;
|
DHCP_P->cookie[2] = 0x53;
|
||||||
@@ -112,25 +117,11 @@ void dhcp_addopt_client_id(void)
|
|||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_CLIENT_ID;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_CLIENT_ID;
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_CLIENT_ID_LEN;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_CLIENT_ID_LEN;
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_HW_TYPE_ETH;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_HW_TYPE_ETH;
|
||||||
memcpy(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 6);
|
memcpyc(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 6);
|
||||||
dhcp_state.opt_ptr += 6;
|
dhcp_state.opt_ptr += 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void dhcp_addopt_hostname(void)
|
|
||||||
{
|
|
||||||
uint8_t len = 0;
|
|
||||||
while (hostname[len])
|
|
||||||
len++;
|
|
||||||
if (!len)
|
|
||||||
return;
|
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_HOSTNAME;
|
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = len;
|
|
||||||
memcpy(&DHCP_OPT[dhcp_state.opt_ptr], hostname, len);
|
|
||||||
dhcp_state.opt_ptr += len;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void dhcp_addopt_request_ip(void)
|
void dhcp_addopt_request_ip(void)
|
||||||
{
|
{
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_REQUEST_IP;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_REQUEST_IP;
|
||||||
@@ -139,7 +130,7 @@ void dhcp_addopt_request_ip(void)
|
|||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[1];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[1];
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[2];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[2];
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[3];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.current_ip[3];
|
||||||
memcpy(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 4);
|
memcpyc(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -151,7 +142,7 @@ void dhcp_addopt_server_id(void)
|
|||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[1];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[1];
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[2];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[2];
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[3];
|
DHCP_OPT[dhcp_state.opt_ptr++] = dhcp_state.server[3];
|
||||||
memcpy(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 4);
|
memcpyc(&DHCP_OPT[dhcp_state.opt_ptr], uip_ethaddr.addr, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -167,7 +158,6 @@ void dhcp_send_discover(void)
|
|||||||
|
|
||||||
dhcp_addopt_client_id();
|
dhcp_addopt_client_id();
|
||||||
dhcp_addopt_request_ip();
|
dhcp_addopt_request_ip();
|
||||||
dhcp_addopt_hostname();
|
|
||||||
|
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_PARAMS;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_PARAMS;
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = 3;
|
DHCP_OPT[dhcp_state.opt_ptr++] = 3;
|
||||||
@@ -204,7 +194,6 @@ void dhcp_send_request(void)
|
|||||||
dhcp_addopt_client_id();
|
dhcp_addopt_client_id();
|
||||||
dhcp_addopt_request_ip();
|
dhcp_addopt_request_ip();
|
||||||
dhcp_addopt_server_id();
|
dhcp_addopt_server_id();
|
||||||
dhcp_addopt_hostname();
|
|
||||||
|
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_PARAMS;
|
DHCP_OPT[dhcp_state.opt_ptr++] = DHCP_PARAMS;
|
||||||
DHCP_OPT[dhcp_state.opt_ptr++] = 3;
|
DHCP_OPT[dhcp_state.opt_ptr++] = 3;
|
||||||
@@ -228,7 +217,7 @@ void dhcp_send_request(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ip_opt(__xdata uint8_t * ip)
|
void ip_opt(uint8_t * __xdata ip)
|
||||||
{
|
{
|
||||||
dhcp_state.opt_ptr++;
|
dhcp_state.opt_ptr++;
|
||||||
uint8_t len = DHCP_OPT[dhcp_state.opt_ptr++];
|
uint8_t len = DHCP_OPT[dhcp_state.opt_ptr++];
|
||||||
@@ -365,10 +354,8 @@ void dhcp_stop(void) __banked
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void dhcp_callback(uint16_t lport) __banked
|
void dhcp_callback(void) __banked
|
||||||
{
|
{
|
||||||
if (lport != HTONS(DHCPC_CLIENT_PORT)) // Is this call for us? If not, ignore it
|
|
||||||
return;
|
|
||||||
if (!dhcp_state.state)
|
if (!dhcp_state.state)
|
||||||
return;
|
return;
|
||||||
if (uip_closed()) {
|
if (uip_closed()) {
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
void dhcp_start(void) __banked;
|
void dhcp_start(void) __banked;
|
||||||
void dhcp_stop(void) __banked;
|
void dhcp_stop(void) __banked;
|
||||||
// void dhcp_periodic(void) __banked;
|
// void dhcp_periodic(void) __banked;
|
||||||
void dhcp_callback(uint16_t lport) __banked;
|
void dhcp_callback(void) __banked;
|
||||||
|
|
||||||
|
|
||||||
struct dhcp_state {
|
struct dhcp_state {
|
||||||
@@ -35,9 +35,14 @@ struct dhcp_state {
|
|||||||
uint32_t rebind;
|
uint32_t rebind;
|
||||||
uint32_t renewal;
|
uint32_t renewal;
|
||||||
|
|
||||||
__xdata struct uip_udp_conn *conn;
|
struct uip_udp_conn *conn;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct dhcp_state uip_udp_appstate_t;
|
typedef struct dhcp_state uip_udp_appstate_t;
|
||||||
|
|
||||||
|
/* Finally we define the application function to be called by uIP. */
|
||||||
|
#ifndef UIP_UDP_APPCALL
|
||||||
|
#define UIP_UDP_APPCALL dhcp_callback
|
||||||
|
#endif /* UIP_APPCALL */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
# Automation
|
|
||||||
|
|
||||||
## Upload
|
|
||||||
|
|
||||||
You can automate upload of the firmware via WEB with curl:
|
|
||||||
|
|
||||||
1. Authorize with /login endpoint and save cookie:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -c cookies.txt http://${SWITCH_IP}/login -d pwd=${PASSWORD} -i
|
|
||||||
```
|
|
||||||
|
|
||||||
This will save session cookie in cookies.txt
|
|
||||||
2. Send the firmware via form:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -b cookies.txt http://${SWITCH_IP}/upload -F "uploadedfile=@${FIRMWARE_FILE_PATH}" -i
|
|
||||||
```
|
|
||||||
|
|
||||||
You can expect that server will close connection, without responding to request.
|
|
||||||
Wait for SWITCH_IP to be responding again.
|
|
||||||
|
|
||||||
## Port status
|
|
||||||
|
|
||||||
In similar way to upload, you can fetch the json status of the ports.
|
|
||||||
|
|
||||||
1. Get the session cookie as for upload.
|
|
||||||
2. Hit the `/status.json` with cookie:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -b cookies.txt http://${SWITCH_IP}/status.json
|
|
||||||
```
|
|
||||||
@@ -1,238 +0,0 @@
|
|||||||
# Egress and Ingress Bandwidth Control
|
|
||||||
The RTL8372/3 allows to control the bandwidth of data transmitted (egress) and/or
|
|
||||||
admitted (ingress) at any given port. Once admitted, packets are internally switched
|
|
||||||
at wire-speed, since the backplane of the devices has a bandwidth of 60GBit/s.
|
|
||||||
|
|
||||||
The devices schedules transmission of packets by assigning packets to 8 queues
|
|
||||||
implemented in hardware per port, which share a total of 8Mbit of memory internal
|
|
||||||
to the switching part of the SoCs. Packets are assigned to the respective queues
|
|
||||||
based on the priority assigned to a packet, which can be based on various
|
|
||||||
properties of a packet such as IEEE 802.1P priority, DSCP value, physical port
|
|
||||||
number, destination or source MAC, Ether-Type-based, CVID, SVID, IPv4 source or
|
|
||||||
destination IP, IPv4/IPv6 TOS field, IPv6 Flow Label and even TCP/UDP
|
|
||||||
source/destination port. Once in a queue, packets are scheduled for egress
|
|
||||||
based on differnent configurable algorithms.
|
|
||||||
|
|
||||||
RTLPlayground currently allows only to control the bandwidth at ingress at a port
|
|
||||||
or just before packets leave a port. There is no control of the priority assignment
|
|
||||||
or queue scheduling mechanisms. The bandwidth can be controlled in steps of 16Kbit/s
|
|
||||||
from 16Kbit/s to 10Gbp/s.
|
|
||||||
|
|
||||||
The bandwidth control as currently implemented allows e.g. to assign a certain
|
|
||||||
share of bandwidth to an attached device (e.g. to share an uplink), or simulate
|
|
||||||
connections with low bandwidth and even bad connectivity with packet drops when
|
|
||||||
ingress is not controlled by Flow Control but by simply droping packets.
|
|
||||||
|
|
||||||
## Ingress/Egress control
|
|
||||||
The relevant registers for controlling Ingress and Egress at a port are:
|
|
||||||
```
|
|
||||||
#define RTL837X_IGBW_CTRL 0x4c10
|
|
||||||
#define IGBW_INC_BYPASS_PKT 0x100
|
|
||||||
#define IGBW_INC_IFG 0x80
|
|
||||||
#define IGBW_ADM_DHCP 0x20
|
|
||||||
#define IGBW_ADM_ARPREQ 0x10
|
|
||||||
#define IGBW_ADM_RMA 0x08
|
|
||||||
#define IGBW_ADM_BPDU 0x04
|
|
||||||
#define IGBW_ADM_RTKPKT 0x02
|
|
||||||
#define IGBW_ADM_IGMP 0x01
|
|
||||||
#define RTL837X_IGBW_PORT_CTRL 0x4C18
|
|
||||||
#define RTL837X_IGBW_PORT_FC_CTRL 0x4C8C
|
|
||||||
#define RTL837X_EGBW_PORT_CTRL 0x1c34
|
|
||||||
#define RTL837X_EGBW_CTRL 0x447c
|
|
||||||
#define EGBW_INC_IFG 0x02
|
|
||||||
#define EGBW_CPUMODE 0x01
|
|
||||||
```
|
|
||||||
`RTL837X_IGBW_CTRL/RTL837X_EGBW_CTRL` control the behaviour of the bandwidth control
|
|
||||||
at ingress and egress. The flags such as `IGBW_ADM_DHCP`control whether certain types
|
|
||||||
of packets such as DHCP are exempt from being ingress controlled. The
|
|
||||||
`IGBW_INC_IFG/EGBW_INC_IFG` flags control whether the Inter Frame Gaps are part of
|
|
||||||
the bandwidth being controlled. `EGBW_CPUMODE` controls whether packets generated
|
|
||||||
by the internal CPU are subject to egress control.
|
|
||||||
|
|
||||||
`RTL837X_IGBW_PORT_CTRL/RTL837X_EGBW_PORT_CTRL` configure the bandwidth for ingress
|
|
||||||
and egress at a port.
|
|
||||||
|
|
||||||
`RTL837X_IGBW_PORT_FC_CTRL` configures whether packets are bandwidth-controlled using
|
|
||||||
Flow Control (port-bit set), or simply dropped (port-bit clear).
|
|
||||||
|
|
||||||
## Ingress/Egress bandwidth API
|
|
||||||
The code currently provides the following functions:
|
|
||||||
```
|
|
||||||
void bandwidth_setup(void) __banked;
|
|
||||||
void bandwidth_ingress_set(uint8_t port, __xdata uint32_t bw) __banked;
|
|
||||||
void bandwidth_ingress_disable(uint8_t port) __banked;
|
|
||||||
void bandwidth_ingress_drop(uint8_t port) __banked;
|
|
||||||
void bandwidth_egress_set(uint8_t port, __xdata uint32_t bw) __banked;
|
|
||||||
void bandwidth_egress_disable(uint8_t port) __banked;
|
|
||||||
void bandwidth_status(uint8_t port) __banked;
|
|
||||||
```c
|
|
||||||
|
|
||||||
`bandwidth_setup()` is called at boot-time and configures excluding all special packets
|
|
||||||
that may be for the CPU and packets outgoing from the CPU to be excluded from bandwidth
|
|
||||||
control. IFG is not part of the bandwidth calculation.
|
|
||||||
|
|
||||||
`bandwidth_ingress_set()` enables ingress bandwidth control for a particular port given
|
|
||||||
the specified bandwidth. This also enabled Flow Control at a port.
|
|
||||||
|
|
||||||
`bandwidth_ingress_set()` enables egress bandwidth control for a particular port given
|
|
||||||
the specified bandwidth
|
|
||||||
|
|
||||||
`bandwidth_ingress_disable() / bandwidth_egress_disable()` disable ingress and egress
|
|
||||||
bandwidth control at a given port
|
|
||||||
|
|
||||||
`bandwidth_ingress_drop(port)` configures packets exceeding bandwidth limitations to
|
|
||||||
simply be dropped
|
|
||||||
|
|
||||||
`bandwidth_status(port)` shows the current bandwidth control status for a given port
|
|
||||||
|
|
||||||
## Bandwidth control configuration on the Serial Console
|
|
||||||
The following commands are provided on the serial console:
|
|
||||||
```
|
|
||||||
> bw [in|out|status] <port> [<hexvalue>|off|drop]
|
|
||||||
Configures or shows the status of bandwidth control
|
|
||||||
```
|
|
||||||
The bandwidth is given as the `<hexvalue>` in Kbit/s. Note that the control is only
|
|
||||||
possible at a granularity of 16 Kbit/s and the minimum value is also 16 Kbit/s. The
|
|
||||||
hexadecimal numbers must be given in full bytes, i.e. have an even number of digits.
|
|
||||||
|
|
||||||
To enable bandwidth control of ingress for physical port 2 to be set to 256 Kbit/s
|
|
||||||
do:
|
|
||||||
```
|
|
||||||
> bw in 2 0100
|
|
||||||
```
|
|
||||||
|
|
||||||
To drop packets when the bandwidth is exceeeded at port 2 do:
|
|
||||||
```
|
|
||||||
> bw in 2 drop
|
|
||||||
```
|
|
||||||
|
|
||||||
To disable bandwidth control for incoming packets on port 2 do:
|
|
||||||
```
|
|
||||||
> bw in 2 off
|
|
||||||
```
|
|
||||||
|
|
||||||
## Bandwidth configuration via the Web Interface
|
|
||||||
Not implemented, yet!
|
|
||||||
|
|
||||||
## A Test using iperf3
|
|
||||||
The following is and example how to test bandwidth control with a signle Linux device using
|
|
||||||
network namespaces to route packets between a client and a server on the same Linux device
|
|
||||||
through an external switch.
|
|
||||||
|
|
||||||
You will need 2 network intefaces on the linux device, say, 2 USB-Ethernet controllers called
|
|
||||||
eth0 and eth1:
|
|
||||||
```
|
|
||||||
$ sudo ip netns add client
|
|
||||||
$ sudo ip netns add server
|
|
||||||
|
|
||||||
$ sudo ip link set dev eth0 netns client
|
|
||||||
$ sudo ip link set dev eth1 netns server
|
|
||||||
|
|
||||||
$ sudo ip netns exec client ip link set dev eth0 up
|
|
||||||
$ sudo ip netns exec server ip link set dev eth1 up
|
|
||||||
|
|
||||||
$ sudo ip netns exec client ip addr add dev eth0 192.168.99.1/24
|
|
||||||
$ sudo ip netns exec server ip addr add dev eth1 192.168.99.2/24
|
|
||||||
|
|
||||||
$ sudo ip netns exec server iperf3 -s
|
|
||||||
```
|
|
||||||
This will start an iper3 server in the above shell.
|
|
||||||
|
|
||||||
In a different shell you can now run the iperf3 client against your server:
|
|
||||||
```
|
|
||||||
$ sudo ip netns exec client iperf -c 192.168.99.2
|
|
||||||
```
|
|
||||||
The LEDs on your switch where your network adapters are connected should start to flicker.
|
|
||||||
On a 1GBit connection, you should see:
|
|
||||||
```
|
|
||||||
$ sudo ip netns exec client iperf3 -c 192.168.99.2
|
|
||||||
Connecting to host 192.168.99.2, port 5201
|
|
||||||
[ 5] local 192.168.99.1 port 46776 connected to 192.168.99.2 port 5201
|
|
||||||
[ ID] Interval Transfer Bitrate Retr Cwnd
|
|
||||||
[ 5] 0.00-1.00 sec 114 MBytes 952 Mbits/sec 0 339 KBytes
|
|
||||||
[ 5] 1.00-2.00 sec 113 MBytes 946 Mbits/sec 0 356 KBytes
|
|
||||||
[ 5] 2.00-3.00 sec 112 MBytes 937 Mbits/sec 0 390 KBytes
|
|
||||||
[ 5] 3.00-4.00 sec 112 MBytes 942 Mbits/sec 0 390 KBytes
|
|
||||||
[ 5] 4.00-5.00 sec 112 MBytes 943 Mbits/sec 0 390 KBytes
|
|
||||||
[ 5] 5.00-6.00 sec 112 MBytes 944 Mbits/sec 0 390 KBytes
|
|
||||||
[ 5] 6.00-7.00 sec 112 MBytes 938 Mbits/sec 0 390 KBytes
|
|
||||||
[ 5] 7.00-8.00 sec 112 MBytes 942 Mbits/sec 0 410 KBytes
|
|
||||||
[ 5] 8.00-9.00 sec 113 MBytes 947 Mbits/sec 0 410 KBytes
|
|
||||||
[ 5] 9.00-10.00 sec 112 MBytes 940 Mbits/sec 0 410 KBytes
|
|
||||||
- - - - - - - - - - - - - - - - - - - - - - - - -
|
|
||||||
[ ID] Interval Transfer Bitrate Retr
|
|
||||||
[ 5] 0.00-10.00 sec 1.10 GBytes 943 Mbits/sec 0 sender
|
|
||||||
[ 5] 0.00-10.00 sec 1.10 GBytes 941 Mbits/sec receiver
|
|
||||||
```
|
|
||||||
|
|
||||||
Now, we limit ingress on port 1 (connected to eth0) to 4 MBit/s:
|
|
||||||
```> bw in 1 1000
|
|
||||||
bandwidth_ingress_set called, port 04
|
|
||||||
RTL837X_IGBW_PORT_CTRL:0x00100100
|
|
||||||
RTL837X_IGBW_PORT_FC_CTRL:0x00000010
|
|
||||||
```
|
|
||||||
|
|
||||||
We now get:
|
|
||||||
```
|
|
||||||
$ sudo ip netns exec client iperf3 -c 192.168.99.2
|
|
||||||
[ 5] local 192.168.99.1 port 43324 connected to 192.168.99.2 port 5201
|
|
||||||
[ ID] Interval Transfer Bitrate Retr Cwnd
|
|
||||||
[ 5] 0.00-1.00 sec 1.12 MBytes 9.43 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 1.00-2.00 sec 640 KBytes 5.24 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 2.00-3.00 sec 384 KBytes 3.15 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 3.00-4.00 sec 384 KBytes 3.15 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 4.00-5.00 sec 640 KBytes 5.24 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 5.00-6.00 sec 256 KBytes 2.10 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 6.00-7.00 sec 640 KBytes 5.24 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 7.00-8.00 sec 384 KBytes 3.15 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 8.00-9.00 sec 640 KBytes 5.24 Mbits/sec 0 160 KBytes
|
|
||||||
[ 5] 9.00-10.00 sec 256 KBytes 2.10 Mbits/sec 0 160 KBytes
|
|
||||||
- - - - - - - - - - - - - - - - - - - - - - - - -
|
|
||||||
[ ID] Interval Transfer Bitrate Retr
|
|
||||||
[ 5] 0.00-10.00 sec 5.25 MBytes 4.40 Mbits/sec 0 sender
|
|
||||||
[ 5] 0.00-10.16 sec 4.75 MBytes 3.92 Mbits/sec receiver
|
|
||||||
|
|
||||||
iperf Done.
|
|
||||||
```
|
|
||||||
Which is the 4Mbit/s we configured. There are no packet drops (retries) because
|
|
||||||
Flow Control is used to signal the Ethernet adapter on the incoming interface
|
|
||||||
(port 1 of the router) to slow down.
|
|
||||||
|
|
||||||
We can also configure a mere 256KBit/s and packet drop to simulate a bad connection:
|
|
||||||
```
|
|
||||||
> bw in 1 0100
|
|
||||||
bandwidth_ingress_set called, port 04
|
|
||||||
RTL837X_IGBW_PORT_CTRL:0x00100010
|
|
||||||
RTL837X_IGBW_PORT_FC_CTRL:0x00000010
|
|
||||||
|
|
||||||
> bw in 1 drop
|
|
||||||
RTL837X_IGBW_PORT_FC_CTRL:0x00000000
|
|
||||||
```
|
|
||||||
|
|
||||||
We now get:
|
|
||||||
```
|
|
||||||
$ sudo ip netns exec client iperf3 -c 192.168.99.2
|
|
||||||
Connecting to host 192.168.99.2, port 5201
|
|
||||||
[ 5] local 192.168.99.1 port 46060 connected to 192.168.99.2 port 5201
|
|
||||||
[ ID] Interval Transfer Bitrate Retr Cwnd
|
|
||||||
[ 5] 0.00-1.00 sec 384 KBytes 3.14 Mbits/sec 2 1.41 KBytes
|
|
||||||
[ 5] 1.00-2.00 sec 0.00 Bytes 0.00 bits/sec 54 1.41 KBytes
|
|
||||||
[ 5] 2.00-3.00 sec 0.00 Bytes 0.00 bits/sec 31 29.7 KBytes
|
|
||||||
[ 5] 3.00-4.00 sec 0.00 Bytes 0.00 bits/sec 2 1.41 KBytes
|
|
||||||
[ 5] 4.00-5.00 sec 0.00 Bytes 0.00 bits/sec 23 1.41 KBytes
|
|
||||||
[ 5] 5.00-6.00 sec 128 KBytes 1.05 Mbits/sec 16 14.1 KBytes
|
|
||||||
[ 5] 6.00-7.00 sec 0.00 Bytes 0.00 bits/sec 2 1.41 KBytes
|
|
||||||
[ 5] 7.00-8.00 sec 0.00 Bytes 0.00 bits/sec 11 1.41 KBytes
|
|
||||||
[ 5] 8.00-9.00 sec 128 KBytes 1.05 Mbits/sec 9 8.48 KBytes
|
|
||||||
[ 5] 9.00-10.00 sec 0.00 Bytes 0.00 bits/sec 2 1.41 KBytes
|
|
||||||
- - - - - - - - - - - - - - - - - - - - - - - - -
|
|
||||||
[ ID] Interval Transfer Bitrate Retr
|
|
||||||
[ 5] 0.00-10.00 sec 640 KBytes 524 Kbits/sec 152 sender
|
|
||||||
[ 5] 0.00-10.00 sec 256 KBytes 210 Kbits/sec receiver
|
|
||||||
|
|
||||||
iperf Done.
|
|
||||||
```
|
|
||||||
Which shows a large number of retries due to dropped packets and an average number
|
|
||||||
of received packets (the client sends the packets to the server, and they are sent
|
|
||||||
back to the client by the server) of 210 KBit/s, the number is higher for the transmitted
|
|
||||||
packets, because they may include dropped packets.
|
|
||||||
@@ -1,177 +0,0 @@
|
|||||||
### 2M-PCB23-V2.2
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
| Brand | Type | Managed | PCB | Flash | Chip RTL |
|
|
||||||
|----------|-----------------|---------|---------------|-------|-------------|
|
|
||||||
| keepLINK | KP-9000-9XHML-X | Yes | 2M-PCB23-V2.2 | 2M | 8373 + 8224 |
|
|
||||||
|
|
||||||
## PCB
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB23-V2.2-managed/2M-PCB23-V2.2-top.jpg" width="300" />
|
|
||||||
|
|
||||||
## Port overview
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
||||||
│ ┌──────────┐ │
|
|
||||||
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │ SFP(J13) │ │
|
|
||||||
│ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ PORT 9 │ │
|
|
||||||
│ │ PORT 1 │ │ PORT 2 │ │ PORT 3 │ │ PORT 4 │ │ PORT 5 │ │ PORT 6 │ │ PORT 7 │ │ PORT 8 │ │ MAC 8 │ O (PWR) │
|
|
||||||
│ O │ MAC 0 │ │ MAC 1 │ │ MAC 2 │ │ MAC 3 │ │ MAC 4 │ │ MAC 5 │ │ MAC 6 │ │ MAC 7 │ │ SerDes 1 │ O (SFP) │
|
|
||||||
│ RST └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └──────────┘ │
|
|
||||||
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
# Connectors
|
|
||||||
|
|
||||||
### J13, SFP connector
|
|
||||||
|
|
||||||
| SFP Pin | Signal | GPIO | Notes |
|
|
||||||
| ------- | ----------------- | ------ | ------------------------------ |
|
|
||||||
| 2 | TX_FAULT | ?? | |
|
|
||||||
| 3 | TX_DISABLE | ?? | |
|
|
||||||
| 4 | MODDEF2 – SDA | GPIO39 | |
|
|
||||||
| 5 | MODDEF1 – SCL | GPIO40 | |
|
|
||||||
| 6 | MODDEF0 – PRESENT | GPIO30 | "OE Exist" reported by `fiber` |
|
|
||||||
| 7 | RATE SEL | ?? | |
|
|
||||||
| 8 | LOS | GPIO37 | "OE LOS" reported by `fiber` |
|
|
||||||
| 9 | TO? | ?? | |
|
|
||||||
|
|
||||||
### T5, serial console
|
|
||||||
|
|
||||||
| pin | GPIO | Signal |
|
|
||||||
| --- | ------ | -------------- |
|
|
||||||
| 1 | GPIO32 | U0RXD (Input) |
|
|
||||||
| 2 | GND | Ground |
|
|
||||||
| 3 | GPIO31 | U0TXD (Output) |
|
|
||||||
|
|
||||||
### S1, unknown connector
|
|
||||||
|
|
||||||
| pin | GPIO | Signal |
|
|
||||||
| --- | -------- | -------------- |
|
|
||||||
| 1 | ??? | |
|
|
||||||
| x | | |
|
|
||||||
| 3 | ??? | |
|
|
||||||
| 4 | ??? | |
|
|
||||||
| 5 | ??? | |
|
|
||||||
|
|
||||||
Potentially slave interface or SMI.
|
|
||||||
|
|
||||||
### U7, flash memory
|
|
||||||
|
|
||||||
Flash chip is FM25Q16A.
|
|
||||||
|
|
||||||
### Reset button
|
|
||||||
|
|
||||||
GPIO54
|
|
||||||
|
|
||||||
## Register values
|
|
||||||
|
|
||||||
As probed with `regget` on stock firmware "V1.6".
|
|
||||||
|
|
||||||
### Model
|
|
||||||
|
|
||||||
| Name | Addr | Value |
|
|
||||||
| ------------------------- | ------ | ---------- |
|
|
||||||
| MODEL_NAME_INFO | 0x0004 | 0x83730000 |
|
|
||||||
| CHIP_MODE_INFO | 0x0008 | 0x00008000 |
|
|
||||||
| CHIP_INFO | 0x000C | 0x00300000 |
|
|
||||||
|
|
||||||
### GPIO
|
|
||||||
|
|
||||||
| Name | Addr | Value |
|
|
||||||
| ------------------------- | ------ | ---------- |
|
|
||||||
| GPIO_OUT0 | 0x003c | 0x10000000 |
|
|
||||||
| GPIO_OUT1 | 0x0040 | 0x00000010 |
|
|
||||||
| GPIO_OE0 | 0x004c | 0x10000000 |
|
|
||||||
| GPIO_OE1 | 0x0050 | 0x00000010 |
|
|
||||||
| BOND_INFO | 0x7f60 | 0x00000fff |
|
|
||||||
| STRAP_INFO | 0x7f64 | 0x0002f515 |
|
|
||||||
| IO_DRVING_0 | 0x7f68 | 0x00000000 |
|
|
||||||
| IO_DRVING_1 | 0x7f6c | 0x00000000 |
|
|
||||||
| IO_DRVING_2 | 0x7f70 | 0x00000000 |
|
|
||||||
| IO_SLEW_0 | 0x7f74 | 0x00000000 |
|
|
||||||
| IO_SLEW_1 | 0x7f78 | 0x00000000 |
|
|
||||||
| IO_SLEW_2 | 0x7f7c | 0x00000000 |
|
|
||||||
| IO_SMT_EN_0 | 0x7f80 | 0xffffffff |
|
|
||||||
| IO_SMT_EN_1 | 0x7f84 | 0xffffffff |
|
|
||||||
| IO_SMT_EN_2 | 0x7f88 | 0x0003ffff |
|
|
||||||
| IO_MUX_SEL_0 | 0x7f8c | 0x28000000 |
|
|
||||||
| IO_MUX_SEL_1 | 0x7f90 | 0x40000041 |
|
|
||||||
| IO_MUX_SEL_2 | 0x7f94 | 0x00000000 |
|
|
||||||
|
|
||||||
### LED
|
|
||||||
|
|
||||||
| Name | Addr | Value |
|
|
||||||
| ------------------------- | ------ | ---------- |
|
|
||||||
| LED_GLB_CTRL | 0x6520 | 0x0023e0f0 |
|
|
||||||
| LED3_0_SET3_2_CTRL1 | 0x6524 | 0xff001400 |
|
|
||||||
| LED3_0_SET1_0_CTRL1 | 0x6528 | 0x000f0000 |
|
|
||||||
| LED3_2_SET3_CTRL0 | 0x652c | 0x007f013f |
|
|
||||||
| LED1_0_SET3_CTRL0 | 0x6530 | 0x02000400 |
|
|
||||||
| LED3_2_SET2_CTRL0 | 0x6534 | 0x01400141 |
|
|
||||||
| LED1_0_SET2_CTRL0 | 0x6538 | 0x01440170 |
|
|
||||||
| LED3_2_SET1_CTRL0 | 0x653c | 0x18000041 |
|
|
||||||
| LED1_0_SET1_CTRL0 | 0x6540 | 0x0044017f |
|
|
||||||
| LED3_2_SET0_CTRL0 | 0x6544 | 0x00000044 |
|
|
||||||
| LED1_0_SET0_CTRL0 | 0x6548 | 0x00410175 |
|
|
||||||
| LED_PORT_SET_SEL_CTRL | 0x654c | 0x00010000 |
|
|
||||||
| SW_LED_LOAD | 0x6550 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_EN_CTRL[0..7] | 0x6554 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_EN_CTRL[8] | 0x6558 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[0] | 0x655c | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[1] | 0x6560 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[2] | 0x6564 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[3] | 0x6568 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[4] | 0x656c | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[5] | 0x6570 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[6] | 0x6574 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[7] | 0x6578 | 0x00000000 |
|
|
||||||
| LED_PORT_SW_CTRL[8] | 0x657c | 0x00000000 |
|
|
||||||
| LED_LOAD_LV1_10G | 0x6580 | 0x000fa000 |
|
|
||||||
| LED_LOAD_LV2_10G | 0x6584 | 0x00271000 |
|
|
||||||
| LED_LOAD_LV3_10G | 0x6588 | 0x004e2000 |
|
|
||||||
| LED_LOAD_LV1_5G | 0x658c | 0x000fa000 |
|
|
||||||
| LED_LOAD_LV2_5G | 0x6590 | 0x00271000 |
|
|
||||||
| LED_LOAD_LV3_5G | 0x6594 | 0x004e2000 |
|
|
||||||
| LED_LOAD_LV1_2P5G | 0x6598 | 0x000fa000 |
|
|
||||||
| LED_LOAD_LV2_2P5G | 0x659c | 0x00271000 |
|
|
||||||
| LED_LOAD_LV3_2P5G | 0x65a0 | 0x004e2000 |
|
|
||||||
| LED_LOAD_LV1_1G | 0x65a4 | 0x000fa000 |
|
|
||||||
| LED_LOAD_LV2_1G | 0x65a8 | 0x00271000 |
|
|
||||||
| LED_LOAD_LV3_1G | 0x65ac | 0x004e2000 |
|
|
||||||
| LED_LOAD_LV1_500M | 0x65b0 | 0x0007d000 |
|
|
||||||
| LED_LOAD_LV2_500M | 0x65b4 | 0x00138800 |
|
|
||||||
| LED_LOAD_LV3_500M | 0x65b8 | 0x00271000 |
|
|
||||||
| LED_LOAD_LV1_100M | 0x65bc | 0x00019000 |
|
|
||||||
| LED_LOAD_LV2_100M | 0x65c0 | 0x0003e800 |
|
|
||||||
| LED_LOAD_LV3_100M | 0x65c4 | 0x0007d000 |
|
|
||||||
| LED_LOAD_LV1_10M | 0x65c8 | 0x00002800 |
|
|
||||||
| LED_LOAD_LV2_10M | 0x65cc | 0x00006400 |
|
|
||||||
| LED_LOAD_LV3_10M | 0x65d0 | 0x0000c800 |
|
|
||||||
| LED_P_LOAD_CTRL | 0x65d4 | 0x00000000 |
|
|
||||||
| LED_GLB_ACTIVE | 0x65d8 | 0x3ffbedff |
|
|
||||||
| LED_GLB_IO_EN | 0x65dc | 0x77ffffff |
|
|
||||||
| LED_GLB_MUX_1 | 0c65e0 | 0x05102040 |
|
|
||||||
| LED_GLB_MUX_2 | 0x65e4 | 0x0c289206 |
|
|
||||||
| LED_GLB_MUX_3 | 0x65e8 | 0x1245038d |
|
|
||||||
| LED_GLB_MUX_4 | 0x65ec | 0x19616554 |
|
|
||||||
| LED_GLB_MUX_5 | 0x65f0 | 0x2079d71a |
|
|
||||||
| LED_GLB_MUX_6 | 0x65f4 | 0x000238a1 |
|
|
||||||
| LED_RLDP_CTRL_1 | 0x65f8 | 0x00000019 |
|
|
||||||
| LED_RLDP_CTRL_2 | 0x65fc | 0xffffffff |
|
|
||||||
| LED_RLDP_CTRL_3 | 0x6600 | 0x00006600 |
|
|
||||||
| LED_DUMY_0_ADDR | 0x6604 | 0x00000000 |
|
|
||||||
| LED_DUMY_1_ADDR | 0x6608 | 0x00000000 |
|
|
||||||
|
|
||||||
# LEDs
|
|
||||||
|
|
||||||
| Name | Components | Controlled by |
|
|
||||||
| ----------------------------- | --------------------------- | -------------------------- |
|
|
||||||
| RJ45 Right Green ("LINK/ACT") | | RJ45 LED0 |
|
|
||||||
| RJ45 Left Orange ("2.5G") | | RJ45 LED1 |
|
|
||||||
| RJ45 Left Green ("1G") | | RJ45 LED2 |
|
|
||||||
| "P" (PWR) | Top LED in "LED6" stack | probably pulled from Vcc |
|
|
||||||
| SFP Link ("9") | Bottom LED in "LED6" stack | SFP LED0 |
|
|
||||||
| ?? | D23 | SFP LED1 |
|
|
||||||
| ?? | D22 | SFP LED2 |
|
|
||||||
@@ -5,30 +5,13 @@
|
|||||||
|---|---|---|---|---|---|
|
|---|---|---|---|---|---|
|
||||||
| keepLINK | KP-9000-9XHML-X | Yes| 2M-PCB23-V3.1 | 2M| 8273N + 8224N |
|
| keepLINK | KP-9000-9XHML-X | Yes| 2M-PCB23-V3.1 | 2M| 8273N + 8224N |
|
||||||
|
|
||||||
## PCB
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB23-V3.1-managed/2M-PCB23-V3.1-top.jpeg" width="300" />
|
|
||||||
|
|
||||||
## Port overview
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
||||||
│ ┌──────────┐ │
|
|
||||||
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │ SFP (J4) │ │
|
|
||||||
│ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ PORT 9 │ │
|
|
||||||
│ │ PORT 1 │ │ PORT 2 │ │ PORT 3 │ │ PORT 4 │ │ PORT 5 │ │ PORT 6 │ │ PORT 7 │ │ PORT 8 │ │ MAC 8 │ O (PWR) │
|
|
||||||
│ O │ MAC 0 │ │ MAC 1 │ │ MAC 2 │ │ MAC 3 │ │ MAC 4 │ │ MAC 5 │ │ MAC 6 │ │ MAC 7 │ │ SerDes 1 │ O (SFP) │
|
|
||||||
│ RST └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └──────────┘ │
|
|
||||||
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
# Connectors
|
# Connectors
|
||||||
|`J4` SFP PINs | Signal | Component | GPIO | Notes |
|
|`J4` SFP PINs | Signal | Component | GPIO | Notes |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
|2| TX_FAULT | | --- | |
|
|2| TX_FAULT | | --- | |
|
||||||
|3| TX_DISABLE | | --- | Pull down - 0R |
|
|3| TX_DISABLE | | --- | Pull down - 0R |
|
||||||
|4| MODDEF2 – SDA | b-r273 | GPIO39-SDA4 | |
|
|4| MODDEF2 – SDA | b-r273 | GPIO39 | |
|
||||||
|5| MODDEF1 – SCL | b-r274 | GPIO40-SCL3 | |
|
|5| MODDEF1 – SCL | b-r274 | GPIO40 | |
|
||||||
|6| MODDEF0 – PRESENT | B-R275 | GPIO38 | |
|
|6| MODDEF0 – PRESENT | B-R275 | GPIO38 | |
|
||||||
|7| RATE SEL | | --- | |
|
|7| RATE SEL | | --- | |
|
||||||
|8| LOS | B-R276 | GPIO38 | |
|
|8| LOS | B-R276 | GPIO38 | |
|
||||||
@@ -48,26 +31,15 @@ Note: component numbering `<L>-<REFDES>-<SIDE>`
|
|||||||
| 3 | GPIO32 | U0RXD (Input) |
|
| 3 | GPIO32 | U0RXD (Input) |
|
||||||
| 4 | 3V3 | PWR |
|
| 4 | 3V3 | PWR |
|
||||||
|
|
||||||
### T7, Slave Interface
|
### T7
|
||||||
|`T7` pin|what|Signal|Components|
|
|`T7` pin|what|Signal|
|
||||||
|---|---|---|---|
|
|---|---|---|
|
||||||
| 1 | Slave Interface | Slave SCK/SCL/MDC/EE_SCL | U7-6 |
|
| 1 | GPIO | |
|
||||||
| 2 | GND | | |
|
| 2 | GND | |
|
||||||
| 3 | Slave Interface | Slave SDI/SDA/MDIO/EE_SDA | U7-5 |
|
| 3 | GPIO | |
|
||||||
| 4 | 3V3 | | |
|
| 4 | 3V3 | |
|
||||||
| 5 | GPIO? | | |
|
| 5 | GPIO | |
|
||||||
| 6 | GPIO? | | |
|
| 6 | GPIO | |
|
||||||
|
|
||||||
`U7` can be a standard I2C eeprom memory, like `24LC32`.
|
|
||||||
|
|
||||||
The Slave Interface allows an extenal host to controll the SOC even if the internal MCU is used.
|
|
||||||
Depending on the `IF_SEL` bootstrap resistors, this can me `I2C`, `SPI` or `SMI`.
|
|
||||||
On this device it is `I2C` on address `0b1011100` or `0x5c` (7-bit notation).
|
|
||||||
|
|
||||||
* I2c Read: must be a write_read opperation `<Dev-ADDR><RegAddr15:8><RegAddr7:0>` `<DevAddr><Data7:0><Data15:8><Data23:16><Data31:24>`.
|
|
||||||
* I2c Write: `<Dev-ADDR><RegAddr15:8><RegAddr7:0><DevAddr><Data7:0><Data15:8><Data23:16><Data31:24>`.
|
|
||||||
|
|
||||||
Example register `0x0004` return chip id `0x00, 0x00, 0x72, 0x83` = `0x83720000`.
|
|
||||||
|
|
||||||
### T9
|
### T9
|
||||||
|`T9` SMI | Signal | Component | GPIO | Notes |
|
|`T9` SMI | Signal | Component | GPIO | Notes |
|
||||||
@@ -95,23 +67,23 @@ Reset-line found at `T-D6-L`, `T-R83`, `T-R97`, `T-R94`, `T-R93` active-low.
|
|||||||
| HEX VAL. | GPIO | Component | What | | GPIO | Component | What |
|
| HEX VAL. | GPIO | Component | What | | GPIO | Component | What |
|
||||||
| -------- | ------ | ---- | ---- | ---- | ---- | ---- | ---- |
|
| -------- | ------ | ---- | ---- | ---- | ---- | ---- | ---- |
|
||||||
| 00000001 | GPIO00 | T-R34-R, P1-LED-YL |? | | GPIO32 | B-r126-r | U0RXD |
|
| 00000001 | GPIO00 | T-R34-R, P1-LED-YL |? | | GPIO32 | B-r126-r | U0RXD |
|
||||||
| 00000002 | GPIO01 | T-R99-R, P1-LED-GR |? | | GPIO33 | | |
|
| 00000002 | GPIO01 | T-R99-R, P1-LED-GR |? | | GPIO33 | | |
|
||||||
| 00000004 | GPIO02 | |? | | GPIO34 | B-R172, To RTL8224 | SMI-MDC0 |
|
| 00000004 | GPIO02 | |? | | GPIO34 | B-R172, To RTL8225 | Already driver HIGH INT? |
|
||||||
| 00000008 | GPIO03 | T-R113-R, P2-LED-GR |? | | GPIO35 | B-R173, To RTL8224 | SMI-MDIO0 |
|
| 00000008 | GPIO03 | T-R113-R, P2-LED-GR |? | | GPIO35 | B-R173, To RTL8225 | Easy to pulldown Reset? |
|
||||||
| 00000010 | GPIO04 | T-R115-R, P3-LED-YL |? | | GPIO36 | | | |
|
| 00000010 | GPIO04 | T-R115-R, P3-LED-YL |? | | GPIO36 || | |
|
||||||
| 00000020 | GPIO05 | T-R117-R, P3-LED-GR |? | | GPIO37 | To RTL8224 ?? | Already driver low | |
|
| 00000020 | GPIO05 | T-R117-R, P3-LED-GR |? | | GPIO37 | To RTL8225 | Already driver low I2C-SCL? | |
|
||||||
| 00000040 | GPIO06 | |? | | GPIO38 | sfp-6 via B-R275, sfp-8 via B-R276 | SFP-PRESENT |
|
| 00000040 | GPIO06 | |? | | GPIO38 | sfp-6 via B-R275, sfp-8 via B-R276 | |
|
||||||
| 00000080 | GPIO07 | |? | | GPIO39 | sfp-4, b-r273, B-r143 | I2C4-SDA |
|
| 00000080 | GPIO07 | |? | | GPIO39 | sfp-4, b-r273, B-r143 | |
|
||||||
| 00000100 | GPIO08 | | | | GPIO40 | T9-2, sfp-5 b-r274, B-r146 | I2C3-SCL |
|
| 00000100 | GPIO08 | | | | GPIO40 | T9-2, sfp-5 b-r274, B-r146 | SMI-MDC |
|
||||||
| 00000200 | GPIO09 | |LEDx[^1] | | GPIO41 | T9-1, B-r143 | | I2C3-SDA (Unused) |
|
| 00000200 | GPIO09 | |LEDx[^1] | | GPIO41 | T9-1, | SMI-MDO , B-r143 |
|
||||||
| 00000400 | GPIO10 | | | | GPIO42 | U6?8?-P6, T-R | SPI-MEMORY, CLK |
|
| 00000400 | GPIO10 | | | | GPIO42 | U6?8?-P6, T-R | SPI-MEMORY, CLK |
|
||||||
| 00000800 | GPIO11 | |LEDx[^1] | | GPIO43 | U6?8?-P5, T-R | SPI-MEMORY, DI,IO0 |
|
| 00000800 | GPIO11 | |LEDx[^1] | | GPIO43 | U6?8?-P5, T-R | SPI-MEMORY, DI,IO0 |
|
||||||
| 00001000 | GPIO12 | |LEDx[^1] | | GPIO44 | U6?8?-P2, T-R | SPI-MEMORY, DO,IO1 |
|
| 00001000 | GPIO12 | |LEDx[^1] | | GPIO44 | U6?8?-P2, T-R | SPI-MEMORY, DO,IO1 |
|
||||||
| 00002000 | GPIO13 | |LEDx[^1] | | GPIO45 | U6?8?-P1, T-R | SPI-MEMORY, CS |
|
| 00002000 | GPIO13 | |LEDx[^1] | | GPIO45 | U6?8?-P1, T-R | SPI-MEMORY, CS |
|
||||||
| 00004000 | GPIO14 | |LEDx[^1] | | GPIO46 | T10-6 | SPI0-SCK |
|
| 00004000 | GPIO14 | |LEDx[^1] | | GPIO46 | T10-6 | |
|
||||||
| 00008000 | GPIO15 | |LEDx[^1] | | GPIO47 | T10-2 | SPI0-SDA |
|
| 00008000 | GPIO15 | |LEDx[^1] | | GPIO47 | T10-2 | |
|
||||||
| 00010000 | GPIO16 | |LEDx[^1] | | GPIO48 | T10-4, J6 (BUTTON RESET) | SPI1-SCK |
|
| 00010000 | GPIO16 | |LEDx[^1] | | GPIO48 | T10-4, J6 (BUTTON RESET) | |
|
||||||
| 00020000 | GPIO17 | |LEDx[^1] | | GPIO49 | T10-1 | SPI1-SDA |
|
| 00020000 | GPIO17 | |LEDx[^1] | | GPIO49 | T10-1 | |
|
||||||
| 00040000 | GPIO18 | |LEDx[^1] | | GPIO50 | | |
|
| 00040000 | GPIO18 | |LEDx[^1] | | GPIO50 | | |
|
||||||
| 00080000 | GPIO19 | |LEDx[^1] | | GPIO51 | | |
|
| 00080000 | GPIO19 | |LEDx[^1] | | GPIO51 | | |
|
||||||
| 00100000 | GPIO20 | |LEDx[^1] | | GPIO52 | | |
|
| 00100000 | GPIO20 | |LEDx[^1] | | GPIO52 | | |
|
||||||
@@ -124,8 +96,8 @@ Reset-line found at `T-D6-L`, `T-R83`, `T-R97`, `T-R94`, `T-R93` active-low.
|
|||||||
| 08000000 | GPIO27 | |? | | GPIO59 | | |
|
| 08000000 | GPIO27 | |? | | GPIO59 | | |
|
||||||
| 10000000 | GPIO28 | | | | GPIO60 | | |
|
| 10000000 | GPIO28 | | | | GPIO60 | | |
|
||||||
| 20000000 | GPIO29 | | | | GPIO61 | | |
|
| 20000000 | GPIO29 | | | | GPIO61 | | |
|
||||||
| 40000000 | GPIO30 | RTL8224N Reset |RTL8224 | | GPIO62 | To RTL8224 | Already driver | |
|
| 40000000 | GPIO30 | |SFP-DETE | | GPIO62 | To RTL8225 | Already driver INT? | |
|
||||||
| 80000000 | GPIO31 | B-r129-r? |U0TXD | | GPIO63 | | |
|
| 80000000 | GPIO31 | B-r129-r? |U0TXD | | GPIO63 | | |
|
||||||
|
|
||||||
## GPIO Register Input value
|
## GPIO Register Input value
|
||||||
|
|
||||||
@@ -158,4 +130,4 @@ Chip can deliver up to 5A and the sweetspot is at 2A.
|
|||||||
So higher power SFP-modules should work.
|
So higher power SFP-modules should work.
|
||||||
|
|
||||||
|
|
||||||
[^1]: LEDs are found by just plugin a RJ45 connector and see with cmd `gpio` the status change. But the bit pattern for port 1,2 are diffrent from port 3,4.
|
[^1]: LEDs are found by just plugin a RJ45 connector and see with cmd `gpio` the status change. But the bit pattern for port 1,2 are diffrent from port 3,4.
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
# 2G040210GSM
|
|
||||||
|
|
||||||
The following is a documentation for the managed switch marked as `2G040210GSM`
|
|
||||||
and sold by Mokerlink.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**: 4-port 2.5G Web Managed Switch
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 2 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
- **Power**: 12V DC, 1A barrel connector
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- All 4 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware (use KP_9000_6XHML_X2 in machine.h if building yourself or the corresponding pre-compiled binary)
|
|
||||||
- untested due to missing Hardware: SFP+ ports equipped with 1G or 2.5G SFPs.
|
|
||||||
|
|
||||||
### Hardware overview
|
|
||||||
Front
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V1.1-managed/2M-PCB43-V1.1-front.jpeg" width="300" />
|
|
||||||
|
|
||||||
Label
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V1.1-managed/2M-PCB43-V1.1-label.jpeg" width="300" />
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: 2M-PCB43-V1.1
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V1.1-managed/2M-PCB43-V1.1-top.jpeg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V1.1-managed/2M-PCB43-V1.1-bottom.jpeg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J8` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | RX (Input) |
|
|
||||||
| 2 | TX (Output) |
|
|
||||||
| 3 | GND |
|
|
||||||
| 4 | 3V3 |
|
|
||||||
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
# FG-4GT-2SX_V2.0
|
|
||||||
|
|
||||||
Following is documentation for unmanaged switch marked as `FG-4GT-2SX_V2.0`.
|
|
||||||
|
|
||||||
Original software is running UART on 9600 baud rate.
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|
|
||||||
* Ruiying RY-4GT-2SX
|
|
||||||
|
|
||||||
<img src="photos/FG-4GT-2SX_V2.0/RY-4GT-2SX_label.jpg" width="300" />
|
|
||||||
|
|
||||||
## What works
|
|
||||||
|
|
||||||
- All four 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps
|
|
||||||
- Both SFP ports supporting 1G, 2.5G and 10G modules
|
|
||||||
- LEDs
|
|
||||||
|
|
||||||
## PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
|
|
||||||
- Top silkscreen: FG-4GT-2SX_V2.0
|
|
||||||
|
|
||||||
Front panel
|
|
||||||
|
|
||||||
<img src="photos/FG-4GT-2SX_V2.0/chassis-front.jpg" width="300" />
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/FG-4GT-2SX_V2.0/PCB-top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/FG-4GT-2SX_V2.0/PCB-bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
# FOXNEO FNS-1200P
|
|
||||||
|
|
||||||
RTL8372-based 4×2.5G PoE+ + 2×SFP+ unmanaged switch.
|
|
||||||
|
|
||||||
Using SPI clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Manufacturer**: FOXNEO
|
|
||||||
- **Model**: FNS-1200P
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps with PoE+
|
|
||||||
- 2 × SFP+: 1G / 2.5G / 10G
|
|
||||||
|
|
||||||
### What works
|
|
||||||
|
|
||||||
- All four 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps (PoE+ is not configurable via RTLPlayground)
|
|
||||||
- Both SFP+ ports supporting 1G, 2.5G and 10G modules
|
|
||||||
- LEDs: amber (2.5G) and green (1G/100M/10M) per copper port; combined link/act on SFP ports
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-K0402W-U13-V2.0 / DIP-K0402WB-V2.0
|
|
||||||
|
|
||||||
**Key components**
|
|
||||||
- U3: SPI NOR flash, 2 MiB
|
|
||||||
- U7: unpopulated SOP8 footprint — I2C bus (RTL8372 slave at 0x5c) is accessible from its pads, useful for register dumps
|
|
||||||
- S1: unpopulated slide switch footprint (three through-holes used as serial console)
|
|
||||||
|
|
||||||
Front panel
|
|
||||||
|
|
||||||
<img src="photos/FNS-1200P/chassis-front.jpg" width="400" />
|
|
||||||
|
|
||||||
Top side (PCB)
|
|
||||||
|
|
||||||
<img src="photos/FNS-1200P/PCB-top.jpg" width="300" />
|
|
||||||
|
|
||||||
### Port layout
|
|
||||||
|
|
||||||
| Front panel position | Logical port | Physical port | Type |
|
|
||||||
|----------------------|--------------|---------------|---------|
|
|
||||||
| SFP left | 8 | 5 | SFP+ |
|
|
||||||
| RJ45 1 | 4 | 1 | Copper |
|
|
||||||
| RJ45 2 | 5 | 2 | Copper |
|
|
||||||
| RJ45 3 | 6 | 3 | Copper |
|
|
||||||
| RJ45 4 | 7 | 4 | Copper |
|
|
||||||
| SFP right | 3 | 6 | SFP+ |
|
|
||||||
|
|
||||||
### Serial console
|
|
||||||
|
|
||||||
The PCB has three unpopulated through-holes intended for a slide switch, directly connected to UART0.
|
|
||||||
Numbered from the left (SFP port side), the pinout is:
|
|
||||||
|
|
||||||
| Position (left→right) | Signal | GPIO |
|
|
||||||
|-----------------------|--------|--------------------------|
|
|
||||||
| 1 (leftmost) | RX | GPIO32\_UART0\_RX (32) |
|
|
||||||
| 2 (middle) | GND | GND |
|
|
||||||
| 3 (rightmost) | TX | GPIO31\_UART0\_TX (31) |
|
|
||||||
|
|
||||||
- **Settings**: 115200 baud / 8N1 / 3.3V TTL
|
|
||||||
- Connect a USB-TTL adapter: adapter TX → pin 1, GND → pin 2, adapter RX → pin 3
|
|
||||||
|
|
||||||
### LED configuration
|
|
||||||
|
|
||||||
Copper ports use LED SET0, SFP ports use LED SET1.
|
|
||||||
|
|
||||||
| SET | LED0 | LED2 |
|
|
||||||
|------|--------------------------------------------------|---------------------------------------------------|
|
|
||||||
| SET0 | Amber — lights on 2.5G link | Green — lights on 1G / 100M / 10M link |
|
|
||||||
| SET1 | All speeds — lights on any link with activity | — |
|
|
||||||
|
|
||||||
LED pad to physical port mapping:
|
|
||||||
|
|
||||||
| GPIO pads | Port |
|
|
||||||
|-----------|-------------------------|
|
|
||||||
| GPIO8–11 | Physical port 5 (left SFP) |
|
|
||||||
| GPIO12–14 | Physical port 1 (RJ45 1) |
|
|
||||||
| GPIO15–17 | Physical port 2 (RJ45 2) |
|
|
||||||
| GPIO18–20 | Physical port 3 (RJ45 3) |
|
|
||||||
| GPIO21–23 | Physical port 4 (RJ45 4) |
|
|
||||||
| GPIO24–27 | Physical port 6 (right SFP) |
|
|
||||||
|
|
||||||
### SFP GPIO assignments
|
|
||||||
|
|
||||||
| SFP | pin\_detect (ModAbs) | pin\_los | SerDes | I2C SDA | I2C SCL |
|
|
||||||
|------------------|-----------------------------|------------------------|--------|----------------------|--------------------------|
|
|
||||||
| Left (logical 8) | GPIO30\_ACL\_BIT3\_EN | GPIO37 | SDS1 | GPIO39\_I2C\_SDA4 | GPIO40\_I2C\_SCL3\_MDC1 |
|
|
||||||
| Right (logical 3)| GPIO50\_I2C\_SCL2\_UART1\_TX | GPIO51\_I2C\_SDA2\_UART1\_RX | SDS0 | GPIO41\_I2C\_SDA3\_MDIO1 | GPIO40\_I2C\_SCL3\_MDC1 |
|
|
||||||
|
|
||||||
GPIO assignments were verified by observing GPIO state changes during SFP module insertion/removal
|
|
||||||
and cross-checked against an original firmware register dump.
|
|
||||||
`pin_tx_disable` is GPIO\_NA on both ports (original firmware keeps all GPIOs as inputs).
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
# Hisource Hi-K0801WS
|
|
||||||
|
|
||||||
Following is documentation for unmanaged switch marked as `Hi-K0801WS`.
|
|
||||||
|
|
||||||
Using SPI clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**: 2.5G Ethernet Switch
|
|
||||||
- **Model**: Hi-K0801WS
|
|
||||||
- **Ports**:
|
|
||||||
- 8 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 1 × SFP: 1000 / 2500 / 10000 Mbps
|
|
||||||
|
|
||||||
### What works (expected from label + similar devices)
|
|
||||||
|
|
||||||
- All eight 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps
|
|
||||||
- SFP port supporting 1G, 2.5G and 10G modules
|
|
||||||
- LEDs
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-KO801W-V2.0 / DIP-KO801WS-V2.0
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/K0801W-V2.0-unmanaged\PCB-top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/K0801W-V2.0-unmanaged\PCB-bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# K0501W V2.0
|
|
||||||
|
|
||||||
This board appears for example in the Davuaz Da-K6501W switch.
|
|
||||||
|
|
||||||
The general design of the board is similar to Hi-K0402WS V3.0.
|
|
||||||
However, there are several differences:
|
|
||||||
- One SFP port is replaced by a RTL8221B 2.5G PHY
|
|
||||||
- Only one LED is populated for the SFP port
|
|
||||||
- No mode switch and only one flash chip
|
|
||||||
- Older design using RTL8372 instead of RTL8372N (which also means different GPIO and LED configuration)
|
|
||||||
- Like earlier versions of the K0402W(S) board, there is no UART
|
|
||||||
|
|
||||||
All ports and LEDs are supported.
|
|
||||||
Installation is possible using a flash programmer.
|
|
||||||
The BoyaMicro 25Q16BSSIG flash chip is supported by flashprog with chip name "B.25D16AS/BY25Q16BS/BY25Q16ES".
|
|
||||||
|
|
||||||
## PCB pictures
|
|
||||||
|
|
||||||
The board is marked `PCB-K0501W-V2.0 DIP-K0501WS-V2.0`.
|
|
||||||
|
|
||||||
<img src="photos/K0501W_V2_0/pcb-top.jpg" width="300" />
|
|
||||||
|
|
||||||
<img src="photos/K0501W_V2_0/pcb-bottom.jpg" width="300" />
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
# Keeplink KP-9000-6XH-X2
|
|
||||||
|
|
||||||
Following is documentation for unmanaged switch marked as `KP-9000-6XH-X2`.
|
|
||||||
|
|
||||||
Using SPI clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**: 4X 2.5G RJ45 Port + 2 X 10G SFP+ Port
|
|
||||||
- **Model**: KP-9000-6XH-X2
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 2 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
|
|
||||||
### What works
|
|
||||||
|
|
||||||
- All four 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps
|
|
||||||
- SFP port with 10G modules
|
|
||||||
- LEDs
|
|
||||||
- untested due to missing Hardware: SFP+ ports equipped with 1G or 2.5G SFPs.
|
|
||||||
|
|
||||||
### Hardware overview
|
|
||||||
|
|
||||||
Front side:
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V2.1-unmanaged/KP-9000-6XH-X2-front.jpg" width="600" />
|
|
||||||
|
|
||||||
Label:
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V2.1-unmanaged/KP-9000-6XH-X2-label.jpg" width="600" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: 2M-PCB43-V2.1
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V2.1-unmanaged/2M-PCB43-V2.1-top.jpg" width="600" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/2M-PCB43-V2.1-unmanaged/2M-PCB43-V2.1-bottom.jpg" width="600" />
|
|
||||||
|
|
||||||
## Reset Button
|
|
||||||
|
|
||||||
There's an unpopulated Reset button on the front left side of the PCB.
|
|
||||||
It can easily be soldered, you'll need an 4.5mmx4.5mm 90° button switch with a 3-pin footprint.
|
|
||||||
I got mine here: https://de.aliexpress.com/item/1005007295346702.html
|
|
||||||
The front case has already the hole in the metal case, you just have to punch a hole through the foil.
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
# PCB-K0402WS-V3.0
|
|
||||||
|
|
||||||
Following is documentation for a variety of unmanaged switch internally marked as `PCB-K0402WS-V3.0`. They are sold under many brands.
|
|
||||||
|
|
||||||
Original software is running UART on 9600 baud rate.
|
|
||||||
|
|
||||||
Note during opening the device: there might be a hidden 5th screw on the back
|
|
||||||
of the device just above the big label, might be covered by a QC sticker.
|
|
||||||
|
|
||||||
### Brands
|
|
||||||
|
|
||||||
* Hisource Hi-K0402WS
|
|
||||||
|
|
||||||
<img src="photos/PCB-K0402WS-V3.0/HiSource_HI-K0402WS.jpg" width="300" />
|
|
||||||
|
|
||||||
* Ztyuav Z-QWYT0402
|
|
||||||
|
|
||||||
<img src="photos/PCB-K0402WS-V3.0/Ztyuav_Z-QWYT0402.jpg" width="300" />
|
|
||||||
|
|
||||||
<img src="photos/PCB-K0402WS-V3.0/Ztyuav_Z-QWYT0402_label.jpg" width="300" />
|
|
||||||
|
|
||||||
### Programming
|
|
||||||
|
|
||||||
Using SPI clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
The board has two flash chips `BY25Q16BS` with 16M-bit size. The front switch, switches between the two flash chips.
|
|
||||||
These can be programed independently by using said switch - so it is e.g. possible to run the original and new firmware in parallel.
|
|
||||||
The switch actually controls the HOLD line of each flash chip, and toggling the switch results in a reboot.
|
|
||||||
|
|
||||||
If the programming clip keeps HOLD not connected, the flashing will commence on whatever the switch selected, regardless on which chip was clipped.
|
|
||||||
|
|
||||||
For the initial flash (at least with flashrom), the bin file produced by the build is much smaller than the flash chip, it is suggested to pad the file to keep flashrom happy: `truncate -s 2097152 rtlplayground-*-PCB_K0402WS_V3.bin`. Note: do not then proceed to use this resulting padded file for the web flashing (as it bricks the device), use the original unpadded .bin.
|
|
||||||
|
|
||||||
### What works (expected from label + similar devices)
|
|
||||||
|
|
||||||
- All four 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps
|
|
||||||
- Both SFP ports supporting 1G, 2.5G and 10G modules
|
|
||||||
- LEDs
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-KO4022W-V3.0 / DIP-KO4022WS-V3.0
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/PCB-K0402WS-V3.0/PCB-top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/PCB-K0402WS-V3.0/PCB-bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### T2, serial console
|
|
||||||
|
|
||||||
| `J2` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | 3V3 |
|
|
||||||
| 2 | RX (Input) |
|
|
||||||
| 3 | TX (Output) |
|
|
||||||
| 4 | GND |
|
|
||||||
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
Board has two supply rails. `0.95` and `3.3` volt.
|
|
||||||
|
|
||||||
### `0.95` Core Voltage
|
|
||||||
|
|
||||||
Voltage is made by a `Techcode TD1720` .
|
|
||||||
|
|
||||||
### `3.3` Voltage
|
|
||||||
|
|
||||||
Voltage is created by chip marked as `Techcode TD1720`.
|
|
||||||
|
|
||||||
**There seems to have been a miscalculation when choosing the inductor and the device is ~25% more efficient with an 5V power supply.**
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
# Steamemo IG204-V1
|
|
||||||
|
|
||||||
Following is documentation for unmanaged switch marked as `IG204-V1`.
|
|
||||||
|
|
||||||
Using SPI clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**: 2.5G Ethernet Switch
|
|
||||||
- **Model**: IG204 V1
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 2 × SFP: 1000 / 2500 / 10000 Mbps
|
|
||||||
|
|
||||||
### What works (expected from label + similar devices)
|
|
||||||
|
|
||||||
- Four 2.5GBASE-T RJ45 ports at 10/100/1000/2500 Mbps
|
|
||||||
- Two SFP ports supporting 1G, 2.5G and 10G modules
|
|
||||||
- LEDs
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PB-2131
|
|
||||||
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/STEAMEMO_IG204_V1/PCB-top.jpg" width="600" />
|
|
||||||
|
|
||||||
### Connectors
|
|
||||||
### T7, serial console
|
|
||||||
|
|
||||||
| `T7` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | TX (Output) |
|
|
||||||
| 2 | GND |
|
|
||||||
| 3 | RX (Input) |
|
|
||||||
| 4 | 3V3 |
|
|
||||||
|
|
||||||
### Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
# SWTG018AS-A V2.0
|
|
||||||
## Brands
|
|
||||||
| Brand | Type |Managed| PCB | Flash | Chip RTL |
|
|
||||||
|--------|------------------|-------|------------------|-----------------|---------------|
|
|
||||||
| Ampcom | SWTG018AS-A V2.0 | No | SWTG018AS-A V2.0 | 2MB | 8273N + 8224N |
|
|
||||||
| Horaco | HC-SWTGW218AS-A | Yes | SWTG018AS-A V2.0 | 2MB(25Q16JVSIQ) | 8273N + 8224N |
|
|
||||||
|
|
||||||
|
|
||||||
The following is a documentation for the unmanaged switch marked as `SWTG018AS-A V2.0`.
|
|
||||||
It is e.g. sold under the Ampcom brand, but no branh-markings are found on the device.
|
|
||||||
|
|
||||||
The original software is running UART on 9600 baud rate.
|
|
||||||
|
|
||||||
Using a SOIC clamp in-board is the only method for initial installation.
|
|
||||||
|
|
||||||
The board has a single flash chips `BS` with 4M-bit size. The front switch, switches between the two flash chips.
|
|
||||||
These can be programed independently by using said switch - so it is e.g. possible to run the original and new firmware in parallel.
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**: 9-Ports 2.5G Ethernet Switch
|
|
||||||
- **Ports**:
|
|
||||||
- 8 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 1 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
- **Power**: 12V DC, 1A barrel connector
|
|
||||||
|
|
||||||
<img src="photos/SWTG018AS_A_V_2_0/label.jpg" width="300" />
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- All 8 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: SWTG018AS-A-V2.0.1_19649
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/SWTG018AS_A_V_2_0/pcb_top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/SWTG018AS_A_V_2_0/pcb_bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | 3V3 |
|
|
||||||
| 2 | GND |
|
|
||||||
| 3 | RX (Input) |
|
|
||||||
| 4 | TX (Output) |
|
|
||||||
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
### SWTG024AS-A-V2.0.1_4C_2SFP
|
|
||||||
It is highly similar to SWTG024AS-V2.0, with the only difference being the GPIO configuration for the SFP port.
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|Brand|Type|Managed|PCB|Flash|Chip RTL|
|
|
||||||
|---|---|---|---|---|---|
|
|
||||||
| Horaco | ZX-SG4T2 | | PCB-SWTG024AS-A-V2.0.1_19650 | P25D40SH | ??? |
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**:
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 2 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-A-V2_0_1_19650/horaco-zx-sg4t2-label.jpg" width="300" />
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- ALL 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-SWTG024AS-A-V2.0.1_19650
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-A-V2_0_1_19650/horaco-zx-sg4t2-pcb-top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-A-V2_0_1_19650/horaco-zx-sg4t2-pcb-bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | 3V3 |
|
|
||||||
| 2 | GND |
|
|
||||||
| 3 | RX (Input) |
|
|
||||||
| 4 | TX (Output) |
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
### SWTG024AS-A-V2.0.1_5C_1SFP
|
|
||||||
It is highly similar to SWTG024AS-V2.0, with the only difference being the GPIO configuration for the SFP port.
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|Brand|Type|Managed|PCB|Flash|Chip RTL|
|
|
||||||
|---|---|---|---|---|---|
|
|
||||||
| Horaco | HC-SWTGW215AS | | PCB-SWTG024AS-A-V2.0.1_19650 | W25Q16JV | 8272N |
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**:
|
|
||||||
- **Ports**:
|
|
||||||
- 5 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 1 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
|
|
||||||
<!-- <img src="" width="300" /> -->
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- ALL 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-SWTG024AS-A-V2.0.1_19650
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<!-- <img src="" width="300" /> -->
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<!-- <img src="" width="300" /> -->
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | 3V3 |
|
|
||||||
| 2 | GND |
|
|
||||||
| 3 | RX (Input) |
|
|
||||||
| 4 | TX (Output) |
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
### SWTG024AS-V2.0
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|Brand|Type|Managed|PCB|Flash|Chip RTL|
|
|
||||||
|---|---|---|---|---|---|
|
|
||||||
| hongyavision | LG-SG5T1 | No | PCB-SWTG024AS-V2.0_16895 | 25Q40 | 8272 |
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**:
|
|
||||||
- **Ports**:
|
|
||||||
- 5 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 1 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
- **Power**: 12V DC, 1A 5525 connector
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-V2.0/label.jpg" width="300" />
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- ALL 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware
|
|
||||||
- Online update does not work with 512KiB flash.
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-SWTG024AS-V2.0
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-V2.0/pcb_top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/SWTG024AS-V2.0/pcb_bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | GND |
|
|
||||||
| 2 | RX (Input) |
|
|
||||||
| 3 | TX (Output) |
|
|
||||||
|
|
||||||
Note,`R52`、`R53`may not be installed.You need to bridge them using either solder or resistors.
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
@@ -9,8 +9,8 @@ Also the RJ45 connectors can be all plastic/non-shielded or with metal shielding
|
|||||||
|Brand|Type|Managed|PCB|PCB Label|Flash|Chip RTL|
|
|Brand|Type|Managed|PCB|PCB Label|Flash|Chip RTL|
|
||||||
|---|---|---|---|---|---|---|
|
|---|---|---|---|---|---|---|
|
||||||
| LIANGUO |SWTG024AS |No| SWTG024AS-v2.0-17452 | CM-23-11-2336 023-17453| 512 KiB | 8272 |
|
| LIANGUO |SWTG024AS |No| SWTG024AS-v2.0-17452 | CM-23-11-2336 023-17453| 512 KiB | 8272 |
|
||||||
| Horaco |ZX-SWTG124AS | Yes | SWTG024AS-v2.0 | ??? | ??? | 8272 |
|
| Haraco |ZX-SWTG124AS | Yes | SWTG024AS-v2.0 | ??? | ??? | 8272 |
|
||||||
| Xikestore |SKS3200M-4GPY2XF | Yes | SWTG024AS-v1.0 | CM-23-08-2043 023-16721 | 2048 KiB | 8272 |
|
| Xikestore |SKS3200M-4GPY2XF | Yes | SWTG024AS-v1.0 | CM-23-08-2043 023-16721 | ??? | 8272 |
|
||||||
| Sodola | SL-SWTG124AS-D | Yes | SWTG024AS-v2.0-17452 | ??? | 2048 KiB | 8272 |
|
| Sodola | SL-SWTG124AS-D | Yes | SWTG024AS-v2.0-17452 | ??? | 2048 KiB | 8272 |
|
||||||
|
|
||||||
## PCB
|
## PCB
|
||||||
|
|||||||
@@ -1,164 +0,0 @@
|
|||||||
### ZX-SWTGW215AS
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|Brand|Type|Managed|PCB|Flash|Chip RTL|
|
|
||||||
|---|---|---|---|---|---|
|
|
||||||
| Lianguo | ZX-SWTGW215AS | Yes | PCB-SWTG115AS-V2.0 | FM25Q16A | 8272 |
|
|
||||||
|
|
||||||
## RTLPlayground target
|
|
||||||
|
|
||||||
Use machine target `MACHINE_LIANGUO_ZX_SWTGW215AS` for this device.
|
|
||||||
|
|
||||||
Physical hardware verification: 5x RJ45 ports + 1x SFP port.
|
|
||||||
Port 5 RJ45 is interfaced through a RTL8221B IC.
|
|
||||||
|
|
||||||
## PCB
|
|
||||||
|
|
||||||
<img src="photos/ZX-SWTGW215AS/pcb_top.jpg" width="300" />
|
|
||||||
|
|
||||||
# Connectors
|
|
||||||
|
|
||||||
## Port overview
|
|
||||||
|
|
||||||
```
|
|
||||||
┌──────────────────────────────────────────────────────────────────────────────────┐
|
|
||||||
│ ┌──────────┐ │
|
|
||||||
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │ SFP (J4) │ │
|
|
||||||
│ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ PORT 6 │ │
|
|
||||||
│ │ PORT 1 │ │ PORT 2 │ │ PORT 3 │ │ PORT 4 │ │ PORT 5 │ │ LOG 8 │ │
|
|
||||||
│ O │ LOG 4 │ │ LOG 5 │ │ LOG 6 │ │ LOG 7 │ │ LOG 3 │ │ SerDes 1 │ │
|
|
||||||
│ RST └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └──────────┘ │
|
|
||||||
└──────────────────────────────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
| Type | RTLPlayground logical ports | Physical index |
|
|
||||||
|---|---|---|
|
|
||||||
| RJ45 | 3, 4, 5, 6, 7 | 1-5 |
|
|
||||||
| SFP | 8 | 6 |
|
|
||||||
|
|
||||||
## J4
|
|
||||||
|
|
||||||
* Location: SFP connector `J4`.
|
|
||||||
* Connected to: 10GMAC number 8, SerDes 1.
|
|
||||||
|
|
||||||
|`J4` SFP PINs | Signal | GPIO | Notes |
|
|
||||||
|---|---|---|---|
|
|
||||||
|3| TX_DISABLE | GPIO_NA | Not connected |
|
|
||||||
|4| MODDEF2 – SDA | GPIO39 | I2C SDA |
|
|
||||||
|5| MODDEF1 – SCL | GPIO40 | I2C SCL |
|
|
||||||
|6| MODDEF0 – PRESENT | GPIO30 | Detect |
|
|
||||||
|8| LOS | GPIO37 | RX Loss of Signal |
|
|
||||||
### Notes
|
|
||||||
* Not all signals were mapped mechanically, hence they've been left out of documentation.
|
|
||||||
|
|
||||||
## T3, Slave Interface
|
|
||||||
|
|
||||||
This connector goes to U4 `I2C EEPROM` and U10 `SPI FLASH` (mappings identical to SWTG024AS).
|
|
||||||
|
|
||||||
For detailed Slave Interface functionality and protocol information, see [T3 documentation in SWTG024AS.md](SWTG024AS.md#t3-slave-interface).
|
|
||||||
|
|
||||||
|`T3` pin|what|Signal|
|
|
||||||
|---|---|---|
|
|
||||||
|1| U4-P6, 33R U10-P6 | I2C-SCL, SPI-CLK, Slave SCK/SCL/MDC/EE_SCL |
|
|
||||||
|2| GND | --- |
|
|
||||||
|3| U4-P5, U10-P5 | I2C-SDA, SPI-DI/DO, Slave SDI/SDA/MDIO/EE_SDA |
|
|
||||||
|4| VCC |
|
|
||||||
|5| 33R -> U10-P2 | SPI-DO/D1 |
|
|
||||||
|6| U10-P1 | SPI-CS |
|
|
||||||
### Notes
|
|
||||||
* 1 pin is square shaped.
|
|
||||||
|
|
||||||
|
|
||||||
## T5, Serial Console
|
|
||||||
|
|
||||||
|`T5` pin|GPIO|Signal|
|
|
||||||
|---|---|---|
|
|
||||||
| 1 | GPIO31 | U0TXD (Output) |
|
|
||||||
| 2 | GND | |
|
|
||||||
| 3 | GPIO32 | U0RXD (Input) |
|
|
||||||
| 4 | 3V3 | |
|
|
||||||
### Notes
|
|
||||||
* 1 pin is square shaped.
|
|
||||||
|
|
||||||
## T8
|
|
||||||
|
|
||||||
|`T8` pin|GPIO|Signal|
|
|
||||||
|---|---|---|
|
|
||||||
| 1 | GPIO46 | |
|
|
||||||
| 2 | GND | |
|
|
||||||
| 3 | GPIO48 | |
|
|
||||||
| 4 | 3V3 | |
|
|
||||||
| 5 | GPIO47 | |
|
|
||||||
| 6 | GPIO49 | |
|
|
||||||
|
|
||||||
### Notes
|
|
||||||
* 1 pin is square shaped.
|
|
||||||
* Mapping unverified but assumed the same as [LIANGUO SWTG024AS](SWTG024AS.md#t8).
|
|
||||||
|
|
||||||
# Reset Circuit
|
|
||||||
| Function | GPIO |
|
|
||||||
|---|---|
|
|
||||||
| Reset button | GPIO54 |
|
|
||||||
### Notes
|
|
||||||
* Circuit is active-low
|
|
||||||
|
|
||||||
# GPIO
|
|
||||||
|
|
||||||
Note: T3/U4/U10-related signal annotations below are copied from [LIANGUO SWTG024AS T3 section](SWTG024AS.md#t3-slave-interface) as well as T8 port from [LIANGUO SWTG024AS T8 section](SWTG024AS.md#t8). They should be treated as assumed identical for ZX-SWTGW215AS as it has not been 100% confirmed true at the moment.
|
|
||||||
|
|
||||||
| HEX VAL. | GPIO | Component / Purpose | Notes | | GPIO | Component / Purpose | Notes |
|
|
||||||
| -------- | ------ | ---- | ---- | ---- | ---- | ---- | ---- |
|
|
||||||
| 00000001 | GPIO00 | | | | GPIO32 | T5-3 | U0RXD |
|
|
||||||
| 00000002 | GPIO01 | | | | GPIO33 | | |
|
|
||||||
| 00000004 | GPIO02 | | | | GPIO34 | | |
|
|
||||||
| 00000008 | GPIO03 | | | | GPIO35 | | |
|
|
||||||
| 00000010 | GPIO04 | | | | GPIO36 | | |
|
|
||||||
| 00000020 | GPIO05 | | | | GPIO37 | J4-8 | SFP LOS |
|
|
||||||
| 00000040 | GPIO06 | | | | GPIO38 | | |
|
|
||||||
| 00000080 | GPIO07 | | | | GPIO39 | J4-4 | SFP I2C SDA |
|
|
||||||
| 00000100 | GPIO08 | | | | GPIO40 | J4-5 | SFP I2C SCL |
|
|
||||||
| 00000200 | GPIO09 | | | | GPIO41 | | |
|
|
||||||
| 00000400 | GPIO10 | | | | GPIO42 | U10-P6, U4-P6, T3-1 | SPI FLASH CLK / I2C-SCL (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00000800 | GPIO11 | | | | GPIO43 | U10-P5, U4-P5, T3-3 | SPI FLASH DI/IO0 / I2C-SDA (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00001000 | GPIO12 | | | | GPIO44 | U10-P2, T3-5 | SPI FLASH DO/IO1 (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00002000 | GPIO13 | PORT1 LED GREEN | | | GPIO45 | U10-P1, T3-6 | SPI FLASH CS (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00004000 | GPIO14 | PORT1 LED ORANGE | | | GPIO46 | T8-1 | (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00008000 | GPIO15 | | | | GPIO47 | T8-5 | (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00010000 | GPIO16 | PORT2 LED GREEN | | | GPIO48 | T8-3 | (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00020000 | GPIO17 | PORT2 LED ORANGE | | | GPIO49 | T8-6 | (from [LIANGUO SWTG024AS](SWTG024AS.md#gpio)) |
|
|
||||||
| 00040000 | GPIO18 | PORT3 LED GREEN | | | GPIO50 | | |
|
|
||||||
| 00080000 | GPIO19 | PORT3 LED ORANGE | | | GPIO51 | | |
|
|
||||||
| 00100000 | GPIO20 | PORT4 LED GREEN | | | GPIO52 | | |
|
|
||||||
| 00200000 | GPIO21 | PORT4 LED ORANGE | | | GPIO53 | | |
|
|
||||||
| 00400000 | GPIO22 | PORT5 LED GREEN | | | GPIO54 | Reset Button | GPIO54_ACL_BIT2_EN |
|
|
||||||
| 00800000 | GPIO23 | PORT5 LED ORANGE | | | GPIO55 | | |
|
|
||||||
| 01000000 | GPIO24 | SFP LED GREEN | J4 | | GPIO56 | | |
|
|
||||||
| 02000000 | GPIO25 | | | | GPIO57 | | |
|
|
||||||
| 04000000 | GPIO26 | | | | GPIO58 | | |
|
|
||||||
| 08000000 | GPIO27 | | | | GPIO59 | | |
|
|
||||||
| 10000000 | GPIO28 | LED-SYSTEM | | | GPIO60 | | |
|
|
||||||
| 20000000 | GPIO29 | | | | GPIO61 | | |
|
|
||||||
| 40000000 | GPIO30 | J4-6 | SFP DETECT | | GPIO62 | | |
|
|
||||||
| 80000000 | GPIO31 | T5-1 | U0TXD | | GPIO63 | | |
|
|
||||||
|
|
||||||
# LEDs
|
|
||||||
|
|
||||||
| NAME | GPIO | Port(s) | Function | Notes |
|
|
||||||
| ---- | ---- | ---- | ---- | ---- |
|
|
||||||
| PORT1 LED GREEN | GPIO13 |5| Activity | LEDS_2G5, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT1 LED ORANGE | GPIO14 | 5 | Speed | LEDS_1G, LEDS_100M, LEDS_10M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT2 LED GREEN | GPIO16 | 4 | Activity | LEDS_2G5, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT2 LED ORANGE | GPIO17 | 4 | Speed | LEDS_1G, LEDS_100M, LEDS_10M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT3 LED GREEN | GPIO18 | 3 | Activity | LEDS_2G5, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT3 LED ORANGE | GPIO19 | 3 | Speed | LEDS_1G, LEDS_100M, LEDS_10M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT4 LED GREEN | GPIO20 | 2 | Activity | LEDS_2G5, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT4 LED ORANGE | GPIO21 | 2 | Speed | LEDS_1G, LEDS_100M, LEDS_10M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT5 LED GREEN | GPIO22 | 1 | Activity | LEDS_2G5, LEDS_LINK, LEDS_ACT |
|
|
||||||
| PORT5 LED ORANGE | GPIO23 | 1 | Speed | LEDS_1G, LEDS_100M, LEDS_10M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| SFP LED GREEN | GPIO24 | 6 (SFP J4) | Multi-speed | LEDS_10G, LEDS_5G, LEDS_2G5, LEDS_1G, LEDS_100M, LEDS_LINK, LEDS_ACT |
|
|
||||||
| LED-SYSTEM | GPIO28 | --- | System status | --- |
|
|
||||||
|
|
||||||
## Notes
|
|
||||||
|
|
||||||
While [SWTG024AS.md](SWTG024AS.md) can be used as a general reference for hardware concepts and interface specifications, this device should not be assumed to be identical beside the difference implicitely highlighted below. Not all information has been validated for compatibility with the SWTG215AS. Consult the SWTG024AS documentation with caution and verify any critical details against this device's.
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
### ZX-SWTGW218AS
|
|
||||||
|
|
||||||
## Brands
|
|
||||||
|Brand|Type|Managed|PCB|Flash|Chip RTL|
|
|
||||||
|---|---|---|---|---|---|
|
|
||||||
| Mokerlink | ZX-SWTGW218AS | Yes| SWTG118AS-V2.0-16029 | 2MB (FM25Q16A)| 8273N + 8224N |
|
|
||||||
| Sodola | | | | | |
|
|
||||||
| Horaco | | | | | |
|
|
||||||
| XikeStor | SKS3200-8E1X | Yes | SWTG118AS-V2.1-17462 | 2MB (25Q16JVSIQ) | |
|
|
||||||
|
|
||||||
|
|
||||||
## Photos
|
|
||||||
|
|
||||||
<img src="photos/SWTGW218AS-managed/front.png" width="800" />
|
|
||||||
|
|
||||||
<img src="photos/SWTGW218AS-managed/label.jpg" width="800" />
|
|
||||||
|
|
||||||
## PCB
|
|
||||||
|
|
||||||
See up'n'atom's Repo:
|
|
||||||
|
|
||||||
https://github.com/up-n-atom/SWTG118AS/blob/main/photos/SWTG118AS-v2.0/SWTG118AS-v2.0-pcb-top.JPG
|
|
||||||
|
|
||||||
https://github.com/up-n-atom/SWTG118AS/blob/main/photos/SWTG118AS-v2.0/SWTG118AS-v2.0-pcb-bottom.JPG
|
|
||||||
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
# TrendNet TEG-S562
|
|
||||||
|
|
||||||
Following is documentation for unmanaged switch marked as `TEG-S563/EU H/W: V1.0R`.
|
|
||||||
|
|
||||||
Original software is running UART on 57600 baud rate. The software does not allow to
|
|
||||||
do anything fancy via serial. There is `IP` configuration which can be printed as well.
|
|
||||||
There might be also some flash upload procedure, but using SPI clamp in-board seems to
|
|
||||||
be easier method.
|
|
||||||
|
|
||||||
The memory chip is `Winbond W25Q16JV` with 16M-bit size.
|
|
||||||
|
|
||||||
## What does work
|
|
||||||
|
|
||||||
1. 2.5G ports on all advertised speeds.
|
|
||||||
2. SFP+ communication.
|
|
||||||
3. Serial, Web UI.
|
|
||||||
4. All LEDs
|
|
||||||
|
|
||||||
## Known issues
|
|
||||||
|
|
||||||
None.
|
|
||||||
|
|
||||||
## PCB
|
|
||||||
|
|
||||||
Manufacturer information be found [on the product page](https://www.trendnet.com/support/support-detail.asp?prod=105_TEG-S562).
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/TEG-S562/TEG-S562-v1.0R-top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/TEG-S562/TEG-S562-v1.0R-bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
## Connectors
|
|
||||||
|
|
||||||
### Port overview
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
||||||
│ ┌──────────┐ ┌──────────┐ │
|
|
||||||
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │ SFP 2 │ │ SFP 1 │ │
|
|
||||||
│ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ RJ45 │ │ PORT 5 │ │ PORT 6 │ │
|
|
||||||
│ │ PORT 1 │ │ PORT 2 │ │ PORT 3 │ │ PORT 4 │ │ MAC 8 │ │ MAC 3 │ │
|
|
||||||
│ │ MAC 4 │ │ MAC 5 │ │ MAC 6 │ │ MAC 7 │ │ SerDes 0 │ │ SerDes 1 │ │
|
|
||||||
│ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └──────────┘ └──────────┘ │
|
|
||||||
└─────────────────────────────────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
### J2, serial console
|
|
||||||
|
|
||||||
| `J2` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | 3V3 |
|
|
||||||
| 2 | TX (Output) |
|
|
||||||
| 3 | RX (Input) |
|
|
||||||
| 4 | GND |
|
|
||||||
|
|
||||||
Note: 1 pin is square shaped, towards the power input.
|
|
||||||
|
|
||||||
### J5, power pass-thru
|
|
||||||
|
|
||||||
| `J5` pin | Signal |
|
|
||||||
| -------- | ------ |
|
|
||||||
| 1 | 12V |
|
|
||||||
| 2 | 12V |
|
|
||||||
| 3 | GND |
|
|
||||||
| 4 | GND |
|
|
||||||
|
|
||||||
Note: 1 pin is square shaped.
|
|
||||||
|
|
||||||
### U5, I2C eeprom placeholder
|
|
||||||
|
|
||||||
| `J5` pin | Signal |
|
|
||||||
| -------- | ------------- |
|
|
||||||
| 1 | GND |
|
|
||||||
| 2 | GND |
|
|
||||||
| 3 | GND |
|
|
||||||
| 4 | GND |
|
|
||||||
| 5 | 3V3 |
|
|
||||||
| 6 | ??? Logic Low |
|
|
||||||
| 7 | SCL |
|
|
||||||
| 8 | SDA |
|
|
||||||
|
|
||||||
SOC I2C address is 0x5c.
|
|
||||||
|
|
||||||
### SW1 GPIO switch?
|
|
||||||
|
|
||||||
Not populated but looks like a switch for selecting
|
|
||||||
GPIO level. Missing resistors in place.
|
|
||||||
|
|
||||||
GPIO mapping unknown.
|
|
||||||
|
|
||||||
### S2 Reset ciruit
|
|
||||||
|
|
||||||
Not populated but looks like a button can be added on `S2` connector,
|
|
||||||
requires additional `R571` resistor which will pull signal to ground.
|
|
||||||
|
|
||||||
GPIO mapping unknown.
|
|
||||||
|
|
||||||
### GPIO
|
|
||||||
|
|
||||||
| HEX VAL. | GPIO | When | GPIO | When |
|
|
||||||
| -------- | ------ | ----------------| ------ | -----------------------|
|
|
||||||
| 00000001 | GPIO00 | | GPIO32 | |
|
|
||||||
| 00000002 | GPIO01 | | GPIO33 | |
|
|
||||||
| 00000004 | GPIO02 | | GPIO34 | Random changes |
|
|
||||||
| 00000008 | GPIO03 | | GPIO35 | |
|
|
||||||
| 00000010 | GPIO04 | | GPIO36 | SFP2 Present |
|
|
||||||
| 00000020 | GPIO05 | | GPIO37 | SFP2 RX Los |
|
|
||||||
| 00000040 | GPIO06 | | GPIO38 | SFP1 Present |
|
|
||||||
| 00000080 | GPIO07 | | GPIO39 | |
|
|
||||||
| 00000100 | GPIO08 | | GPIO40 | |
|
|
||||||
| 00000200 | GPIO09 | | GPIO41 | |
|
|
||||||
| 00000400 | GPIO10 | | GPIO42 | Random changes |
|
|
||||||
| 00000800 | GPIO11 | | GPIO43 | |
|
|
||||||
| 00001000 | GPIO12 | PORT1 Link | GPIO44 | |
|
|
||||||
| 00002000 | GPIO13 | PORT1-LED-GREEN | GPIO45 | |
|
|
||||||
| 00004000 | GPIO14 | PORT1-LED-AMBER | GPIO46 | SFP1 I2C CLK |
|
|
||||||
| 00008000 | GPIO15 | PORT2 Link | GPIO47 | SFP1 I2C SDA |
|
|
||||||
| 00010000 | GPIO16 | PORT2-LED-GREEN | GPIO48 | SFP2 I2C CLK |
|
|
||||||
| 00020000 | GPIO17 | PORT2-LED-AMBER | GPIO49 | SFP2 I2C SDA |
|
|
||||||
| 00040000 | GPIO18 | PORT3 Link | GPIO50 | SFP1 Rx LOS |
|
|
||||||
| 00080000 | GPIO19 | PORT3-LED-GREEN | GPIO51 | SFP2 TX Disable |
|
|
||||||
| 00100000 | GPIO20 | PORT4-LED-AMBER | GPIO52 | |
|
|
||||||
| 00200000 | GPIO21 | PORT4 Link | GPIO53 | |
|
|
||||||
| 00400000 | GPIO22 | PORT4-LED-GREEN | GPIO54 | SFP1 TX Disable |
|
|
||||||
| 00800000 | GPIO23 | PORT4-LED-AMBER | GPIO55 | |
|
|
||||||
| 01000000 | GPIO24 | | GPIO56 | |
|
|
||||||
| 02000000 | GPIO25 | | GPIO57 | |
|
|
||||||
| 04000000 | GPIO26 | | GPIO58 | |
|
|
||||||
| 08000000 | GPIO27 | | GPIO59 | |
|
|
||||||
| 10000000 | GPIO28 | | GPIO60 | |
|
|
||||||
| 20000000 | GPIO29 | | GPIO61 | |
|
|
||||||
| 40000000 | GPIO30 | | GPIO62 | |
|
|
||||||
| 80000000 | GPIO31 | | GPIO63 | |
|
|
||||||
|
|
||||||
## LEDs
|
|
||||||
|
|
||||||
Ports 1-4 are amber for 100M/1G links, Green for 2.5G.
|
|
||||||
Port 5-6 are green for 10G/1G link. Both should flash on activity.
|
|
||||||
|
|
||||||
| NAME | When active |
|
|
||||||
| ---------------- | ---------------|
|
|
||||||
| PWR | 3V3 |
|
|
||||||
| SFP1 | |
|
|
||||||
| SFP2 | |
|
|
||||||
| PORT1-LED-GREEN | - |
|
|
||||||
| PORT2-LED-GREEN | PORT2 2.5G |
|
|
||||||
| PORT3-LED-GREEN | PORT3 2.5G |
|
|
||||||
| PORT4-LED-GREEN | PORT4 2.5G |
|
|
||||||
| PORT1-LED-AMBER | PORT1 1GB/100M |
|
|
||||||
| PORT2-LED-AMBER | PORT2 1GB/100M |
|
|
||||||
| PORT3-LED-AMBER | PORT3 1GB/100M |
|
|
||||||
| PORT4-LED-AMBER | PORT4 1GB/100M |
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 1A` adapter was provided.
|
|
||||||
Board has two supply rails. `0.95` and `3.3` volt.
|
|
||||||
|
|
||||||
### `0.95` Core Voltage
|
|
||||||
|
|
||||||
Voltage is made by a `APW8713` (U3).
|
|
||||||
|
|
||||||
### `3.3` Voltage
|
|
||||||
|
|
||||||
Voltage is crated regulated by chip marked as `GoIAT` (U2).
|
|
||||||
|
|
||||||
## SFP SPI
|
|
||||||
|
|
||||||
There is separate clock and data lines for both SFP modules. MSDA/MSCK 0 and 1 need to be enabled.
|
|
||||||
|
|
||||||
SFP1 slot is connected to SPI0. SFP2 slot is connected to SPI1.
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
# ZX310S-4T2XH/
|
|
||||||
|
|
||||||
The following is a documentation for the managed switch marked as `ZX310S-4T2XH`
|
|
||||||
and sold by Horaco.
|
|
||||||
|
|
||||||
The original software is running UART on 57600 baud rate. The solder holes
|
|
||||||
of the UART header are filled in. In order to install a UART header, they
|
|
||||||
need to be cleared first. A 1.2mm drill can be used, alternatively a
|
|
||||||
de-soldering wick.
|
|
||||||
The original firmware uses 57600 baud 8N1
|
|
||||||
|
|
||||||
CPU: RTL8372
|
|
||||||
Flash: 2MByte Winbond W25Q16DV (U3)
|
|
||||||
PHY RTL8261BE
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**:
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 1 x RJ45: 10/100/1000/2500/5000/10000 Mbps
|
|
||||||
- 1 × SFP+: 1000 / 2500 / 10000 Mbps
|
|
||||||
- **Power**: 12V DC, 2A barrel connector
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XH/label.jpg" width="300" />
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- All 4 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps
|
|
||||||
- The 10GBit port works. TODO: Fix EEE, speed selection
|
|
||||||
- The SFP+ port supports 1G, 2.5G and 10G modules
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-SL310S-4T1T1X-V1.0.1-24107
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XH/pcb_top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XH/pcb_bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | TX (Output) |
|
|
||||||
| 2 | RX (Input) |
|
|
||||||
| 3 | GND |
|
|
||||||
| 4 | 3V3 |
|
|
||||||
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 2A` adapter was provided.
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
# ZX310S-4T2XT
|
|
||||||
|
|
||||||
The following is a documentation for the managed switch marked as
|
|
||||||
`ZX310S-4T2XT` and sold by Horaco.
|
|
||||||
|
|
||||||
The original software is running UART on 57600 baud rate 8N1.
|
|
||||||
|
|
||||||
CPU: RTL8372
|
|
||||||
Flash: 2MByte Winbond W25Q16DV (U3)
|
|
||||||
PHY 2x RTL8261BE
|
|
||||||
|
|
||||||
### Label specifications
|
|
||||||
|
|
||||||
- **Name**:
|
|
||||||
- **Ports**:
|
|
||||||
- 4 × RJ45: 10/100/1000/2500 Mbps
|
|
||||||
- 2 x RJ45: 10/100/1000/2500/5000/10000 Mbps
|
|
||||||
- **Power**: 12V DC, 2A barrel connector
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XT/label.jpg" width="300" />
|
|
||||||
|
|
||||||
### What works
|
|
||||||
The device is fully supported:
|
|
||||||
- All 4 2.5GBASE-T RJ45 ports work at 10/100/1000/2500 Mbps, including EEE
|
|
||||||
- The 10GBit ports works, including EEE.
|
|
||||||
- LEDs work with the same indiciations as the OEM firmware
|
|
||||||
|
|
||||||
### PCB overview
|
|
||||||
|
|
||||||
**Board markings**
|
|
||||||
- Top silkscreen: PCB-SL310S-4T2XT-V1.0.0-22273
|
|
||||||
|
|
||||||
Top side
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XT/pcb_top.jpg" width="300" />
|
|
||||||
|
|
||||||
Bottom
|
|
||||||
|
|
||||||
<img src="photos/ZX310S-4T2XT/pcb_bottom.jpg" width="300" />
|
|
||||||
|
|
||||||
### J1, serial console
|
|
||||||
|
|
||||||
| `J1` pin | Signal |
|
|
||||||
| -------- | ----------- |
|
|
||||||
| 1 | TX (Output) |
|
|
||||||
| 2 | RX (Input) |
|
|
||||||
| 3 | GND |
|
|
||||||
| 4 | 3V3 |
|
|
||||||
|
|
||||||
|
|
||||||
## Power supply
|
|
||||||
|
|
||||||
Input power is delivered via barell plug, `12V 2A` adapter was provided.
|
|
||||||
|
Before Width: | Height: | Size: 560 KiB |
|
Before Width: | Height: | Size: 536 KiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 715 KiB |
|
Before Width: | Height: | Size: 615 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 754 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 521 KiB |
|
Before Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 207 KiB |
|
Before Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 531 KiB |
|
Before Width: | Height: | Size: 548 KiB |
|
Before Width: | Height: | Size: 505 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 152 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 876 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 455 KiB |
|
Before Width: | Height: | Size: 710 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 3.2 MiB |
|
Before Width: | Height: | Size: 9.7 MiB |
|
Before Width: | Height: | Size: 36 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 558 KiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 2.7 MiB |
|
Before Width: | Height: | Size: 3.3 MiB |
|
Before Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 2.7 MiB |
@@ -1,98 +0,0 @@
|
|||||||
|
|
||||||
# GPIO Pin, Function and MUX registers.
|
|
||||||
|
|
||||||
These functions should bevalid for `RTL8372`, `RTL8372N`, `RTL8373`, and `RTL8373N`.
|
|
||||||
|
|
||||||
`N`-version doesn't seems to have all the GPIO pins available on the outside of the package.
|
|
||||||
|
|
||||||
| GPIO | Function | TYPE | MUX REG, BIT | (RTL8372) PIN# | (RTL8372N) PIN# |
|
|
||||||
| ----- | ---- | ---- | ---- | ---- | ---- |
|
|
||||||
| GPIO0 | LED0 | I/OPU | IO_MUX_SEL_0, BIT 0 | G1 | 12 |
|
|
||||||
| GPIO1 | LED1 | I/OPU | IO_MUX_SEL_0, BIT 1 | G2 | 15 |
|
|
||||||
| GPIO2 | LED2 | I/OPU | IO_MUX_SEL_0, BIT 2 | G3 | 14 |
|
|
||||||
| GPIO3 | LED3 | I/OPU | IO_MUX_SEL_0, BIT 3 | H1 | 16 |
|
|
||||||
| GPIO4 | LED4 | I/OPU | IO_MUX_SEL_0, BIT 4 | H2 | 18 |
|
|
||||||
| GPIO5 | LED5 | I/OPU | IO_MUX_SEL_0, BIT 5 | H3 | 20 |
|
|
||||||
| GPIO6 | LED6 | I/OPU | IO_MUX_SEL_0, BIT 6 | J1 | 22 |
|
|
||||||
| GPIO7 | LED7 | I/OPU | IO_MUX_SEL_0, BIT 7 | J2 | NoPin? |
|
|
||||||
| GPIO8 | LED8 | I/OPU | IO_MUX_SEL_0, BIT 8 | J3 | 24 |
|
|
||||||
| GPIO9 | LED9 | I/OPD | IO_MUX_SEL_0, BIT 9 | L1 | 23 |
|
|
||||||
| GPIO10 | LED10 | I/OPU | IO_MUX_SEL_0, BIT 10 | L2 | 26 |
|
|
||||||
| GPIO11 | LED11 | I/OPU | IO_MUX_SEL_0, BIT 11 | L3 | NoPin? |
|
|
||||||
| GPIO12 | LED12 | I/OPD | IO_MUX_SEL_0, BIT 12 | M1 | 28 |
|
|
||||||
| GPIO13 | LED13 | I/OPU | IO_MUX_SEL_0, BIT 13 | M2 | NoPin? |
|
|
||||||
| GPIO14 | LED14 | I/OPU | IO_MUX_SEL_0, BIT 14 | M3 | NoPin? |
|
|
||||||
| GPIO15 | LED15 | I/OPU | IO_MUX_SEL_0, BIT 15 | N1 | 25 |
|
|
||||||
| GPIO16 | LED16 | I/OPU | IO_MUX_SEL_0, BIT 16 | N2 | NoPin? |
|
|
||||||
| GPIO17 | LED17 | I/OPU | IO_MUX_SEL_0, BIT 17 | N3 | NoPin? |
|
|
||||||
| GPIO18 | LED18 | I/OPD | IO_MUX_SEL_0, BIT 18 | P1 | 30 |
|
|
||||||
| GPIO19 | LED19 | I/OPU | IO_MUX_SEL_0, BIT 19 | P2 | NoPin? |
|
|
||||||
| GPIO20 | LED20 | I/OPU | IO_MUX_SEL_0, BIT 20 | P3 | NoPin? |
|
|
||||||
| GPIO21 | LED21 | I/OPU | IO_MUX_SEL_0, BIT 21 | R1 | 27 |
|
|
||||||
| GPIO22 | LED22 | I/OPU | IO_MUX_SEL_0, BIT 22 | R2 | NoPin? |
|
|
||||||
| GPIO23 | LED23 | I/OPU | IO_MUX_SEL_0, BIT 23 | R3 | NoPin? |
|
|
||||||
| GPIO24 | LED24 | I/OPU | IO_MUX_SEL_0, BIT 24 | N19 | 88 |
|
|
||||||
| GPIO25 | LED25 | I/OPU | IO_MUX_SEL_0, BIT 25 | P19 | 86 |
|
|
||||||
| GPIO26 | LED26 | I/OPU | IO_MUX_SEL_0, BIT 26 | P18 | 84 |
|
|
||||||
| GPIO27 | LED27 | I/OPU | IO_MUX_SEL_0, BIT 27 | R19 | 82 |
|
|
||||||
| GPIO28 | SYS_LED | I/OPU | IO_MUX_SEL_0, BIT 28 | F1 | 13 |
|
|
||||||
| GPIO29 | GLB_RLDP_LED_EN | | IO_MUX_SEL_0, BIT 29 | | NoPin? |
|
|
||||||
| GPIO30 | ACL_BIT3_EN | | IO_MUX_SEL_2, BIT 3 | F3 | 11 |
|
|
||||||
| GPIO31 | UART TX (OUTPUT) | | IO_MUX_SEL_1, BIT 0 | L20 | 90 |
|
|
||||||
| GPIO32 | UART TX (INPUT) | | IO_MUX_SEL_1, BIT 1 | L21 | |
|
|
||||||
| GPIO33 | GPIO_INT | | IO_MUX_SEL_1, BIT 2 | | |
|
|
||||||
| GPIO34 | MDC0 | | IO_MUX_SEL_1, BIT 3 | | |
|
|
||||||
| GPIO35 | MDIO0 | | IO_MUX_SEL_1, BIT 4 | | |
|
|
||||||
| GPIO36 | PWM_OUT | | IO_MUX_SEL_1, BIT 30 | B13 | |
|
|
||||||
| GPIO37 | --- | | | L18 | |
|
|
||||||
| GPIO38 | --- | | | K19 | |
|
|
||||||
| GPIO39 | MSDA4 | | IO_MUX_SEL_1, BIT 29 | K20 | 95 |
|
|
||||||
| GPIO40 | MDC1/SCL3 | | IO_MUX_SEL_1, BIT 5 & 6 | J29 | |
|
|
||||||
| GPIO41 | MDIO1/MSDA3 | | IO_MUX_SEL_1, BIT 5 & 6 | J19 | |
|
|
||||||
| GPIO42 | SPI-MEMORY | | RTL8373_INI_MODE_ADDR, BIT 0 & 1 | D1 | |
|
|
||||||
| GPIO43 | SPI-MEMORY | | RTL8373_INI_MODE_ADDR, BIT 0 & 1 | E1 | |
|
|
||||||
| GPIO44 | SPI-MEMORY | | RTL8373_INI_MODE_ADDR, BIT 0 & 1 | D2 | |
|
|
||||||
| GPIO45 | SPI-MEMORY | | RTL8373_INI_MODE_ADDR, BIT 0 & 1 | E2 | |
|
|
||||||
| GPIO46 | MSCK0 | | IO_MUX_SEL_1, BIT 7 & 8 | A2 | |
|
|
||||||
| GPIO47 | MSDA0 | | IO_MUX_SEL_1, BIT 9 & 10 | B2 | |
|
|
||||||
| GPIO48 | MSCK1 | | IO_MUX_SEL_1, BIT 11 & 12 | A1 | |
|
|
||||||
| GPIO49 | MSDA1 | | IO_MUX_SEL_1, BIT 13 & 14 | B1 | |
|
|
||||||
| GPIO50 | MSCL2/U1TXD | | IO_MUX_SEL_1, BIT 15 & 16 | C1 | |
|
|
||||||
| GPIO51 | MSDA2/U1RXD | | IO_MUX_SEL_1, BIT 17 & 18 | C2 | |
|
|
||||||
| GPIO52 | ACL_BIT0_EN | | IO_MUX_SEL_2, BIT 0 | | |
|
|
||||||
| GPIO53 | ACL_BIT1_EN | | IO_MUX_SEL_2, BIT 1 | | |
|
|
||||||
| GPIO54 | ACL_BIT2_EN | | IO_MUX_SEL_2, BIT 2 | E5 | |
|
|
||||||
| GPIO55 | PTP_CLK125M_IN | | IO_MUX_SEL_1, BIT 19 | | |
|
|
||||||
| GPIO56 | PTP_CLK_OUT | | IO_MUX_SEL_1, BIT 20 | | |
|
|
||||||
| GPIO57 | PTP_TOD_OUT | | IO_MUX_SEL_1, BIT 21 | | |
|
|
||||||
| GPIO58 | PTP_PPS_OUT | | IO_MUX_SEL_1, BIT 22 | | |
|
|
||||||
| GPIO59 | PTP_TOD_IN | | IO_MUX_SEL_1, BIT 23 | | |
|
|
||||||
| GPIO60 | PTP_PPS_IN | | IO_MUX_SEL_1, BIT 24 | | |
|
|
||||||
| GPIO61 | SYNCELOCK0 | | IO_MUX_SEL_1, BIT 27 | | |
|
|
||||||
| GPIO62 | SYNCELOCK1 | | IO_MUX_SEL_1, BIT 28 | | |
|
|
||||||
| GPIO63 | GPIO_MDIO0 | | IO_MUX_SEL_1, BIT 4 | | |
|
|
||||||
|
|
||||||
## I2C
|
|
||||||
|
|
||||||
| I2C | Function |Type | (RTL8372) PIN# | (RTL8372N) PIN# |
|
|
||||||
| ---- | ---- | ---- | ---- | ---- |
|
|
||||||
| GPIO47 | SDA0 | I/OPU | | B1 | 142 |
|
|
||||||
| GPIO49 | SDA1 | I/OPU | | B2 | 144 |
|
|
||||||
| GPIO51 | SDA2 | I/OPU | | C2 | ??? |
|
|
||||||
| GPIO41 | SDA3 | I/OPU | | J20 | 98 |
|
|
||||||
| GPIO39 | SDA4 | I/OPU | | K20 | 95 |
|
|
||||||
| GPIO46 | SCL0 | I/OPU | | A2 | 138 |
|
|
||||||
| GPIO48 | SCL1 | I/OPU | | A1 | 140 |
|
|
||||||
| GPIO50 | SCL2 | I/OPU | | C1 | ??? |
|
|
||||||
| GPIO40? | SCL3 | OPU | | J20 | |
|
|
||||||
|
|
||||||
# Other funcitons
|
|
||||||
|
|
||||||
| Function | Type | (RTL8372) PIN# | (RTL8372N) PIN# |
|
|
||||||
| ---- | ---- | ---- | ---- |
|
|
||||||
| nRESET | | A6 | 131 |
|
|
||||||
| PTP_SYNC | | B10 | 130 |
|
|
||||||
| INT | OPU | B6 | 132 |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 64 KiB |
@@ -92,7 +92,7 @@ The following shows the network configuration
|
|||||||
On _both_ switches create a LAG with ports 1 and 2 inside and the default hash algorithm which takes
|
On _both_ switches create a LAG with ports 1 and 2 inside and the default hash algorithm which takes
|
||||||
source and destination ports into account, e.g. just use the default:
|
source and destination ports into account, e.g. just use the default:
|
||||||
```
|
```
|
||||||
> lag 1 1 2
|
> lag 0 1 2
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## SPI-Flash Memory
|
## SPI-Flash Memory
|
||||||
|
|
||||||
SPI-Flash memory can be replaced with an other type. Because the chip is defect, like #69 & #70 or you have an unmanaged-switch with a small flash size, and want to convert it to a managed-variant to run `RTLPlayground` software on it. Currently `RTLPlayground`-firmware expects `8 MBit / 1 MiB`.
|
SPI-Flash memory can be replaced with an other type. Because the chip is defect, like #69 & #70 or you have an unmanaged-switch with a small flash size, and want to convert it to a managed-variant to run `RTLPlayground` software on it. Currently `RTLPlayground`-firmware expects `8 MBit / 2 MiB`.
|
||||||
|
|
||||||
### Size
|
### Size
|
||||||
|
|
||||||
@@ -25,7 +25,7 @@ Most use package are `SO8`-type may also called `SOIC8`-type. Which can also hav
|
|||||||
|
|
||||||
### Specification
|
### Specification
|
||||||
|
|
||||||
1. Size: At least `8 MBit / 1 MiB` (theoretic max. `128 MBit / 16 MiB`, but is not *tested*!)
|
1. Size: At least `16 MBit / 4 MiB` (theoretic max. `128 MBit / 32 MiB`, but is not *tested*!)
|
||||||
2. Speed: `62.5 MHz` or better.
|
2. Speed: `62.5 MHz` or better.
|
||||||
3. Support for `DUAL SPI operation`.
|
3. Support for `DUAL SPI operation`.
|
||||||
Device need support for command `BBh`, `Dual I/O Fast Read` or `Fast Read Dual I/O`.
|
Device need support for command `BBh`, `Dual I/O Fast Read` or `Fast Read Dual I/O`.
|
||||||
@@ -37,13 +37,10 @@ This list is incomplete.
|
|||||||
| Brand | Partnumber |
|
| Brand | Partnumber |
|
||||||
| ---------- |----------- |
|
| ---------- |----------- |
|
||||||
| GigaDevice | GD25Q32E |
|
| GigaDevice | GD25Q32E |
|
||||||
| Fundan | FM25Q16A |
|
|
||||||
| Puya | P25D40SH |
|
|
||||||
| Winbond | W25Q16JV |
|
| Winbond | W25Q16JV |
|
||||||
| Winbond | W25Q32FV |
|
| Winbond | W25Q32FV |
|
||||||
| Winbond | W25Q32JV |
|
| Winbond | W25Q32JV |
|
||||||
| Winbond | W25Q16JL |
|
| Winbond | W25Q16JL |
|
||||||
| Winbond | W25Q16DV |
|
| Fundan | FM25Q16A |
|
||||||
| Winbond | W25Q80DV |
|
|
||||||
|
|
||||||
*NOTE*: Part numbers are incomplete. Part numbers may contain additional information such as package, temperature specifications, and even the number of devices on a reel. So always check the datasheet so that you have the right orderable partnumber.
|
*NOTE*: Part numbers are incomplete. Part numbers may contain additional information such as package, temperature specifications, and even the number of devices on a reel. So always check the datasheet so that you have the right orderable partnumber.
|
||||||
|
|||||||
@@ -1,135 +0,0 @@
|
|||||||
# Supporting Multiple Languages in the Web UI
|
|
||||||
|
|
||||||
The firmware uses a client-side i18n approach
|
|
||||||
all translations are stored in a single JavaScript dictionary embedded in the firmware.
|
|
||||||
No server-side changes are needed.
|
|
||||||
|
|
||||||
## Architecture
|
|
||||||
|
|
||||||
All translation logic lives in `html/i18n.js`. The file contains:
|
|
||||||
|
|
||||||
- A `LANG` object with one sub-object per language (`en`, `ja`, ...)
|
|
||||||
- Language auto-detection (browser language → `localStorage` override)
|
|
||||||
- `t(key)` — look up a translated string
|
|
||||||
- `setLang(lang)` — switch language and update the page
|
|
||||||
- `applyTranslation(el)` — apply translation to one DOM element
|
|
||||||
|
|
||||||
Translation keys are **flat strings** (no nesting). The English keys in `LANG.en` also serve as the fallback when a key is missing in another language.
|
|
||||||
|
|
||||||
## How to Add a New Language
|
|
||||||
|
|
||||||
### 1. Add a dictionary entry in `html/i18n.js`
|
|
||||||
|
|
||||||
Append a new sub-object to the `LANG` object. Every key from `LANG.en` must be present:
|
|
||||||
|
|
||||||
```js
|
|
||||||
var LANG = {
|
|
||||||
en: {
|
|
||||||
nav_overview: 'Overview',
|
|
||||||
nav_port_config: 'Port Configuration',
|
|
||||||
// ... all keys for English
|
|
||||||
},
|
|
||||||
ja: {
|
|
||||||
nav_overview: '概要',
|
|
||||||
nav_port_config: 'ポート設定',
|
|
||||||
// ... all keys for Japanese
|
|
||||||
},
|
|
||||||
LANGCODE: { // ← add your language here
|
|
||||||
nav_overview: '...',
|
|
||||||
nav_port_config: '...',
|
|
||||||
// ... translate every key
|
|
||||||
},
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Add the language to the navigation sidebar
|
|
||||||
|
|
||||||
In `html/navigation.js`, add an `<option>` to the language selector:
|
|
||||||
|
|
||||||
```js
|
|
||||||
+ "<option value='en'>English</option><option value='ja'>日本語</option>"
|
|
||||||
```
|
|
||||||
|
|
||||||
Replace with:
|
|
||||||
|
|
||||||
```js
|
|
||||||
+ "<option value='en'>English</option><option value='ja'>日本語</option><option value='LANGCODE'>Native Name</option>"
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. Verify auto-detection
|
|
||||||
|
|
||||||
The language detection code in `i18n.js` reads `navigator.language` and normalises it to the first two characters:
|
|
||||||
|
|
||||||
```js
|
|
||||||
var browser = (navigator.language || navigator.userLanguage || 'en').substring(0, 2);
|
|
||||||
return LANG[browser] ? browser : 'en';
|
|
||||||
```
|
|
||||||
|
|
||||||
If the two-letter code matches a key in `LANG`, it will be auto-selected. No changes needed here.
|
|
||||||
|
|
||||||
## Two Translation Mechanisms
|
|
||||||
|
|
||||||
### (A) `data-i18n` attribute (declarative — for HTML)
|
|
||||||
|
|
||||||
Add `data-i18n="key_name"` to any HTML element. The English text goes in the element content as a fallback:
|
|
||||||
|
|
||||||
```html
|
|
||||||
<h1 data-i18n="port_heading">Port Configuration</h1>
|
|
||||||
<input type="button" data-i18n="port_apply" value="Apply">
|
|
||||||
<option data-i18n="port_auto">Auto</option>
|
|
||||||
<title data-i18n="port_title">Port Configuration</title>
|
|
||||||
```
|
|
||||||
|
|
||||||
On page load, `applyTranslation()` sets:
|
|
||||||
|
|
||||||
- `el.value` for `<input type="submit|button">`
|
|
||||||
- `el.textContent` for `<option>`, `<title>`
|
|
||||||
- `el.innerHTML` for everything else
|
|
||||||
|
|
||||||
### (B) `t('key')` call (imperative — for JavaScript strings)
|
|
||||||
|
|
||||||
When generating HTML or text in JavaScript, wrap translatable strings with `t()`:
|
|
||||||
|
|
||||||
```js
|
|
||||||
td.appendChild(document.createTextNode(t('common_port') + i));
|
|
||||||
td.innerHTML = t('port_auto');
|
|
||||||
iHTML += "<tr><td>" + t('port_vendor') + "</td></tr>";
|
|
||||||
```
|
|
||||||
|
|
||||||
### Special Case: Link Speed Display
|
|
||||||
|
|
||||||
The `linkS` array in `html/main.js` maps numeric link states to display strings. The first two entries (`speed_disabled`, `speed_down`) use `t()` for translation; the remaining entries are static literals (they are the same in all languages):
|
|
||||||
|
|
||||||
```js
|
|
||||||
const linkS = [
|
|
||||||
function(){return t('speed_disabled')},
|
|
||||||
function(){return t('speed_down')},
|
|
||||||
"10M", "100M", "1000M", "500M", "10G", "2.5G", "5G"
|
|
||||||
];
|
|
||||||
function linkText(idx) { var v = linkS[idx]; return typeof v === 'function' ? v() : v; }
|
|
||||||
```
|
|
||||||
|
|
||||||
Always use `linkText(idx)` (not `linkS[idx]`) to read these values.
|
|
||||||
|
|
||||||
## Size Considerations
|
|
||||||
|
|
||||||
- `html/i18n.js` is embedded in the firmware filesystem (~14 KB for two languages)
|
|
||||||
- Each new language adds roughly the same number of bytes as the English dictionary (~3–4 KB)
|
|
||||||
- The firmware binary is padded to 512 KiB, so a few extra KB do not change the flash footprint
|
|
||||||
- Values that are identical in all languages should be inlined as literals rather than added to the dictionary (e.g., `"10M"`, `"2.5G"`, `"MAC"`, `"VLAN"`, `"CPU"`)
|
|
||||||
|
|
||||||
## Build
|
|
||||||
|
|
||||||
No special flags are needed. The `html/` directory is embedded by `fileadder` during the build.
|
|
||||||
|
|
||||||
## Script Load Order
|
|
||||||
|
|
||||||
`i18n.js` must be loaded after `main.js` (which defines `t()`'s dependencies like `LANG`) but before any page-specific JS that calls `t()`:
|
|
||||||
|
|
||||||
```html
|
|
||||||
<script src="/main.js"></script>
|
|
||||||
<script src="/i18n.js"></script>
|
|
||||||
<script src="/eee.js"></script> <!-- uses t() -->
|
|
||||||
```
|
|
||||||
|
|
||||||
The `navigation.js` script is loaded last (bottom of `<body>`).
|
|
||||||
@@ -1,35 +1,16 @@
|
|||||||
# Supported Hardware
|
# Supported Hardware
|
||||||
The following devices have been tested and are fully working:
|
The following devices have been tested and are fully working:
|
||||||
|
- Horaco ZX_SG4T2
|
||||||
|
- keepLINK kp-9000-6hx-x2 (RTL8372: 4x 2.5GBit + 2x 10GBit SFP+)
|
||||||
|
- keepLINK KP-9000-6XHML-X2, same as above, but Managed
|
||||||
|
- keepLINK kp-9000-6hx-x (RTL8372 + RTL8221B 2.5GBit PHY: 5 x 2.5GBit + 1x 10GBit SFP+)
|
||||||
|
- keepLINK kp-9000-9xh-x-eu (1 x RTL8373 + RTL8224: 8x 2.5GBit + 1x 10GBit SFP+)
|
||||||
|
- Lianguo LG-SWTGW218AS (RTL8373 + RTL8224 PHY: 8x 2.5GBit + 1x 10GBit SFP+)
|
||||||
|
- No-Name ZX-SWTGW215AS, managed version of kp-9000-6hx-x, ordered on
|
||||||
|
AliExpress as keepLINK 5+1 port managed
|
||||||
|
|
||||||
| Brand | Type | Managed | PCB | Flash | Ports |
|
Other device based on RTL8272/3 that may work are described here: [Up-N-Atoms 2.5 GBit RTL Switch hacking guide]
|
||||||
|----------|-----------------|---------|---------------------------------------------------------------------------|-------|-------|
|
(https://github.com/up-n-atom/SWTG118AS)
|
||||||
| Ampcom | WAM902-SWTG018AS| No | [SWTG018AS-A V2.0](devices/SWTG018AS_A_V2_0.md) | | 8 + 1 |
|
|
||||||
| Davuaz | Da-K6501W | No | [PCB-K0501W-V2.0](devices/K0501W_V2_0.md) | | 5 + 1 |
|
|
||||||
| FOXNEO | FNS-1200P | No | [PCB-K0402W-U13-V2.0](devices/FNS-1200P.md) | 2M | 4 + 2 |
|
|
||||||
| Hisource | Hi-K0402WS | No | [PCB-K0402WS-V3.0](devices/PCB-K0402WS-V3.0.md) | | 4 + 2 |
|
|
||||||
| Hisource | Hi-K0801WS | No | [PCB-KO801W-V2.0](devices/HI-K0801WS.md) | | 8 + 1 |
|
|
||||||
| hongyavision | LG-SG5T1 | No | [PCB-SWTG024AS-V2.0_16895](devices/SWTG024AS-V2.0.md) | 0.5M | 5 + 1 |
|
|
||||||
| Horaco | HC-SWTGW215AS | Yes | [SWTG024AS-A-V2.0.1_19650 5C 1SFP](devices/SWTG024AS-A-V2.0.1_5C_1SFP.md) | ? | 5 + 1 |
|
|
||||||
| Horaco | HC-SWTGW218AS | Yes | [SWTG018AS-A V2.0](devices/SWTG018AS_A_V2_0.md) | | 8 + 1 |
|
|
||||||
| Horaco | ZX310S-4T2XH | Yes | [PCB-SL310S-4T1T1X-V1.0.1-24107](devices/ZX310S-4T2XH.md) | 2M | 5 + 1 |
|
|
||||||
| Horaco | ZX310S-4T2XT | Yes | [PCB-SL310S-4T2XT-V1.0.0-22273](devices/ZX310S-4T2XT.md) | 2M | 6 |
|
|
||||||
| Horaco | ZX-SG4T2 | No | [SWTG024AS-A-V2.0.1_19650_4C_2SFP](devices/SWTG024AS-A-V2.0.1_4C_2SFP.md) | 0.5M | 4 + 2 |
|
|
||||||
| Horaco | ZX-SWTG124AS | Yes | [SWTG024AS-v2.0](devices/SWTG024AS.md) | | 4 + 2 |
|
|
||||||
| Keeplink | KP-9000-6XH-X2 | No | [2M-PCB43-V2.1](devices/KP-9000-6XH-X2.md) | | 4 + 2 |
|
|
||||||
| keepLINK | KP-9000-9XHML-X | Yes | [2M-PCB23-V2.2](devices/2M-PCB23-V2_2.md) | 2M | 8 + 1 |
|
|
||||||
| keepLINK | KP-9000-9XHML-X | Yes | [2M-PCB23-V3.1](devices/2M-PCB23-V3_1.md) | 2M | 8 + 1 |
|
|
||||||
| LIANGUO | SWTG024AS | No | [SWTG024AS-v2.0-17452](devices/SWTG024AS.md) | 0.5M | 4 + 2 |
|
|
||||||
| Lianguo | ZX-SWTGW215AS | Yes | [PCB-SWTG115AS-V2.0](devices/SWTGW215AS.md) | 2M | 5 + 1 |
|
|
||||||
| Mokerlink| ZX-SWTGW218AS | Yes | [SWTG118AS-V2.0-16029](devices/SWTGW218AS.md) | 2M | 8 + 1 |
|
|
||||||
| Ruiying | RY-4GT-2SX | No | [FG-4GT-2SX_V2.0](devices/FG-4GT-2SX_V2.0.md) | 4M | 4 + 2 |
|
|
||||||
| Sodola | SL-SWTG124AS-D | Yes | [SWTG024AS-v2.0-17452](devices/SWTG024AS.md) | 2M | 4 + 2 |
|
|
||||||
| Steamemo | IG204-V1 | No | [PB-2131](devices/STEAMEMO_IG204_V1.md) | | 4 + 2 |
|
|
||||||
| TrendNet | TEG-S562 | No | [TEG-S563/EU H/W: V1.0R](devices/TEG-S562.md) | 2M | 4 + 2 |
|
|
||||||
| Xikestore| SKS3200M-4GPY2XF| Yes | [SWTG024AS-v1.0](devices/SWTG024AS.md) | | 4 + 2 |
|
|
||||||
| XikeStor | SKS3200-8E1X | Yes | [SWTG118AS-V2.1-17462](devices/SWTGW218AS.md) | 2M | 8 + 1 |
|
|
||||||
| Ztyuav | Z-QWYT0402 | No | [PCB-K0402WS-V3.0](devices/PCB-K0402WS-V3.0.md) | | 4 + 2 |
|
|
||||||
|
|
||||||
Other device based on RTL8272/3 that may work are described here: [Up-N-Atoms 2.5 GBit RTL Switch hacking guide](https://github.com/up-n-atom/SWTG118AS)
|
|
||||||
|
|
||||||
Many of the RTL8272/3 devices come in versions with PoE support. The RTLPlayground usually also
|
Many of the RTL8272/3 devices come in versions with PoE support. The RTLPlayground usually also
|
||||||
works on these, however, no support for configuring PoE is provided, simply because these
|
works on these, however, no support for configuring PoE is provided, simply because these
|
||||||
|
|||||||
@@ -33,23 +33,15 @@ An entry is deleted by adding an invalid entry (00 instead of 0x02 in
|
|||||||
RTL837x_TBL_DATA_IN_A).
|
RTL837x_TBL_DATA_IN_A).
|
||||||
|
|
||||||
A port is assigned a PVID by setting the PVID-bits of the corresponding
|
A port is assigned a PVID by setting the PVID-bits of the corresponding
|
||||||
register of the port. 2 ports share a register. An odd port uses bits [23:12],
|
register of the port. 2 ports share a register. One port uses the higher
|
||||||
an even port uses bits [11:0]. The base register is
|
16 bits, the other (even ports) use the lower. The base register is
|
||||||
RTL837x_PVID_BASE_REG (0x4e1c) and the registers go to 0x4e2c so that also
|
RTL837x_PVID_BASE_REG (0x4e1c) and the registers go to 0x4e2c so that also
|
||||||
the CPU-Port may have a PVID.
|
the CPU-Port may have a PVID.
|
||||||
|
|
||||||
Register RTL837x_REG_INGRESS (0x4e10) allows to define the ingress rules of
|
Register RTL837x_REG_INGRESS (0x4e10) allows to define the iingress rules of
|
||||||
a port. 2 bits define a rule and bits 0-19 are being used. A value of 00
|
a port. 2 bits define a rule and bits 0-19 are being used. A value of 00
|
||||||
defines no filtering, 01 (0x01) allows only tagged packets, while 10 (0x02)
|
defines no filtering, 01 (0x01) allows only tagged packets, while 10 (0x02)
|
||||||
allows only untagged packets to enter a port.
|
allows only untagged packets to enter a port. The default PVID is 1.
|
||||||
|
|
||||||
Register RTL837X_VLAN_PORT_IGR_FLTR (0x4e18) enables or disables ingres VLAN
|
|
||||||
filtering, each bit corresponds to given port (port0 -> bit0, port9 -> bit9).
|
|
||||||
When enabled, incomming package's vlan tag is checked against VLAN membership
|
|
||||||
on given port. When package contains VLAN not in member list, package is dropped.
|
|
||||||
|
|
||||||
The default PVID on all port is 1, ingress VLAN filtering is enabled and all types of
|
|
||||||
frames are accepted on input on all ports.
|
|
||||||
|
|
||||||
By default, the ports transmit Ethernet frames with Realtek's proprietary
|
By default, the ports transmit Ethernet frames with Realtek's proprietary
|
||||||
tag format. By setting bit 6 (0x40) of the respective port configuration
|
tag format. By setting bit 6 (0x40) of the respective port configuration
|
||||||
@@ -59,9 +51,7 @@ registers 0x1238, 0x1338, ...
|
|||||||
The code currently provides the following functions:
|
The code currently provides the following functions:
|
||||||
```
|
```
|
||||||
void port_pvid_set(uint8_t port, __xdata uint16_t pvid) __banked;
|
void port_pvid_set(uint8_t port, __xdata uint16_t pvid) __banked;
|
||||||
uint16_t port_pvid_get(uint8_t port) __banked;
|
void vlan_create(uint16_t vlan, uint16_t members, uint16_t tagged) __banked;
|
||||||
void vlan_create(void) __banked; // reads from global vlan_settings
|
|
||||||
int8_t vlan_get(register uint16_t vlan) __banked; // returns data in sfr_data
|
|
||||||
void vlan_delete(uint16_t vlan) __banked;
|
void vlan_delete(uint16_t vlan) __banked;
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -76,26 +66,9 @@ vlan <VLAN-ID> p[t/u]...
|
|||||||
vlan <VLAN-ID> d
|
vlan <VLAN-ID> d
|
||||||
deletes the VLAN
|
deletes the VLAN
|
||||||
|
|
||||||
vlan show
|
|
||||||
Dumps the current ingress vlan settings.
|
|
||||||
|
|
||||||
vlan <VLAN-ID> mgmt
|
|
||||||
Restricts network access to the switch (web UI, syslog) to the given
|
|
||||||
VLAN. Use `vlan 0 mgmt` to disable the filter. Default is `vlan 1 mgmt`.
|
|
||||||
Warning: setting this to an unreachable VLAN locks out the web UI;
|
|
||||||
recovery requires serial console.
|
|
||||||
|
|
||||||
pvid <port> <VLAN-ID>
|
pvid <port> <VLAN-ID>
|
||||||
assigns PVID to a port. ports are numbered as on the casing
|
assigns PVID to a port. ports are numbered as on the casing
|
||||||
|
|
||||||
ingress [p]<t|u|a>...
|
ingress <port> [tagged|untagged|all]
|
||||||
Allows ingress packages on port `p` only when `t`agged, `u`ntagged or `a`ny.
|
Allows ingress only for the named packages at the given port
|
||||||
Multiple ports can be given at once as in vlan. When `p` is missing, all ports
|
|
||||||
are assigned the same mode. CPU port can not be changed.
|
|
||||||
|
|
||||||
Use `vlan show` to see current configuration.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
`ingress 1t 2a` -> Set port 1 as tagged input only, set port 2 accepting any frames.
|
|
||||||
`ingress a` -> Set all ports to accept both tagged and untagged frames (default behaviour).
|
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<script src="/main.js"></script>
|
|
||||||
<script src="/i18n.js"></script>
|
|
||||||
<link rel="stylesheet" href="style.css">
|
|
||||||
<title data-i18n="bw_title">Ingress and Egress Bandwidth</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav id="sidebar"></nav>
|
|
||||||
<div style="margin-left:16%;padding:1px 16px;height:1000px;">
|
|
||||||
<div id="ports"></div>
|
|
||||||
<h1 data-i18n="bw_heading">Ingress and Egress Bandwidth</h1>
|
|
||||||
<table id="bwtable">
|
|
||||||
<tr> <th> </th> <th colspan="3" data-i18n="bw_ingress"> Ingress </th> <th colspan="2" data-i18n="bw_egress">Egress</th> <th></th></tr>
|
|
||||||
<tr> <th data-i18n="bw_col_port">Port</th> <th data-i18n="bw_col_limit">Limit</th> <th data-i18n="bw_col_bandwidth">Bandwidth [kBit/s]</th> <th data-i18n="bw_col_flow">Flow Control</th> <th data-i18n="bw_col_limit">Limit</th> <th data-i18n="bw_col_bandwidth">Bandwidth [kBit/s]</th> <th data-i18n="bw_col_apply">Apply</th></tr>
|
|
||||||
</table>
|
|
||||||
<script src="/bandwidth.js"></script>
|
|
||||||
</div>
|
|
||||||
<script src="/navigation.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,138 +0,0 @@
|
|||||||
const iLayout = '" type="number" maxlength="10" size="10" onfocus="inputFocus(';
|
|
||||||
function createBW() {
|
|
||||||
var tbl = document.getElementById('bwtable');
|
|
||||||
const limit = '<input type="checkbox" id="limit_port" onchange="exec();">'
|
|
||||||
if (tbl.rows.length <= 2 && numPorts) {
|
|
||||||
console.log("CREATING TABLE ", tbl.rows.length);
|
|
||||||
for (let i = 2; i < 2 + numPorts; i++) {
|
|
||||||
const tr = tbl.insertRow();
|
|
||||||
let td = tr.insertCell(); td.appendChild(document.createTextNode(t('common_port') + (i-1)));
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = limit.replaceAll("limit_port", "ilimit_port_" + i).replace("exec()", "iClicked(" + i + ")");
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = t('bw_unlimited');
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = limit.replaceAll("limit_port", "fc_port_" + i).replace("exec()", "document.getElementById('bwapply_" + i + "').disabled=false;");
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = limit.replaceAll("limit_port", "elimit_port_" + i).replace("exec()", "eClicked(" + i + ")");
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = t('bw_unlimited');
|
|
||||||
var button = '<button type="button" id="bwapply_' + i + '" style="margin: 0 0 0 24px" onclick="applyBandwidth(' + i + ');">' + t('bw_col_apply') + '</button>';
|
|
||||||
td = tr.insertCell();
|
|
||||||
td.innerHTML = button;
|
|
||||||
document.getElementById("bwapply_" + i).disabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function iClicked(i)
|
|
||||||
{
|
|
||||||
document.getElementById("bwapply_" + i).disabled=false;
|
|
||||||
var tbl = document.getElementById('bwtable');
|
|
||||||
var tr = tbl.rows[i];
|
|
||||||
if (!document.getElementById("ilimit_port_" + i).checked) {
|
|
||||||
tr.cells[2].innerHTML = t('bw_unlimited');
|
|
||||||
document.getElementById("fc_port_" + i).disabled = true;
|
|
||||||
document.getElementById("fc_port_" + i).checked = true;
|
|
||||||
} else {
|
|
||||||
tr.cells[2].innerHTML = '<input id="ibw_' + i + iLayout + i + ')" value="0"/>';
|
|
||||||
document.getElementById("fc_port_" + i).disabled = false;
|
|
||||||
document.getElementById("fc_port_" + i).checked = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function eClicked(i)
|
|
||||||
{
|
|
||||||
document.getElementById("bwapply_" + i).disabled=false;
|
|
||||||
var tbl = document.getElementById('bwtable');
|
|
||||||
var tr = tbl.rows[i];
|
|
||||||
if (!document.getElementById("elimit_port_" + i).checked) {
|
|
||||||
tr.cells[5].innerHTML = t('bw_unlimited');
|
|
||||||
} else {
|
|
||||||
tr.cells[5].innerHTML = '<input id="ebw_' + i + iLayout + i + ')" value="0"/>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function inputFocus(i)
|
|
||||||
{
|
|
||||||
document.getElementById("bwapply_" + i).disabled=false;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function doCMD(cmd)
|
|
||||||
{
|
|
||||||
console.log("Sending >" + cmd + "<");
|
|
||||||
try {
|
|
||||||
const response = await fetch('/cmd', {
|
|
||||||
method: 'POST',
|
|
||||||
body: cmd
|
|
||||||
});
|
|
||||||
console.log('Completed!', response);
|
|
||||||
} catch(err) {
|
|
||||||
console.error(`Error: ${err}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function applyBandwidth(i) {
|
|
||||||
var tbl = document.getElementById('bwtable');
|
|
||||||
var tr = tbl.rows[i];
|
|
||||||
var cmd = "bw in " + (i-1) + " off";
|
|
||||||
if (document.getElementById("ilimit_port_" + i).checked)
|
|
||||||
cmd = 'bw in ' + (i-1) + ' ' + parseInt(document.getElementById("ibw_" + i).value).toString(16).padStart(4, "0");;
|
|
||||||
doCMD(cmd);
|
|
||||||
if (document.getElementById("ilimit_port_" + i).checked) {
|
|
||||||
if (!document.getElementById("fc_port_" + i).checked)
|
|
||||||
cmd = "bw in " + (i-1) + " drop";
|
|
||||||
doCMD(cmd);
|
|
||||||
}
|
|
||||||
var cmd = "bw out " + (i-1) + " off";
|
|
||||||
if (document.getElementById("elimit_port_" + i).checked)
|
|
||||||
cmd = 'bw out ' + (i-1) + ' ' + parseInt(document.getElementById("ebw_" + i).value).toString(16).padStart(4, "0");;
|
|
||||||
doCMD(cmd);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getBW() {
|
|
||||||
var xhttp = new XMLHttpRequest();
|
|
||||||
xhttp.onreadystatechange = function() {
|
|
||||||
console.log("IN getBW ");
|
|
||||||
if (this.readyState == 4 && this.status == 200) {
|
|
||||||
const s = JSON.parse(xhttp.responseText);
|
|
||||||
console.log("BW: ", JSON.stringify(s));
|
|
||||||
var tbl = document.getElementById('bwtable');
|
|
||||||
if (tbl.rows.length > 2 && numPorts) {
|
|
||||||
for (let i = 2; i < 2 + numPorts; i++) {
|
|
||||||
p = s[i-2];
|
|
||||||
let n = p.portNum;
|
|
||||||
let tr = tbl.rows[n+1];
|
|
||||||
if (!document.getElementById("bwapply_" + (n+1)).disabled)
|
|
||||||
continue;
|
|
||||||
console.log("Table Update row: " + i + " portNum is " + n + ", pState is " + pState[i-2] + ", row number is " + (n+1));
|
|
||||||
let iBW = parseInt(p.iBW,16) * 16; let eBW = parseInt(p.eBW,16) * 16;
|
|
||||||
document.getElementById("ilimit_port_" + (n+1)).checked = p.iLimited;
|
|
||||||
document.getElementById("elimit_port_" + (n+1)).checked = p.eLimited;
|
|
||||||
if (!p.iLimited) {
|
|
||||||
tr.cells[2].innerHTML = t('bw_unlimited');
|
|
||||||
} else {
|
|
||||||
tr.cells[2].innerHTML = '<input id="ibw_' + (n+1) + iLayout + (n+1) + ')" value="' + iBW +'"/>';
|
|
||||||
}
|
|
||||||
if (!p.eLimited) {
|
|
||||||
tr.cells[5].innerHTML = t('bw_unlimited');
|
|
||||||
} else {
|
|
||||||
tr.cells[5].innerHTML = '<input id="ebw_' + (n+1) + iLayout + (n+1) + ')" value="' + eBW +'"/>';
|
|
||||||
}
|
|
||||||
document.getElementById("fc_port_" + (n+1)).checked = p.iFC==1?true:false;
|
|
||||||
document.getElementById("fc_port_" + (n+1)).disabled = p.iLimited==1?false:true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
xhttp.open("GET", "/bandwidth.json", true);
|
|
||||||
xhttp.timeout = 1500; sendXHTTP(xhttp);
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener("load", function() {
|
|
||||||
update( () => {
|
|
||||||
createBW();
|
|
||||||
getBW();
|
|
||||||
const interval = setInterval(update, 2000);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../config.txt
|
||||||
@@ -1,90 +1,35 @@
|
|||||||
var configInterval = Number();
|
var configInterval = Number();
|
||||||
var configuration = [];
|
var configuration = [];
|
||||||
const conf_cmds = [
|
const conf_cmds = [
|
||||||
/^ip\s+(\d{1,3}\.){3}\d{1,3}$/,
|
/ip\s+(\d{1,3}\.){3}\d{1,3}/, /gw\s+(\d{1,3}\.){3}\d{1,3}/, /netmask\s+(\d{1,3}\.){3}\d{1,3}/,
|
||||||
/^ip\s+dhcp$/,
|
/eee(\s+\d)?\s+(on|off)/, /mirror(\s+(\d|10))(\s+(\d|10)(t|r)?)+/, /vlan\s+(\d{1,4})(\s+(\d|10)(t|u)?)+/
|
||||||
/^gw\s+(\d{1,3}\.){3}\d{1,3}$/,
|
|
||||||
/^netmask\s+(\d{1,3}\.){3}\d{1,3}$/,
|
|
||||||
/^syslog\s+(on|off)$/,
|
|
||||||
/^syslog\s+ip\s+(\d{1,3}\.){3}\d{1,3}$/,
|
|
||||||
/^passwd\s+\S+$/,
|
|
||||||
/^vlan\s+\d{1,4}\s+d$/,
|
|
||||||
/^vlan\s+\d{1,4}\s+mgmt$/,
|
|
||||||
/^vlan\s+\d{1,4}(\s+[a-zA-Z]\w*)?(\s+\d{1,2}[tu]?)+$/,
|
|
||||||
/^pvid\s+\d{1,2}\s+\d{1,4}$/,
|
|
||||||
/^ingress(\s+\d{1,2}[tua])+$/,
|
|
||||||
/^ingress\s+[tua]$/,
|
|
||||||
/^port\s+\d{1,2}\s+(10m|100m|1g|2g5|5g|10g|auto|on|off)(\s+(half|full))?$/,
|
|
||||||
/^port\s+\d{1,2}\s+name\s+\S+$/,
|
|
||||||
/^eee(\s+\d{1,2})?\s+(on|off)$/,
|
|
||||||
/^mirror(\s+\d{1,2})(\s+\d{1,2}[tr]?)+$/,
|
|
||||||
/^lag\s+\d(\s+\d{1,2})+$/,
|
|
||||||
/^laghash\s+\d(\s+\w+)+$/,
|
|
||||||
/^isolate\s+\d{1,2}(\s+(off|\d{1,2}))+$/,
|
|
||||||
/^stp\s+(on|off)$/,
|
|
||||||
/^igmp\s+(on|off)$/,
|
|
||||||
/^mtu\s+\d{1,2}\s+\d+$/,
|
|
||||||
/^bw\s+(in|out)\s+\d{1,2}\s+\S+$/,
|
|
||||||
/^hostname\s+.{1,23}$/,
|
|
||||||
];
|
];
|
||||||
const conf_overwrite = [
|
const conf_overwrite = [
|
||||||
/^ip\b/,
|
/ip/, /gw/, /netmask/, /eee\s+\w+/, /eee(\s+\w)/, /mirror/, /vlan\s+(\d{1,4})/
|
||||||
/^gw\b/,
|
|
||||||
/^netmask\b/,
|
|
||||||
/^syslog\s+ip\b/,
|
|
||||||
/^syslog\b/,
|
|
||||||
/^passwd\b/,
|
|
||||||
/^vlan\s+\d{1,4}\s+mgmt$/,
|
|
||||||
/^vlan\s+\d{1,4}(?!\s+mgmt\b)/,
|
|
||||||
/^pvid\s+\d{1,2}\b/,
|
|
||||||
/^ingress\b/,
|
|
||||||
/^port\s+\d{1,2}(?!\s+name\b)/,
|
|
||||||
/^port\s+\d{1,2}\s+name\b/,
|
|
||||||
/^eee\s+\d{1,2}\b/,
|
|
||||||
/^eee\b/,
|
|
||||||
/^mirror\b/,
|
|
||||||
/^lag\s+\d+\b/,
|
|
||||||
/^laghash\b/,
|
|
||||||
/^isolate\s+\d{1,2}\b/,
|
|
||||||
/^stp\b/,
|
|
||||||
/^igmp\b/,
|
|
||||||
/^mtu\s+\d{1,2}\b/,
|
|
||||||
/^bw\s+(in|out)\s+\d{1,2}\b/,
|
|
||||||
/^hostname\b/,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
function parseConf(s){
|
function parseConf(s){
|
||||||
var a = s.split(/\r\n|\n/);
|
var a = s.split(/\r\n|\n/);
|
||||||
for (var l = 0; l < a.length; l++) {
|
for (var l = 0; l < a.length; l++) {
|
||||||
var line = a[l].trim().replace(/\s+/g, ' ');
|
if (!a[l].length || a[l] == "\n" || a[l] == "\r\n")
|
||||||
if (!line.length) continue;
|
continue;
|
||||||
const deleteMatch = line.match(/^vlan\s+(\d{1,4})\s+d$/);
|
console.log(l + ' --> ' + a[l]);
|
||||||
if (deleteMatch) {
|
var ignore = true;
|
||||||
const prefix = "vlan " + deleteMatch[1] + " ";
|
for (const x of conf_cmds)
|
||||||
configuration = configuration.filter(c => !c.startsWith(prefix));
|
if (x.test(a[l])) ignore = false;
|
||||||
continue;
|
if (ignore) continue;
|
||||||
}
|
for (const x of conf_overwrite) {
|
||||||
console.log(l + ' --> ' + line);
|
if (x.test(a[l])) {
|
||||||
var ignore = true;
|
console.log("Match ", x, " to ", a[l]);
|
||||||
for (const x of conf_cmds)
|
m = a[l].match(x);
|
||||||
if (x.test(line)) { ignore = false; break; }
|
console.log("Starts with ", m[0]);
|
||||||
if (ignore) continue;
|
configuration = configuration.filter(item => !(item.startsWith(m[0])));
|
||||||
for (const x of conf_overwrite) {
|
}
|
||||||
if (x.test(line)) {
|
|
||||||
let m = line.match(x);
|
|
||||||
let matchStr = m[0];
|
|
||||||
configuration = configuration.filter(item =>
|
|
||||||
!(item === matchStr || (item.startsWith(matchStr + " ") && !item.endsWith(" mgmt") && !item.startsWith(matchStr + " name "))));
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
configuration.push(a[l]);
|
||||||
}
|
}
|
||||||
// Only one management VLAN can be active, so drop any previous mgmt entry
|
console.log("Configuration now:");
|
||||||
if (/^vlan\s+\d{1,4}\s+mgmt$/.test(line))
|
for (const x of configuration) { console.log(x); }
|
||||||
configuration = configuration.filter(item => !/^vlan\s+\d{1,4}\s+mgmt$/.test(item));
|
|
||||||
configuration.push(line);
|
|
||||||
}
|
|
||||||
console.log("Configuration now:");
|
|
||||||
for (const x of configuration) { console.log(x); }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchConfig() {
|
async function fetchConfig() {
|
||||||
@@ -104,8 +49,7 @@ async function fetchCmdLog() {
|
|||||||
console.log("CMD-Log: ", response);
|
console.log("CMD-Log: ", response);
|
||||||
const t = await response.text();
|
const t = await response.text();
|
||||||
return t;
|
return t;
|
||||||
} catch(err) {
|
} catch(error) {
|
||||||
console.error("Error: ", err);
|
console.error("Error: ", err);
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,21 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<script src="/main.js"></script>
|
<script src="/main.js"></script>
|
||||||
<script src="/i18n.js"></script>
|
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<title data-i18n="eee_title">EEE Configuration</title>
|
<title>EEE Configuration</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav id="sidebar"></nav>
|
<nav id="sidebar"></nav>
|
||||||
<div style="margin-left:16%;padding:1px 16px;height:1000px;">
|
<div style="margin-left:16%;padding:1px 16px;height:1000px;">
|
||||||
<div id="ports"></div>
|
<div id="ports"></div>
|
||||||
<h1 data-i18n="eee_heading">EEE Status</h1>
|
<h1>EEE Status</h1>
|
||||||
<table id="eeetable">
|
<table id="eeetable">
|
||||||
<tr> <th> </th> <th colspan="3" data-i18n="eee_advertising"> Advertising </th> <th colspan="3" data-i18n="eee_partner">Link-Partner advertises</th> <th></th></tr>
|
<tr> <th> </th> <th colspan="3"> Advertising </th> <th colspan="3">Link-Partner advertises</th> <th></th></tr>
|
||||||
<tr> <th data-i18n="eee_port">Port</th> <th>2.5G</th> <th>1G</th> <th>100M</th> <th>2.5G</th> <th>1G</th> <th>100M</th> <th data-i18n="eee_active">Active?</th></tr>
|
<tr> <th>Port</th> <th>2.5G</th> <th>1G</th> <th>100M</th> <th>2.5G</th> <th>1G</th> <th>100M</th> <th>Active?</th></tr>
|
||||||
</table>
|
</table>
|
||||||
<div>
|
<div>
|
||||||
<input style="width:20%;" class="action" id="eee_enable" onclick="eeeSub(0, 1);" type="button" data-i18n="eee_enable" value="Enable EEE">
|
<input style="width:20%;" class="action" id="eee_enable" onclick="eeeSub(0, 1);" type="button" value="Enable EEE">
|
||||||
<input style="width:20%;" class="action" id="eee_disable" onclick="eeeSub(0, 0);" type="button" data-i18n="eee_disable" value="Disable EEE">
|
<input style="width:20%;" class="action" id="eee_enable" onclick="eeeSub(0, 0);" type="button" value="Disable EEE">
|
||||||
</div>
|
</div>
|
||||||
<script src="/eee.js"></script>
|
<script src="/eee.js"></script>
|
||||||
<script src="/eee_sub.js"></script>
|
<script src="/eee_sub.js"></script>
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
function createEEE() {
|
function createEEE() {
|
||||||
var tbl = document.getElementById('eeetable');
|
var tbl = document.getElementById('eeetable');
|
||||||
if (tbl.rows.length <= 2 && numPorts) {
|
if (tbl.rows.length <= 2 && numPorts) {
|
||||||
|
clearInterval(createEEEInterval);
|
||||||
console.log("CREATING TABLE ", tbl.rows.length);
|
console.log("CREATING TABLE ", tbl.rows.length);
|
||||||
for (let i = 2; i < 2 + numPorts; i++) {
|
for (let i = 2; i < 2 + numPorts; i++) {
|
||||||
console.log("Table row: " + i + "pState: " + pState[i-2]);
|
console.log("Table row: " + i + "pState: " + pState[i-2]);
|
||||||
const tr = tbl.insertRow();
|
const tr = tbl.insertRow();
|
||||||
let td = tr.insertCell(); td.appendChild(document.createTextNode(t('common_port') + (i-1)));
|
let td = tr.insertCell(); td.appendChild(document.createTextNode(`Port ${i-1}`));
|
||||||
for (let j = 0; j < 7; j++) {
|
for (let j = 0; j < 7; j++) {
|
||||||
td = tr.insertCell(); td.appendChild(document.createTextNode(" "));
|
td = tr.insertCell(); td.appendChild(document.createTextNode(" "));
|
||||||
}
|
}
|
||||||
@@ -28,8 +29,8 @@ function getEEE() {
|
|||||||
let tr = tbl.rows[n+1];
|
let tr = tbl.rows[n+1];
|
||||||
if (!p.isSFP) {
|
if (!p.isSFP) {
|
||||||
let eee = parseInt(p.eee,2); let lp = parseInt(p.eee_lp,2);
|
let eee = parseInt(p.eee,2); let lp = parseInt(p.eee_lp,2);
|
||||||
tr.cells[1].innerHTML = `${eee&4?t('eee_on'):t('eee_off')}`; tr.cells[2].innerHTML = `${eee&2?t('eee_on'):t('eee_off')}`; tr.cells[3].innerHTML = `${eee&1?t('eee_on'):t('eee_off')}`;
|
tr.cells[1].innerHTML = `${eee&4?"ON":"OFF"}`; tr.cells[2].innerHTML = `${eee&2?"ON":"OFF"}`; tr.cells[3].innerHTML = `${eee&1?"ON":"OFF"}`;
|
||||||
tr.cells[4].innerHTML = `${lp&4?t('eee_on'):t('eee_off')}`; tr.cells[5].innerHTML = `${lp&2?t('eee_on'):t('eee_off')}`; tr.cells[6].innerHTML = `${lp&1?t('eee_on'):t('eee_off')}`;
|
tr.cells[4].innerHTML = `${lp&4?"ON":"OFF"}`; tr.cells[5].innerHTML = `${lp&2?"ON":"OFF"}`; tr.cells[6].innerHTML = `${lp&1?"ON":"OFF"}`;
|
||||||
tr.cells[7].innerHTML = `${p.active}`;
|
tr.cells[7].innerHTML = `${p.active}`;
|
||||||
tr.classList.toggle('disabled', pState[i-2] < 0); tr.classList.toggle('isNOK', !p.active); tr.classList.toggle('isOK', p.active);
|
tr.classList.toggle('disabled', pState[i-2] < 0); tr.classList.toggle('isNOK', !p.active); tr.classList.toggle('isOK', p.active);
|
||||||
}
|
}
|
||||||
@@ -39,14 +40,11 @@ function getEEE() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
xhttp.open("GET", "/eee.json", true);
|
xhttp.open("GET", "/eee.json", true);
|
||||||
xhttp.timeout = 1500; sendXHTTP(xhttp);
|
xhttp.timeout = 1500; xhttp.send();
|
||||||
}
|
}
|
||||||
|
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
update( () => {
|
getEEE();
|
||||||
createEEE();
|
const iCount = setInterval(getEEE, 2000);
|
||||||
getEEE();
|
|
||||||
const interval = setInterval(update, 2000);
|
|
||||||
const iCount = setInterval(getEEE, 2000);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
const createEEEInterval = setInterval(createEEE, 1000);
|
||||||
|
|||||||
@@ -1,603 +0,0 @@
|
|||||||
var LANG = {
|
|
||||||
en: {
|
|
||||||
nav_overview: 'Overview',
|
|
||||||
nav_port_config: 'Port Configuration',
|
|
||||||
nav_port_stat: 'Port Statistics',
|
|
||||||
nav_l2: 'L2 Configuration',
|
|
||||||
nav_mirror: 'Mirroring',
|
|
||||||
nav_lag: 'Link Aggregation',
|
|
||||||
nav_eee: 'EEE',
|
|
||||||
nav_bandwidth: 'Bandwidth Limits',
|
|
||||||
nav_system: 'System Settings',
|
|
||||||
nav_fw_update: 'Firmware Update',
|
|
||||||
|
|
||||||
port_name: 'Name',
|
|
||||||
port_status: 'Status',
|
|
||||||
port_not_enabled: 'Not enabled.',
|
|
||||||
port_link_speed: 'Link speed',
|
|
||||||
port_vendor: 'Vendor',
|
|
||||||
port_model: 'Model',
|
|
||||||
port_serial: 'Serial',
|
|
||||||
port_temp: 'Temp',
|
|
||||||
port_vcc: 'Vcc',
|
|
||||||
port_tx_fault: 'TX-Fault',
|
|
||||||
port_tx_disabled: 'TX-Disabled',
|
|
||||||
port_tx_bias: 'TX-Bias',
|
|
||||||
port_tx_power: 'TX-Power',
|
|
||||||
port_rx_power: 'RX-Power',
|
|
||||||
port_rx_los: 'RX-LOS',
|
|
||||||
|
|
||||||
speed_disabled: 'Disabled',
|
|
||||||
speed_down: 'Down',
|
|
||||||
|
|
||||||
port_title: 'FreeSwitchOS Port Configuration',
|
|
||||||
port_heading: 'Port Configuration',
|
|
||||||
port_col_port: 'Port',
|
|
||||||
port_col_name: 'Name',
|
|
||||||
port_col_speed: 'Current Link Speed',
|
|
||||||
port_col_set_speed: 'Set Speed',
|
|
||||||
port_col_disabled: 'Disabled',
|
|
||||||
port_col_apply: 'Apply',
|
|
||||||
port_mtu_heading: 'Configure Maximum Frame Size (MTU) forwarded at Port',
|
|
||||||
port_auto: 'Auto',
|
|
||||||
port_2500m: '2500MBit/Full',
|
|
||||||
port_1000m: '1000MBit/Full',
|
|
||||||
port_100m_f: '100MBit/Full',
|
|
||||||
port_100m_h: '100MBit/Half',
|
|
||||||
port_10m_f: '10MBit/Full',
|
|
||||||
port_10m_h: '10MBit/Half',
|
|
||||||
port_apply: 'Apply',
|
|
||||||
|
|
||||||
stat_title: 'FreeSwitchOS Port Statistics',
|
|
||||||
stat_heading: 'Port Statistics',
|
|
||||||
stat_detailed: 'Detailed Port Statistics',
|
|
||||||
stat_close: 'Close',
|
|
||||||
stat_col_port: 'Port',
|
|
||||||
stat_col_name: 'Name',
|
|
||||||
stat_col_link: 'link',
|
|
||||||
stat_col_tx_good: 'TX Good',
|
|
||||||
stat_col_tx_bad: 'TX Bad',
|
|
||||||
stat_col_rx_good: 'RX Good',
|
|
||||||
stat_col_rx_bad: 'RX Bad',
|
|
||||||
stat_col_all: 'All Counters',
|
|
||||||
stat_counter: 'Counter',
|
|
||||||
stat_value: 'Value',
|
|
||||||
stat_show: 'Show',
|
|
||||||
|
|
||||||
vlan_title: 'FreeSwitchOS VLAN Configuration',
|
|
||||||
vlan_heading: 'VLAN Configuration',
|
|
||||||
vlan_select: 'VLAN Select:',
|
|
||||||
vlan_choose: '— VLAN Choose —',
|
|
||||||
vlan_id: 'VLAN ID:',
|
|
||||||
vlan_get_config: 'Get Configuration',
|
|
||||||
vlan_name: 'VLAN Name:',
|
|
||||||
vlan_tagged: 'Tagged Ports',
|
|
||||||
vlan_untagged: 'Untagged Ports',
|
|
||||||
vlan_select_all: 'Select all',
|
|
||||||
vlan_pvid: 'Use as default VLAN for incoming traffic (PVID)',
|
|
||||||
vlan_update: 'Update / Create',
|
|
||||||
vlan_configured: 'Configured VLANs',
|
|
||||||
vlan_col_name: 'Name',
|
|
||||||
vlan_col_member: 'Member Ports',
|
|
||||||
vlan_col_tagged: 'Tagged Ports',
|
|
||||||
vlan_col_untagged: 'Untagged Ports',
|
|
||||||
vlan_col_pvid: 'PVID Ports',
|
|
||||||
vlan_col_delete: 'Delete',
|
|
||||||
vlan_set_id_first: 'Set VLAN ID first',
|
|
||||||
vlan_delete_confirm: 'Delete VLAN ',
|
|
||||||
|
|
||||||
lag_title: 'Link Aggregation Configuration',
|
|
||||||
lag_heading: 'Link Aggregation Groups Configuration',
|
|
||||||
lag_update: 'Update / Create',
|
|
||||||
|
|
||||||
mirror_title: 'Mirror Configuration',
|
|
||||||
mirror_heading: 'Mirror Configuration',
|
|
||||||
mirror_enabled: 'Enabled:',
|
|
||||||
mirror_port: 'Mirroring Port:',
|
|
||||||
mirror_tx: 'Mirrored Ports (TX)',
|
|
||||||
mirror_rx: 'Mirrored Ports (RX)',
|
|
||||||
mirror_update: 'Update / Create',
|
|
||||||
mirror_disable: 'Disable Mirroring',
|
|
||||||
mirror_set_port_first: 'Set Mirroring Port first',
|
|
||||||
mirror_select_ports: 'Select Mirrored Ports',
|
|
||||||
|
|
||||||
eee_title: 'EEE Configuration',
|
|
||||||
eee_heading: 'EEE Status',
|
|
||||||
eee_advertising: 'Advertising',
|
|
||||||
eee_partner: 'Link-Partner advertises',
|
|
||||||
eee_port: 'Port',
|
|
||||||
eee_active: 'Active?',
|
|
||||||
eee_enable: 'Enable EEE',
|
|
||||||
eee_disable: 'Disable EEE',
|
|
||||||
eee_on: 'ON',
|
|
||||||
eee_off: 'OFF',
|
|
||||||
|
|
||||||
l2_title: 'FreeSwitchOS L2 Configuration',
|
|
||||||
l2_heading: 'L2 Configuration',
|
|
||||||
l2_col_port: 'Port',
|
|
||||||
l2_col_type: 'Type',
|
|
||||||
l2_col_remove: 'Remove Entry',
|
|
||||||
l2_shown: 'Shown:',
|
|
||||||
l2_delete: 'Delete',
|
|
||||||
l2_static: 'static',
|
|
||||||
l2_learned: 'learned',
|
|
||||||
|
|
||||||
bw_title: 'Ingress and Egress Bandwidth',
|
|
||||||
bw_heading: 'Ingress and Egress Bandwidth',
|
|
||||||
bw_ingress: 'Ingress',
|
|
||||||
bw_egress: 'Egress',
|
|
||||||
bw_col_port: 'Port',
|
|
||||||
bw_col_limit: 'Limit',
|
|
||||||
bw_col_bandwidth: 'Bandwidth [kBit/s]',
|
|
||||||
bw_col_flow: 'Flow Control',
|
|
||||||
bw_col_apply: 'Apply',
|
|
||||||
bw_unlimited: 'UNLIMITED',
|
|
||||||
|
|
||||||
sys_title: 'System Settings',
|
|
||||||
sys_tab_system: 'System',
|
|
||||||
sys_tab_advanced: 'Advanced',
|
|
||||||
sys_tab_console: 'Console',
|
|
||||||
sys_heading: 'System Settings',
|
|
||||||
sys_ip: 'IP address:',
|
|
||||||
sys_model: 'Model:',
|
|
||||||
sys_hostname: 'Hostname:',
|
|
||||||
sys_apply: 'Apply',
|
|
||||||
sys_netmask: 'Netmask:',
|
|
||||||
sys_gateway: 'Gateway:',
|
|
||||||
sys_language: 'Language:',
|
|
||||||
sys_mgmt_vlan: 'Management VLAN:',
|
|
||||||
sys_mgmt_untagged: 'untagged',
|
|
||||||
sys_mgmt_confirm: 'Move switch management to VLAN ',
|
|
||||||
sys_mgmt_warn: 'The switch will start tagging its own traffic with that VLAN. If the port you are connected through does not carry it, this page becomes unreachable and the setting can only be undone over the console. Continue?',
|
|
||||||
sys_ip_note: 'When updating the above settings, remember to point your browser to the new IP afterwards:',
|
|
||||||
sys_update: 'Update Settings',
|
|
||||||
sys_save_label: 'Save all current settings to Flash:',
|
|
||||||
sys_save: 'Save Settings to Flash',
|
|
||||||
sys_advanced: 'Advanced Settings',
|
|
||||||
sys_startup_config: 'Startup configuration:',
|
|
||||||
sys_startup_warn: 'Be careful when saving the directly edited startup configuration, you can lock yourself out:',
|
|
||||||
sys_clear_config: 'Clear Startup Config',
|
|
||||||
sys_save_startup: 'Save Startup Settings to Flash',
|
|
||||||
sys_reset: 'Reset Switch',
|
|
||||||
sys_console: 'Console Command',
|
|
||||||
sys_enter_cmd: 'Enter command:',
|
|
||||||
sys_send_cmd: 'Send Command',
|
|
||||||
sys_console_warn: 'Be careful when entering console commands, you can lock yourself out!',
|
|
||||||
sys_invalid_ip: 'Invalid ip:',
|
|
||||||
sys_reset_confirm: 'Are you sure you want to reset the switch?',
|
|
||||||
sys_resetting: 'Switch is resetting. Please wait and refresh the page.',
|
|
||||||
|
|
||||||
login_title: 'RTL Switch Login',
|
|
||||||
login_heading: 'RTL Switch Login',
|
|
||||||
login_wrong: 'Wrong password!',
|
|
||||||
login_password: 'Password',
|
|
||||||
login_login: 'Login',
|
|
||||||
|
|
||||||
index_title: 'FreeSwitchOS Main Page',
|
|
||||||
index_heading: 'Switch Configuration',
|
|
||||||
index_settings: 'Settings',
|
|
||||||
|
|
||||||
update_title: 'Firmware update',
|
|
||||||
update_heading: 'Firmware Update',
|
|
||||||
update_instruction: 'Choose a firmware update file to upload:',
|
|
||||||
update_upload: 'Upload File',
|
|
||||||
|
|
||||||
common_port: 'Port ',
|
|
||||||
common_pkts: ' pkts',
|
|
||||||
},
|
|
||||||
|
|
||||||
ja: {
|
|
||||||
nav_overview: '概要',
|
|
||||||
nav_port_config: 'ポート設定',
|
|
||||||
nav_port_stat: 'ポート統計',
|
|
||||||
nav_l2: 'L2 設定',
|
|
||||||
nav_mirror: 'ミラーリング',
|
|
||||||
nav_lag: 'リンクアグリゲーション',
|
|
||||||
nav_eee: 'EEE',
|
|
||||||
nav_bandwidth: '帯域制限',
|
|
||||||
nav_system: 'システム設定',
|
|
||||||
nav_fw_update: 'ファームウェア更新',
|
|
||||||
|
|
||||||
port_name: '名前',
|
|
||||||
port_status: '状態',
|
|
||||||
port_not_enabled: '無効',
|
|
||||||
port_link_speed: 'リンク速度',
|
|
||||||
port_vendor: 'ベンダー',
|
|
||||||
port_model: 'モデル',
|
|
||||||
port_serial: 'シリアル',
|
|
||||||
port_temp: '温度',
|
|
||||||
port_vcc: '電圧',
|
|
||||||
port_tx_fault: 'TX 障害',
|
|
||||||
port_tx_disabled: 'TX 無効',
|
|
||||||
port_tx_bias: 'TX バイアス',
|
|
||||||
port_tx_power: 'TX 電力',
|
|
||||||
port_rx_power: 'RX 電力',
|
|
||||||
port_rx_los: 'RX 信号ロス',
|
|
||||||
|
|
||||||
speed_disabled: '無効',
|
|
||||||
speed_down: 'リンクダウン',
|
|
||||||
|
|
||||||
port_title: 'FreeSwitchOS ポート設定',
|
|
||||||
port_heading: 'ポート設定',
|
|
||||||
port_col_port: 'ポート',
|
|
||||||
port_col_name: '名前',
|
|
||||||
port_col_speed: '現在のリンク速度',
|
|
||||||
port_col_set_speed: '速度設定',
|
|
||||||
port_col_disabled: '無効',
|
|
||||||
port_col_apply: '適用',
|
|
||||||
port_mtu_heading: 'ポートの最大フレームサイズ (MTU) 設定',
|
|
||||||
port_auto: '自動',
|
|
||||||
port_2500m: '2500Mbps/全二重',
|
|
||||||
port_1000m: '1000Mbps/全二重',
|
|
||||||
port_100m_f: '100Mbps/全二重',
|
|
||||||
port_100m_h: '100Mbps/半二重',
|
|
||||||
port_10m_f: '10Mbps/全二重',
|
|
||||||
port_10m_h: '10Mbps/半二重',
|
|
||||||
port_apply: '適用',
|
|
||||||
|
|
||||||
stat_title: 'FreeSwitchOS ポート統計',
|
|
||||||
stat_heading: 'ポート統計',
|
|
||||||
stat_detailed: '詳細ポート統計',
|
|
||||||
stat_close: '閉じる',
|
|
||||||
stat_col_port: 'ポート',
|
|
||||||
stat_col_name: '名前',
|
|
||||||
stat_col_link: 'リンク',
|
|
||||||
stat_col_tx_good: 'TX 正常',
|
|
||||||
stat_col_tx_bad: 'TX 異常',
|
|
||||||
stat_col_rx_good: 'RX 正常',
|
|
||||||
stat_col_rx_bad: 'RX 異常',
|
|
||||||
stat_col_all: '全カウンタ',
|
|
||||||
stat_counter: 'カウンタ',
|
|
||||||
stat_value: '値',
|
|
||||||
stat_show: '表示',
|
|
||||||
|
|
||||||
vlan_title: 'FreeSwitchOS VLAN 設定',
|
|
||||||
vlan_heading: 'VLAN 設定',
|
|
||||||
vlan_select: 'VLAN 選択:',
|
|
||||||
vlan_choose: '— VLAN 選択 —',
|
|
||||||
vlan_id: 'VLAN ID:',
|
|
||||||
vlan_get_config: '設定取得',
|
|
||||||
vlan_name: 'VLAN 名:',
|
|
||||||
vlan_tagged: 'タグ付きポート',
|
|
||||||
vlan_untagged: 'タグ無しポート',
|
|
||||||
vlan_select_all: 'すべて選択',
|
|
||||||
vlan_pvid: '受信トラフィックのデフォルト VLAN (PVID)',
|
|
||||||
vlan_update: '更新 / 作成',
|
|
||||||
vlan_configured: '設定済み VLAN',
|
|
||||||
vlan_col_name: '名前',
|
|
||||||
vlan_col_member: 'メンバーポート',
|
|
||||||
vlan_col_tagged: 'タグ付きポート',
|
|
||||||
vlan_col_untagged: 'タグ無しポート',
|
|
||||||
vlan_col_pvid: 'PVID ポート',
|
|
||||||
vlan_col_delete: '削除',
|
|
||||||
vlan_set_id_first: 'VLAN ID を先に設定してください',
|
|
||||||
vlan_delete_confirm: 'VLAN 削除 ',
|
|
||||||
|
|
||||||
lag_title: 'リンクアグリゲーション設定',
|
|
||||||
lag_heading: 'リンクアグリゲーショングループ設定',
|
|
||||||
lag_update: '更新 / 作成',
|
|
||||||
|
|
||||||
mirror_title: 'ミラーリング設定',
|
|
||||||
mirror_heading: 'ミラーリング設定',
|
|
||||||
mirror_enabled: '有効:',
|
|
||||||
mirror_port: 'ミラーポート:',
|
|
||||||
mirror_tx: 'ミラー元ポート (TX)',
|
|
||||||
mirror_rx: 'ミラー元ポート (RX)',
|
|
||||||
mirror_update: '更新 / 作成',
|
|
||||||
mirror_disable: 'ミラーリング無効化',
|
|
||||||
mirror_set_port_first: 'ミラーポートを先に設定してください',
|
|
||||||
mirror_select_ports: 'ミラー元ポートを選択してください',
|
|
||||||
|
|
||||||
eee_title: 'EEE 設定',
|
|
||||||
eee_heading: 'EEE 状態',
|
|
||||||
eee_advertising: 'EEE アドバタイジング',
|
|
||||||
eee_partner: 'リンクパートナー広告',
|
|
||||||
eee_port: 'ポート',
|
|
||||||
eee_active: '有効?',
|
|
||||||
eee_enable: 'EEE 有効化',
|
|
||||||
eee_disable: 'EEE 無効化',
|
|
||||||
eee_on: 'オン',
|
|
||||||
eee_off: 'オフ',
|
|
||||||
|
|
||||||
l2_title: 'FreeSwitchOS L2 設定',
|
|
||||||
l2_heading: 'L2 設定',
|
|
||||||
l2_col_port: 'ポート',
|
|
||||||
l2_col_type: 'タイプ',
|
|
||||||
l2_col_remove: 'エントリ削除',
|
|
||||||
l2_shown: 'Shown:',
|
|
||||||
l2_delete: '削除',
|
|
||||||
l2_static: '静的',
|
|
||||||
l2_learned: '学習',
|
|
||||||
|
|
||||||
bw_title: '入力/出力帯域制限',
|
|
||||||
bw_heading: '入力/出力帯域制限',
|
|
||||||
bw_ingress: '入力',
|
|
||||||
bw_egress: '出力',
|
|
||||||
bw_col_port: 'ポート',
|
|
||||||
bw_col_limit: '制限',
|
|
||||||
bw_col_bandwidth: '帯域 [kbps]',
|
|
||||||
bw_col_flow: 'フロー制御',
|
|
||||||
bw_col_apply: '適用',
|
|
||||||
bw_unlimited: '制限無し',
|
|
||||||
|
|
||||||
sys_title: 'システム設定',
|
|
||||||
sys_tab_system: 'システム',
|
|
||||||
sys_tab_advanced: '詳細設定',
|
|
||||||
sys_tab_console: 'コンソール',
|
|
||||||
sys_heading: 'システム設定',
|
|
||||||
sys_ip: 'IP アドレス:',
|
|
||||||
sys_model: 'モデル:',
|
|
||||||
sys_hostname: 'ホスト名:',
|
|
||||||
sys_apply: '適用',
|
|
||||||
sys_netmask: 'ネットマスク:',
|
|
||||||
sys_gateway: 'ゲートウェイ:',
|
|
||||||
sys_language: '言語:',
|
|
||||||
sys_mgmt_vlan: 'Management VLAN:',
|
|
||||||
sys_mgmt_untagged: 'untagged',
|
|
||||||
sys_mgmt_confirm: 'Move switch management to VLAN ',
|
|
||||||
sys_mgmt_warn: 'The switch will start tagging its own traffic with that VLAN. If the port you are connected through does not carry it, this page becomes unreachable and the setting can only be undone over the console. Continue?',
|
|
||||||
sys_ip_note: '上記設定を変更した場合は、ブラウザで新しい IP にアクセスしてください:',
|
|
||||||
sys_update: '設定更新',
|
|
||||||
sys_save_label: '現在の設定をフラッシュに保存:',
|
|
||||||
sys_save: '設定をフラッシュに保存',
|
|
||||||
sys_advanced: '詳細設定',
|
|
||||||
sys_startup_config: '起動設定:',
|
|
||||||
sys_startup_warn: '起動設定を直接編集する際は注意してください。ロックアウトされる可能性があります:',
|
|
||||||
sys_clear_config: '起動設定クリア',
|
|
||||||
sys_save_startup: '起動設定をフラッシュに保存',
|
|
||||||
sys_reset: 'スイッチ再起動',
|
|
||||||
sys_console: 'コンソールコマンド',
|
|
||||||
sys_enter_cmd: 'コマンド入力:',
|
|
||||||
sys_send_cmd: 'コマンド送信',
|
|
||||||
sys_console_warn: 'コンソールコマンドは注意して入力してください。ロックアウトされる可能性があります!',
|
|
||||||
sys_invalid_ip: '無効な IP: ',
|
|
||||||
sys_reset_confirm: 'スイッチを再起動してもよろしいですか?',
|
|
||||||
sys_resetting: 'スイッチを再起動中です。しばらく待ってからページをリロードしてください。',
|
|
||||||
|
|
||||||
login_title: 'RTL スイッチ ログイン',
|
|
||||||
login_heading: 'RTL スイッチ ログイン',
|
|
||||||
login_wrong: 'パスワードが違います!',
|
|
||||||
login_password: 'パスワード',
|
|
||||||
login_login: 'ログイン',
|
|
||||||
|
|
||||||
index_title: 'FreeSwitchOS メインページ',
|
|
||||||
index_heading: 'スイッチ設定',
|
|
||||||
index_settings: '設定',
|
|
||||||
|
|
||||||
update_title: 'ファームウェア更新',
|
|
||||||
update_heading: 'ファームウェア更新',
|
|
||||||
update_instruction: 'アップロードするファームウェアファイルを選択:',
|
|
||||||
update_upload: 'ファイルをアップロード',
|
|
||||||
|
|
||||||
common_port: 'ポート ',
|
|
||||||
common_pkts: ' pkts',
|
|
||||||
},
|
|
||||||
|
|
||||||
zh: {
|
|
||||||
nav_overview: '概览',
|
|
||||||
nav_port_config: '端口配置',
|
|
||||||
nav_port_stat: '端口统计',
|
|
||||||
nav_l2: 'L2 配置',
|
|
||||||
nav_mirror: '端口镜像',
|
|
||||||
nav_lag: '链路聚合',
|
|
||||||
nav_eee: 'EEE',
|
|
||||||
nav_bandwidth: '带宽限制',
|
|
||||||
nav_system: '系统设置',
|
|
||||||
nav_fw_update: '固件升级',
|
|
||||||
|
|
||||||
port_name: '名称',
|
|
||||||
port_status: '状态',
|
|
||||||
port_not_enabled: '未启用。',
|
|
||||||
port_link_speed: '链路速率',
|
|
||||||
port_vendor: '厂商',
|
|
||||||
port_model: '型号',
|
|
||||||
port_serial: '序列号',
|
|
||||||
port_temp: '温度',
|
|
||||||
port_vcc: '供电电压',
|
|
||||||
port_tx_fault: 'TX 故障',
|
|
||||||
port_tx_disabled: 'TX 禁用',
|
|
||||||
port_tx_bias: 'TX 偏置电流',
|
|
||||||
port_tx_power: 'TX 光功率',
|
|
||||||
port_rx_power: 'RX 光功率',
|
|
||||||
port_rx_los: 'RX 信号丢失',
|
|
||||||
|
|
||||||
speed_disabled: '禁用',
|
|
||||||
speed_down: '未连接',
|
|
||||||
|
|
||||||
port_title: 'FreeSwitchOS 端口配置',
|
|
||||||
port_heading: '端口配置',
|
|
||||||
port_col_port: '端口',
|
|
||||||
port_col_name: '名称',
|
|
||||||
port_col_speed: '当前链路速率',
|
|
||||||
port_col_set_speed: '设置速率',
|
|
||||||
port_col_disabled: '禁用',
|
|
||||||
port_col_apply: '应用',
|
|
||||||
port_mtu_heading: '配置端口转发的最大帧大小 (MTU)',
|
|
||||||
port_auto: '自动',
|
|
||||||
port_2500m: '2500Mbps/全双工',
|
|
||||||
port_1000m: '1000Mbps/全双工',
|
|
||||||
port_100m_f: '100Mbps/全双工',
|
|
||||||
port_100m_h: '100Mbps/半双工',
|
|
||||||
port_10m_f: '10Mbps/全双工',
|
|
||||||
port_10m_h: '10Mbps/半双工',
|
|
||||||
port_apply: '应用',
|
|
||||||
|
|
||||||
stat_title: 'FreeSwitchOS 端口统计',
|
|
||||||
stat_heading: '端口统计',
|
|
||||||
stat_detailed: '详细端口统计',
|
|
||||||
stat_close: '关闭',
|
|
||||||
stat_col_port: '端口',
|
|
||||||
stat_col_name: '名称',
|
|
||||||
stat_col_link: '链路',
|
|
||||||
stat_col_tx_good: 'TX 正常包',
|
|
||||||
stat_col_tx_bad: 'TX 错误包',
|
|
||||||
stat_col_rx_good: 'RX 正常包',
|
|
||||||
stat_col_rx_bad: 'RX 错误包',
|
|
||||||
stat_col_all: '所有计数器',
|
|
||||||
stat_counter: '计数器',
|
|
||||||
stat_value: '值',
|
|
||||||
stat_show: '查看',
|
|
||||||
|
|
||||||
vlan_title: 'FreeSwitchOS VLAN 配置',
|
|
||||||
vlan_heading: 'VLAN 配置',
|
|
||||||
vlan_select: 'VLAN 选择:',
|
|
||||||
vlan_choose: '-- 请选择 VLAN --',
|
|
||||||
vlan_id: 'VLAN ID:',
|
|
||||||
vlan_get_config: '获取配置',
|
|
||||||
vlan_name: 'VLAN 名称:',
|
|
||||||
vlan_tagged: 'Tagged 端口',
|
|
||||||
vlan_untagged: 'Untagged 端口',
|
|
||||||
vlan_select_all: '全选',
|
|
||||||
vlan_pvid: '作为入方向流量的默认 VLAN (PVID)',
|
|
||||||
vlan_update: '更新 / 创建',
|
|
||||||
vlan_configured: '已配置 VLAN',
|
|
||||||
vlan_col_name: '名称',
|
|
||||||
vlan_col_member: '成员端口',
|
|
||||||
vlan_col_tagged: 'Tagged 端口',
|
|
||||||
vlan_col_untagged: 'Untagged 端口',
|
|
||||||
vlan_col_pvid: 'PVID 端口',
|
|
||||||
vlan_col_delete: '删除',
|
|
||||||
vlan_set_id_first: '请先设置 VLAN ID',
|
|
||||||
vlan_delete_confirm: '删除 VLAN ',
|
|
||||||
|
|
||||||
lag_title: '链路聚合配置',
|
|
||||||
lag_heading: '链路聚合组配置',
|
|
||||||
lag_update: '更新 / 创建',
|
|
||||||
|
|
||||||
mirror_title: '端口镜像配置',
|
|
||||||
mirror_heading: '端口镜像配置',
|
|
||||||
mirror_enabled: '启用:',
|
|
||||||
mirror_port: '镜像目的端口:',
|
|
||||||
mirror_tx: '被镜像端口 (TX)',
|
|
||||||
mirror_rx: '被镜像端口 (RX)',
|
|
||||||
mirror_update: '更新 / 创建',
|
|
||||||
mirror_disable: '禁用端口镜像',
|
|
||||||
mirror_set_port_first: '请先设置镜像目的端口',
|
|
||||||
mirror_select_ports: '请选择被镜像端口',
|
|
||||||
|
|
||||||
eee_title: 'EEE 配置',
|
|
||||||
eee_heading: 'EEE 状态',
|
|
||||||
eee_advertising: '本端通告',
|
|
||||||
eee_partner: '链路伙伴通告',
|
|
||||||
eee_port: '端口',
|
|
||||||
eee_active: '已生效?',
|
|
||||||
eee_enable: '启用 EEE',
|
|
||||||
eee_disable: '禁用 EEE',
|
|
||||||
eee_on: '开',
|
|
||||||
eee_off: '关',
|
|
||||||
|
|
||||||
l2_title: 'FreeSwitchOS L2 配置',
|
|
||||||
l2_heading: 'L2 配置',
|
|
||||||
l2_col_port: '端口',
|
|
||||||
l2_col_type: '类型',
|
|
||||||
l2_col_remove: '删除条目',
|
|
||||||
l2_shown: 'Shown:',
|
|
||||||
l2_delete: '删除',
|
|
||||||
l2_static: '静态',
|
|
||||||
l2_learned: '动态学习',
|
|
||||||
|
|
||||||
bw_title: '入方向/出方向带宽限制',
|
|
||||||
bw_heading: '入方向/出方向带宽限制',
|
|
||||||
bw_ingress: '入方向',
|
|
||||||
bw_egress: '出方向',
|
|
||||||
bw_col_port: '端口',
|
|
||||||
bw_col_limit: '限速',
|
|
||||||
bw_col_bandwidth: '带宽 [kbit/s]',
|
|
||||||
bw_col_flow: '流量控制',
|
|
||||||
bw_col_apply: '应用',
|
|
||||||
bw_unlimited: '不限速',
|
|
||||||
|
|
||||||
sys_title: '系统设置',
|
|
||||||
sys_tab_system: '系统',
|
|
||||||
sys_tab_advanced: '高级',
|
|
||||||
sys_tab_console: '控制台',
|
|
||||||
sys_heading: '系统设置',
|
|
||||||
sys_ip: 'IP 地址:',
|
|
||||||
sys_model: '型号:',
|
|
||||||
sys_hostname: '主机名:',
|
|
||||||
sys_apply: '应用',
|
|
||||||
sys_netmask: '子网掩码:',
|
|
||||||
sys_gateway: '网关:',
|
|
||||||
sys_language: '语言:',
|
|
||||||
sys_mgmt_vlan: 'Management VLAN:',
|
|
||||||
sys_mgmt_untagged: 'untagged',
|
|
||||||
sys_mgmt_confirm: 'Move switch management to VLAN ',
|
|
||||||
sys_mgmt_warn: 'The switch will start tagging its own traffic with that VLAN. If the port you are connected through does not carry it, this page becomes unreachable and the setting can only be undone over the console. Continue?',
|
|
||||||
sys_ip_note: '更新上述设置后,请使用新的 IP 地址重新访问管理界面:',
|
|
||||||
sys_update: '更新设置',
|
|
||||||
sys_save_label: '将当前全部设置保存到 Flash:',
|
|
||||||
sys_save: '保存设置到 Flash',
|
|
||||||
sys_advanced: '高级设置',
|
|
||||||
sys_startup_config: '启动配置:',
|
|
||||||
sys_startup_warn: '直接编辑启动配置时请谨慎,错误配置可能导致无法访问设备:',
|
|
||||||
sys_clear_config: '清除启动配置',
|
|
||||||
sys_save_startup: '保存启动配置到 Flash',
|
|
||||||
sys_reset: '重启交换机',
|
|
||||||
sys_console: '控制台命令',
|
|
||||||
sys_enter_cmd: '输入命令:',
|
|
||||||
sys_send_cmd: '发送命令',
|
|
||||||
sys_console_warn: '输入控制台命令时请谨慎,错误命令可能导致无法访问设备!',
|
|
||||||
sys_invalid_ip: '无效 IP: ',
|
|
||||||
sys_reset_confirm: '确定要重启交换机吗?',
|
|
||||||
sys_resetting: '交换机正在重启。请稍候并刷新页面。',
|
|
||||||
|
|
||||||
login_title: 'RTL 交换机登录',
|
|
||||||
login_heading: 'RTL 交换机登录',
|
|
||||||
login_wrong: '密码错误!',
|
|
||||||
login_password: '密码',
|
|
||||||
login_login: '登录',
|
|
||||||
|
|
||||||
index_title: 'FreeSwitchOS 主页',
|
|
||||||
index_heading: '交换机配置',
|
|
||||||
index_settings: '设置',
|
|
||||||
|
|
||||||
update_title: '固件升级',
|
|
||||||
update_heading: '固件升级',
|
|
||||||
update_instruction: '请选择要上传的固件文件:',
|
|
||||||
update_upload: '上传文件',
|
|
||||||
|
|
||||||
common_port: '端口 ',
|
|
||||||
common_pkts: ' 个包',
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var rtlLang = (function() {
|
|
||||||
var saved = localStorage.getItem('rtl_lang');
|
|
||||||
if (saved && LANG[saved]) return saved;
|
|
||||||
var browser = (navigator.language || navigator.userLanguage || 'en').substring(0, 2);
|
|
||||||
return LANG[browser] ? browser : 'en';
|
|
||||||
})();
|
|
||||||
|
|
||||||
function t(key) {
|
|
||||||
return LANG[rtlLang][key] || LANG['en'][key] || key;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setLang(lang) {
|
|
||||||
if (LANG[lang]) {
|
|
||||||
localStorage.setItem('rtl_lang', lang);
|
|
||||||
rtlLang = lang;
|
|
||||||
document.querySelectorAll('[data-i18n]').forEach(function(el) {
|
|
||||||
applyTranslation(el);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function applyTranslation(el) {
|
|
||||||
var key = el.getAttribute('data-i18n');
|
|
||||||
if (!key) return;
|
|
||||||
if (el.tagName === 'INPUT' && (el.type === 'submit' || el.type === 'button')) {
|
|
||||||
el.value = t(key);
|
|
||||||
} else if (el.tagName === 'OPTION') {
|
|
||||||
el.textContent = t(key);
|
|
||||||
} else if (el.tagName === 'TITLE') {
|
|
||||||
el.textContent = t(key);
|
|
||||||
} else {
|
|
||||||
el.innerHTML = t(key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
|
||||||
document.querySelectorAll('[data-i18n]').forEach(function(el) {
|
|
||||||
applyTranslation(el);
|
|
||||||
});
|
|
||||||
});
|
|
||||||