183130227 发表于 2024-7-14 14:35:49

关于小米路由器ax3600无线桥接无法获取ipv6地址的解决方法

本帖最后由 183130227 于 2024-7-14 14:39 编辑

这个教程发得比较晚,问题解决了又两年了。应该所有的小米路由都可以用这个方法。

原机原系统,需要获得shell权限(ssh,telnet均可)

页面上配置好无线中继方式上网

cat /etc/config/wireless从/etc/config/wireless 获取 sta接口的ifname 名称,我这里可以看出来是wl12
然后修改/etc/config/network文件
cat /etc/config/network

config interface 'loopback'
      option ifname 'lo'
      option proto 'static'
      option ipaddr '127.0.0.1'
      option netmask '255.0.0.0'

config switch
      option name 'switch0'

config interface 'lan'
      option ifname 'eth2 eth3 eth4'
      option force_link '1'
      option type 'bridge'
      option hostname 'ax3600'
      option macaddr '88:c3:97:c5:f2:6b'
      option mtu '1500'
      option proto 'dhcp'
      option ieee1905managed '1'

config interface 'wl12'
      option ifname 'wl12'
      option keepup '1'

config interface 'eth1'
      option ifname 'eth1'

config interface 'eth2'
      option ifname 'eth2'

config interface 'eth3'
      option ifname 'eth3'

config interface 'eth4'
      option ifname 'eth4'

config interface 'wan'
      option ifname 'eth1'
      option proto 'dhcp'
      option ipv6 '0'
      option auto '0'

config interface 'miot'
      option ifname 'wl13'
      option type 'bridge'
      option proto 'static'
      option ipaddr '192.168.32.1'
      option netmask '255.255.255.0'



总结:

====添加开始====
config interface 'wl12'
      option ifname 'wl12'
      option keepup '1'
====添加结束====
config interface 'eth1'
      option ifname 'eth1'
      option keepup '1'删除这个


username 发表于 2024-7-29 00:43:51

https://blog.icpz.dev/articles/notes/odhcpd-relay-mode-discuss/

可以参考此贴
页: [1]
查看完整版本: 关于小米路由器ax3600无线桥接无法获取ipv6地址的解决方法