1032740078/dsh-web-url-view0

dsh-web-url-view

设置页增强:展示稳定固定访问 URL(含 LAN 地址),便于局域网设备连接 DSH Web。

AI 分析

适合多设备访问本机面板的场景;可配置固定端口/监听地址,需编辑对应 profile 配置。

包名
dsh-web-url-view
版本
0.1.0
许可证
MIT
最近更新
2026年9月11日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:1032740078/dsh-web-url-view

Configuration (port / bind host / off switch)

Default fixed port 47524, bound to 0.0.0.0 (all interfaces). To change the port, restrict the bind, or disable the fixed address, override the row config in the desktop profile's cordis.patch.yml and restart the desktop:

- id: web-url-view
  name: dsh-web-url-view
  config:
    # Fixed entry listen port; 0 disables the fixed address. Default 47524.
    fixedPort: 47524
    # Bind interface. Default 0.0.0.0 (all interfaces, LAN-reachable); use 127.0.0.1 for localhost only.
    fixedHost: 0.0.0.0
OptionTypeDefaultMeaning
fixedPortnumber47524Fixed entry listen port. 0 or an invalid value (>65535) disables the fixed address, leaving only the one-time address.
fixedHoststring0.0.0.0Fixed entry bind interface. 0.0.0.0 = all interfaces (LAN-reachable); 127.0.0.1 = localhost only.

The LAN address is auto-detected: it prefers the IPv4 of the default-route interface and skips loopback, link-local (169.254.*) and common virtual interfaces (docker/veth/vmnet/utun/…). When nothing usable is found it falls back to 127.0.0.1, so localhost keeps working.