-1

我在 glinet 迷你路由器上运行 OpenWrt 19.07.7。我已经使用 opkg update 和 opkg install coova-chilli 来运行 coova chili

这是 /var/run/chilli_cfgXXXXXX.conf 的输出

tundev="tun0"
net="192.168.180.0/22"
uamlisten="192.168.182.1"
lease="86400"
leaseplus="600"
ipup="/etc/chilli/up.sh"
ipdown="/etc/chilli/down.sh"
dhcpif="br-guest"
uamserver="https://radius.chillispot.org/hotspotlogin"

路由器具有三个活动网络接口:

  1. br-guest(应该有热点)
  2. br-兰
  3. eth0(内网链接)

根据以下文档:OpenWrt Documentation 仅需要编辑 /etc/config/chilli 文件以使 TUN 设备运行

但是按照指南并发出 ifconfig 后,TUN 设备不可用

4

1 回答 1

0

是的,只需要编辑 /etc/config/chilli 文件。这些是最低配置:

config chilli
    option tundev           'tun0'
    option dhcpif           'br-guest'
    option uamlisten        10.1.0.1
    option net              10.1.0.0/24
    option dns1             8.8.8.8
    option dns1             8.8.4.4
    option ipup             /etc/chilli/up.sh
    option ipdown           /etc/chilli/down.sh
    option radiusnasid      nas01
    option uamserver        your_url_server_handling_authentication
    option radiusserver1    your_radius_server1
    option radiusserver2    your_radius_server2
    option radiussecret     your_radius_secret
    option uamsecret        your_uam_secret

对于第 11-15 行,您必须根据自己的配置填写值

于 2022-02-18T14:19:50.423 回答