Go to file
sbwml e255e8fb98 luci-app-mosdns: Fix local DNS to enable http/3 domain name lookup
* MosDNS does not support bootstrap working on http3, and DNS domain names must be resolved in another way and made work.
2023-08-30 01:56:40 +08:00
.github/workflows ci: openwrt-sdk: use openwrt-22.03 & golang 1.20.x 2023-03-25 07:52:39 +08:00
luci-app-mosdns luci-app-mosdns: Fix local DNS to enable http/3 domain name lookup 2023-08-30 01:56:40 +08:00
mosdns mosdns: update dependencies & quic-go v0.38.1 2023-08-25 09:22:40 +08:00
v2dat add v2dat package 2023-02-06 20:29:15 +08:00
install.sh install.sh: mosdns v5 2023-03-21 08:49:33 +08:00
README.md Update README.md 2023-03-28 05:01:01 +08:00

luci-app-mosdns

MosDNS is a plug-in DNS forwarder. Users can splicing plug-ins as needed to customize their own DNS processing logic.

How to build

  • Enter in your openwrt dir

  • Openwrt official SnapShots

    # remove v2ray-geodata package from feeds (openwrt-22.03 & master)
    rm -rf feeds/packages/net/v2ray-geodata
    
    git clone https://github.com/sbwml/luci-app-mosdns -b v5 package/mosdns
    git clone https://github.com/sbwml/v2ray-geodata package/v2ray-geodata
    make menuconfig # choose LUCI -> Applications -> luci-app-mosdns
    make V=s
    
  • Non-Openwrt official source

    # drop mosdns and v2ray-geodata packages that come with the source
    find ./ | grep Makefile | grep v2ray-geodata | xargs rm -f
    find ./ | grep Makefile | grep mosdns | xargs rm -f
    
    git clone https://github.com/sbwml/luci-app-mosdns -b v5 package/mosdns
    git clone https://github.com/sbwml/v2ray-geodata package/v2ray-geodata
    make menuconfig # choose LUCI -> Applications -> luci-app-mosdns
    make V=s
    

How to install prebuilt packages

  • Login OpenWrt terminal (SSH)

  • Install curl package

    opkg update
    opkg install curl
    
  • Execute install script (Multi-architecture support)

    sh -c "$(curl -ksS https://raw.githubusercontent.com/sbwml/luci-app-mosdns/v5/install.sh)"
    

1

2