Go to file
2023-02-06 20:34:24 +08:00
.github/workflows ci: drop 18.06 i18n 2022-11-23 15:12:47 +08:00
luci-app-mosdns Update mosdns.sh 2023-01-10 23:28:26 +08:00
mosdns mosdns: update to v5.1.0 2023-02-06 20:34:24 +08:00
v2dat add v2dat package 2023-02-06 20:29:15 +08:00
install.sh ci: drop 18.06 i18n 2022-11-23 15:12:47 +08:00
README.md Update README.md 2022-12-07 03:09:34 +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 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 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/master/install.sh)"