Openwrt nvram信息搜集

来自Jack's Lab
跳转到: 导航, 搜索

1 敏感参数

  • flag_tftp_bootup=off

此值设为 on,则 CFE 会尝试从 192.168.1.2 获取内核 vmlinuz,获取失败,CFE会重启系统,直到获取成功:

CFE version v1.0.4
BSP: 6.37.14.34 (r415984) based on BBP 1.0.37 for BCM947XX (32bit,SP,)
Build Date: Wed Apr 30 18:03:21 CST 2014 (szy@shenzhiyong-ct)
Copyright (C) 2000-2008 Broadcom Corporation.
......
......
......
Device eth0:  hwaddr 8C-BE-BE-20-B7-48, ipaddr 192.168.1.1, mask 255.255.255.0
        gateway not set, nameserver not set
********** flag_tftp_bootup=on **********
tftp network: ifconfig eth0 -addr=192.168.1.1 -mask=255.255.255.0 -gw=192.168.1.1
Device eth0:  hwaddr 8C-BE-BE-20-B7-48, ipaddr 192.168.1.1, mask 255.255.255.0
        gateway 192.168.1.1, nameserver not set
kernel: boot -raw -z -addr=0x8000 -max=0x800000 192.168.1.2:vmlinuz
Loader:raw Filesys:tftp Dev:eth0 File:192.168.1.2:vmlinuz Options:(null)
Loading: TFTP error 1: File not found
Failed.
Could not load 192.168.1.2:vmlinuz: Network protocol error
Digital core power voltage set to 1.0V
Decompressing...done
Digital core power voltage set to 1.0V
Decompressing...done
  • flag_ota_reboot 如果此值为1,则 CFE 将加载第二个分区上的内核启动 (flash.os2),启动完成后,会把以下值设置(本身这些变量在 nvram 里是没有的):
+flag_boot_type=1


+flag_last_success=1  如果单独设置此变量为1,CFE 将加载第二个分区上的内核启动 (flash.os2)。如果单独设置此值为 0,则CFE仍然从 flash.os1 启动
+flag_ota_reboot=0

+flag_try_sys1_failed=0
+flag_try_sys2_failed=0

+flag_boot_rootfs=1
+flag_package_update=5


  • flag_boot_rootfs=0
0: rootfs = /dev/sda1
1: rootfs = /dev/sda2
  • flag_boot_type=1
 # flag_boot_type: 1 system in SATA   version
 #                 2 system in SQUASH version
 #                 9 system in tftp version

该参数同样会影响刷机行为,具体参考: /bin/flash.sh
118     flg=`nvram get flag_boot_type`
119     #type 1 is sata boot
120     #
121     if [ "$flg" = "1" ]
122         then
123         #for sata boot only
124         # nvram damaged
125         flg_try_sys1=`nvram get flag_try_sys1_failed`
126         flg_try_sys2=`nvram get flag_try_sys2_failed`
127         flg_last=`nvram get flag_last_success`
128         flg_ota=`nvram get flag_ota_reboot`
129         if [ "$flg_try_sys1" != "0" ] && [ "$flg_try_sys1" != "1" ] &&
130             [ "$flg_try_sys2" != "0" ] && [ "$flg_try_sys2" != "1" ] &&
131             [ "$flg_last" != "0" ] && [ "$flg_last" != "1" ] &&
132             [ "$flg_ota" != "0" ] && [ "$flg_ota" != "1" ]; then
133                 cat /proc/mounts | grep -q "/dev/sda1 /" && \
134                 mount -t ext4 /dev/sda2 /mnt || mount -t ext4 /dev/sda1 /mnt
135                 rom_ver1=`uci get /usr/share/xiaoqiang/xiaoqiang_version.version.ROM | awk -F '.' '{print $1*1000000+$2*1000+$3}`
136                 rom_ver2=`uci get /mnt/usr/share/xiaoqiang/xiaoqiang_version.version.ROM | awk -F '.' '{print $1*1000000+$2*1000+$3}`
137                 umount /mnt
138                 if [ $rom_ver2 -gt $rom_ver1 ]; then
139                     elog "Found a newer ROM, preparing to change to that ROM";
140                     nvram set flag_ota_reboot=1
141                     nvram commit
142                     reboot_try
143                 fi
144         fi
145     fi
  • flag_package_update=0
flag_package_update == 5 启动后直接进入 ramfs
flag_package_update == 1 启动后在 ramfs 里通过 tftp 从 192.168.1.1 下载 brcm4709_hdd.bin
flag_package_update != 0 and `cat /sys/power/ft_mode` != 1 (ft_mode 为 1,同样进入 ramfs) 则进入升级模式(执行 /usr/sbin/update)
  • flag_try_sys1_failed=0
  • flag_try_sys2_failed=0
flag_try_sys1_failed = 1 表示系统 rootfs = /dev/sda1 启动失败
flag_try_sys2_failed = 1 表示系统 rootfs = /dev/sda2 启动失败
  • uart_en=0 串口写关闭,打开需设为1
  • ssh_en=0 ssh 服务关闭,打开需设为1


  • boot_wait=off

如果设为 on 则 CFE 首先会尝试 tftp 获取 vmlinuz(注意:这个vmlinuz是整个路由系统的固件,不仅仅是内核),获取成功后会刷写flash:

Loader:raw Filesys:tftp Dev:eth0 File:192.168.1.2:vmlinuz Options:(null)
Loading: Failed.
Could not load 192.168.1.2:vmlinuz: Timeout occured
bootargs: boot -raw -z -addr=0x8000 -max=0xef8000 flash0.os:
Loader:raw Filesys:raw Dev:flash0.os File: Options:(null)
Loading: ..... 5372256 bytes read
Entry at 0x00008000


现在的系统逻辑上还是有些问题,尝试 boot_wait=on 后,如果获取 vmlinuz 失败,其会将如下一些参数改了:

 -flag_try_sys1_failed=0
 +flag_try_sys1_failed=1
 
 +flag_load_sys1_failed=1
 
 -flag_try_sys2_failed=0
 +flag_try_sys2_failed=1
 
 -flag_boot_rootfs=1
 +flag_boot_rootfs=0
 
 -flag_boot_type=1
 +flag_boot_type=2

导致系统进入 overlay 分区,可进入系统或者CFE,用 nvram 把值改回来即可


  • telnet_en=0
  • XQ_defaulted=1
  • flag_image_name=brcm4709_hdd.bin
  • samba_mode=
  • samba_passwd=
  • igmp_enable=0
  • nv_rom_ver=0.5.41
  • dhcp_start=192.168.31.100
  • dhcp_end=192.168.31.150
  • partialboots=0 目前对 CFE 和 系统启动都没有影响




2 默认配置

0.5.41 固件:

root@XiaoQiang:~# nvram show
wl_radius_port=1812
pci/1/1/mcsbw805glpo=0xaa842222
pci/2/1/mcs2gpo0=0x8888
qos_reset=0
wl1_wme=on
pci/2/1/mcs2gpo1=0x8888
qos_irates=0,0,0,0,0,0,0,0,0,0
wan_unit=0
pci/2/1/leddc=65535
pci/2/1/mcs2gpo2=0x8888
wl0_pspretend_threshold=0
wl0_rxchain_pwrsave_stas_assoc_check=0
wl0_wmf_bss_enable=0
wl1_auth=0
ses_wds_mode=1
pci/2/1/mcs2gpo3=0xddb8
wan0_primary=1
wan_route=
wl0_mcast_regen_bss_enable=1
wl0_rifs_advert=auto
wl1_hwaddr=8C:BE:BE:20:B7:49
wl_txstreams=0
pci/2/1/mcs2gpo4=0x8888
samba_mode=
wl0_frameburst=on
wl_rxchain_pwrsave_pps=10
pci/2/1/bwduppo=0
pci/2/1/mcs2gpo5=0xa988
wan_pppoe_keepalive=0
wl_assoc_retry_max=3
log_ipaddr=
pci/2/1/mcs2gpo6=0x8888
pci/2/1/stbcpo=0
pci/2/1/txchain=3
wan0_ipaddr=0.0.0.0
boardrev=0x1301
pci/2/1/mcs2gpo7=0xddc8
wan0_proto=dhcp
wl1_wme_bss_disable=0
br0_ifnames=vlan1 wl0 wl1
bsd_enable=0
pci/1/1/sb20in80and160lr5gmpo=0
pci/2/1/phycal_tempdelta=0
wl0.14_hwaddr=02:90:4C:0E:50:21
pci/1/1/aa5g=7
wl1_acs_fcs_mode=0
pci/1/1/mcsbw805ghpo=0x85542000
pci/1/1/sar5g=15
wl1_acs_dfsr_activity=30 10240
wl1_txstreams=0
wl_version=6.37.14.34 (r415984 WLTEST)
et0macaddr=8C:BE:BE:20:B7:48
wl0_leddc=0x640000
pci/1/1/rawtempsense=0x1ff
pci/2/1/rssismf2g=0
wl0_bw_cap=7
nv_wifi_pwd1=
wl1_wme_txp_vi=7 3 4 2 0
wl_txbf_bfr_cap=1
wl_maxassoc=128
pci/1/1/mcsbw1605gmpo=0
wan_pppoe_passwd=
wl0_akm=
wl1.12_hwaddr=02:90:4C:23:45:74
boot_wait=off
wan0_dns=
watchdog=3000
wl1_acs_ci_scan_timer=4
wl1_bss_hs2_enabled=1
wl1_bss_opmode_cap_reqd=0
flag_try_sys1_failed=0
wl_leddc=0x640000
wl_rxchain_pwrsave_stas_assoc_check=0
wl_phytypes=
wps_modelname=R1D
nv_sqafs=0.0.1
nv_sys_pwd=b3a4190199d9ee7fe73ef9a4942a69fece39a771
wl0_infra=1
wl1_rifs_advert=auto
et0mdcport=0
fw_disable=0
wl0_country_code=CN
emf_rtport_entry=
pci/1/1/tworangetssi5g=0
wl1_wep=disabled
wl1_wme_txp_vo=7 3 4 2 0
flag_package_update=0
telnet_en=0
wl1_frag=2346
wl_infra=1
ses_event=2
wl_chanspec=11
wl1_acs_excl_chans=
wl_stbc_tx=auto
pmon_ver=CFE 6.37.14.34 (r415984)
wl0_bcn_rotate=1
wl1_pspretend_threshold=0
wl_intfer_txfail=16
pci/1/1/sb20in40lrpo=0
restore_defaults=0
wl_acs_dfsr_immediate=300 3
pci/1/1/sb40and80lr5gmpo=0
pci/2/1/ccode=CN
vlan2ports=4 5
wan0_ifname=eth0
wl1_wpa_gtk_rekey=0
wl0.1_hwaddr=02:90:4C:0E:50:24
wl1_ampdu_rtylimit_tid=5 5 5 5 5 5 5 5
pci/1/1/pcieingress_war=15
pci/2/1/boardflags=0x80001000
wan_lease=86400
wan_pppoe_service=
wl0_wme_sta_be=15 1023 3 0 0 off off
wl1_maclist=
wl_wme_apsd=on
wl0_version=6.37.14.34 (r415984)
wl1.1_hwaddr=02:90:4C:23:45:79
nv_rom_ver=0.5.41
wl_acs_chan_dwell_time=70
wl_radius_ipaddr=
http_wanport=
lan_gateway=192.168.1.1
pci/2/1/tempoffset=0
wl0.7_hwaddr=02:90:4C:0E:50:2A
wl0_psr_mrpt=0
wl1_amsdu=auto
wl1_crypto=tkip+aes
pci/1/1/mcsbw405glpo=0xa8842222
wl0_ifname=wl0
gpio0=usbport1
lan_domain=
lan_ipv6_prefix=2001:db8:1:0::/64
pci/1/1/rxgains5ghelnagaina0=2
pci/2/1/pa2gw2a0=0xf95d
wl1_hw_txchain=3
pci/1/1/rxgains5ghelnagaina1=2
pci/2/1/pa2gw2a1=0xf94f
timer_interval=3600
wl0_wme_sta_bk=15 1023 7 0 0 off off
wl1.7_hwaddr=02:90:4C:23:45:7F
wl1_psr_mrpt=0
pci/1/1/rxgains5ghelnagaina2=3
wl_net_reauth=36000
forward_port0=
igmp_enable=0
lan1_ipaddr=192.168.2.1
wl0_rxchain_pwrsave_quiet_time=1800
wl1_bss_maxassoc=128
wl_acs_dfsr_deferred=604800 5
wl0_rxstreams=0
ses_enable=1
pci/1/1/gainctrlsph=0
wl1_wmf_ucast_upnp=0
wan_pppoe_mru=1492
wl1_corerev=30
lan_route=
partialboots=0
pci/1/1/papdcap5g=0
wl0_radio_pwrsave_level=0
wl1_nmcsidx=-1
pci/1/1/sb20in80and160hr5gmpo=0
wl0_mrate=0
wl1_rx_amsdu_in_ampdu=auto
wps_device_pin=20682576
wan_gateway=0.0.0.0
wl0_mode=ap
nv_wifi_enc1=none
dhcp_start=192.168.31.100
pci/1/1/mcsbw405ghpo=0x85542000
wl0_stbc_tx=auto
wl1_nmode=-1
lan1_route=
pci/2/1/devid=0x43a9
pci/2/1/tempsense_option=0x0
wl0_ap_isolate=0
wl_mrate=0
dhcp_end=192.168.31.150
pci/1/1/tempcorrx=0x3f
wl0_rxchain_pwrsave_pps=10
wl_wmf_mdata_sendup=0
wl_akm=
wl_wmf_bss_enable=0
sromrev=11
wfi_error=
wl0.15_hwaddr=02:90:4C:0E:50:22
wl0_ampdu=auto
wl0_gmode=1
wl0_wme_no_ack=off
wl1_intfer_cnt=3
pci/1/1/tssiposslope5g=1
samba_passwd=
wl0_wfi_pinmode=0
wl1_rts=2347
wl1_stbc_rx=1
pci/1/1/mcslr5gmpo=0
boardtype=0x0665
qos_sticky=1
wl0_dcs_csa_unicast=0
wl_obss_coex=1
wl_ampdu_rr_rtylimit_tid=2 2 2 2 2 2 2 2
wl_wme_bss_disable=0
is_default=1
wl0_acs_dfsr_immediate=300 3
wl1_ampdu_rr_rtylimit_tid=2 2 2 2 2 2 2 2
XQ_defaulted=1
wl_ampdu=auto
wl_gmode=1
wl0_acs_fcs_mode=0
wl0_nband=1
wl1_bw_cap=3
stats_server=
pci/1/1/rxchain=7
flag_image_name=brcm4709_hdd.bin
wl1.13_hwaddr=02:90:4C:23:45:75
wl1_txchain=3
flag_try_sys2_failed=0
lan_netmask=255.255.255.0
wl_nband=2
lan1_ifname=br1
wl0_wme_txp_be=7 3 6 2 0
wl1_obss_coex=1
wl_acs_scan_entry_expire=3600
wl_wme_sta_vi=7 15 2 6016 3008 off off
http_username=
lan1_hwnames=
wl0_dtim=3
wl0_ssid=Xiaomi_B748_5G
wl1_key=1
wl1_acs_scan_entry_expire=3600
flag_boot_rootfs=0
wl_wme_ap_be=15 63 3 0 0 off off
pci/1/1/maxp5ga0=0x5E,0x5E,0x5E,0x5E
pci/1/1/sb40and80hr5gmpo=0
pci/2/1/pdetrange2g=3
pci/2/1/tempcorrx=0x0
wan0_pppoe_ifname=
wl1_rxchain_pwrsave_stas_assoc_check=0
os_date=Jan  9 2014
pci/1/1/maxp5ga1=0x5E,0x5E,0x5E,0x5E
pci/1/1/maxp5ga2=0x5E,0x5E,0x5E,0x5E
wl1_radio_pwrsave_level=0
http_lanport=80
wl0_wme_txp_bk=7 3 6 2 0
wl1_wfi_pinmode=0
flag_boot_type=1
wl_wme_sta_vo=3 7 2 3264 1504 off off
wl_plcphdr=long
wl_macmode=disabled
lan1_wins=
wl_wme_ap_bk=15 1023 7 0 0 off off
nvram_version=1
wan_domain=
wan_hwname=
wl1_wme_ap_be=15 63 3 0 0 off off
wl_phytype=b
lan_lease=86400
wan_netmask=0.0.0.0
wl0_key1=
wl_lazywds=0
wan0_hostname=
wl0_key2=
wl0_vlan_prio_mode=off
wl0.2_hwaddr=02:90:4C:0E:50:25
wl0_key3=
wl1_rxchain_pwrsave_pps=10
wl_mcast_regen_bss_enable=1
wl0_key4=
wl1_radius_key=
filter_client0=
pci/1/1/sb20in80and160lr5glpo=0
filter_maclist=
lan1_lease=86400
pci/1/1/pa5ga0=0xFF90,0x1E37,0xFCB8,0xFF38,0x189B,0xFD00,0xff33,0x1a66,0xfcc4,0xFF2F,0x1748,0xFD21
wl1.2_hwaddr=02:90:4C:23:45:7A
wl1_wme_ap_bk=15 1023 7 0 0 off off
wl_auth_mode=none
pci/1/1/boardflags=0x30000000
pci/1/1/pa5ga1=0xFF1B,0x18A2,0xFCB6,0xFF34,0x183F,0xFD12,0xff37,0x1aa1,0xfcc0,0xFF2F,0x1889,0xFCFB
wl0_acs_chan_dwell_time=70
wl0_wmf_mdata_sendup=0
pci/1/1/pa5ga2=0xff1d,0x1653,0xfd33,0xff38,0x1a2a,0xfcce,0xff35,0x1a93,0xfcc1,0xff3a,0x1abd,0xfcc0
pci/2/1/macaddr=8C:BE:BE:20:B7:49
qos_orules=
wl0.8_hwaddr=02:90:4C:0E:50:2B
wl1_bcn=100
wl1_ifname=wl1
acs_2g_ch_no_restrict=0
uart_en=0
vlan2hwname=et0
SN=561000015739
nv_hardware=R1D
pci/1/1/tempoffset=255
wl1.8_hwaddr=02:90:4C:23:45:70
wl_wpa_psk=
http_passwd=admin
pci/1/1/mcsbw1605glpo=0
wl0_acs_dfsr_deferred=604800 5
wl0_hw_rxchain=3
wl0_rxchain_pwrsave_enable=0
wl1_auth_mode=none
lan_stp=1
nat_type=sym
wan_pppoe_demand=0
wl_wmf_igmpq_filter=0
pci/2/1/cck2gpo=0x8880
wl0_wme_ap_vi=7 15 1 6016 3008 off off
wl_mode=ap
pci/1/1/sb20in80and160lr5ghpo=0
wl0_bss_maxassoc=128
ctfqos_uldl_diffif=1
wan0_pppoe_passwd=
wl0_mfp=0
wl1_wmf_mdata_sendup=0
qos_ibw=1500
wl0_tpc_db=0
wl0_closed=0
wl0_plcphdr=long
wl0_rate=0
wl1_mcast_regen_bss_enable=1
wl1_wet_tunnel=0
wl_wpa_gtk_rekey=0
pci/2/1/pcieingress_war=15
wl0.10_hwaddr=02:90:4C:0E:50:2D
wl0_assoc_retry_max=3
wl0_macmode=disabled
wps_version2=enabled
xtalfreq=25000
lan_dhcp=0
wl0_radioids=BCM2069
wl0_wme_ap_vo=3 7 1 3264 1504 off off
model=R1D
pci/1/1/boardvendor=0x14e4
wl0_phytype=v
wl1_wfi_enable=0
nvram_space=65536
pci/1/1/mcsbw1605ghpo=0
wl0_lazywds=0
xiaoqiang_factory=1
wl1_radioids=BCM2057
pci/1/1/sb40and80lr5glpo=0
wl1_acs_tx_idle_cnt=5
wl1_rxchain_pwrsave_quiet_time=1800
nv_wan_type=dhcp
boardflags2=0x00000000
wan0_pppoe_keepalive=0
wl0_intfer_period=1
wps_proc_status=0
wl_acs_ci_scan_timeout=300
pci/2/1/cddpo=0
wl1_version=6.37.14.34 (r415984)
wl_wds_timeout=1
lan_hwaddr=00:90:4C:0F:F2:A7
wl0_antdiv=-1
wl_wps_mode=enabled
pci/1/1/subband5gver=0x4
wan_dns=
dpsta_ifnames=
wl1_acs_chan_dwell_time=70
pcbasn=KL01SWU
pci/1/1/dot11agduplrpo=0
pci/1/1/measpower=0x7f
wan0_pppoe_ac=
wl1.14_hwaddr=02:90:4C:23:45:76
wl_dtim=3
wl_ssid=Broadcom
pci/2/1/pa2gw1a0=0x1c37
pci/1/1/sromrev=11
pci/2/1/measpower1=0x0
pci/2/1/pa2gw1a1=0x1c5c
wan_pppoe_mtu=1492
wl0_acs_excl_chans=
wl0_wpa_psk=
wl1_frameburst=on
lan_wps_oob=disabled
pci/2/1/bw40po=0
pci/2/1/measpower2=0x0
wait_time=3
wl_acs_dfs=0
pci/1/1/sb40and80lr5ghpo=0
pci/1/1/venid=0x14e4
pci/2/1/temps_period=0
wl0_amsdu=auto
acs_no_restrict_align=1
dhcp_wins=wan
wl0_country_rev=35
os_server=
pci/1/1/sb20in40hrpo=0
pci/1/1/sb20in80and160hr5glpo=0
wl1_txbf_bfe_cap=1
br0_ifname=br0
wl_amsdu=auto
wl_key1=
lan_wps_reg=enabled
wan_proto=dhcp
wl0_wmf_igmpq_filter=0
wl_key2=
wl_key3=
pci/1/1/mcsbw205gmpo=0x88642222
pci/2/1/antswctl2g=0
wan0_pppoe_mru=1492
wl0_unit=0
wl1_stbc_tx=auto
wl_key4=
wl_country_code=
wan0_mtu=1500
wl_hwaddr=
pci/2/1/measpower=0x0
wl0.3_hwaddr=02:90:4C:0E:50:26
wl0_bss_enabled=1
wl0_net_reauth=36000
wl1_sta_retry_time=5
nv_wifi_ssid1=Xiaomi_B748_5G
wl_vlan_prio_mode=off
wl_pspretend_retry_limit=0
lan1_stp=1
pci/1/1/mcslr5glpo=0
wl0_nmode=-1
wl0_wmf_ucast_upnp=0
wl1.3_hwaddr=02:90:4C:23:45:7B
wl1_pspretend_retry_limit=0
nv_pppoe_name=
wl0.9_hwaddr=02:90:4C:0E:50:2C
wl_rifs_advert=auto
pci/1/1/sb20in80and160hr5ghpo=0
wan_pppoe_idletime=60
wl1_acs_dfsr_immediate=300 3
wl1_wmf_igmpq_filter=0
pci/1/1/tempsense_slope=0xff
wl1.9_hwaddr=02:90:4C:23:45:71
wl1_country_rev=28
wps_restart=0
wl_nmode=-1
pci/1/1/rxgains5gmtrelnabypa0=1
lan1_gateway=192.168.2.1
pci/1/1/rxgains5gmtrelnabypa1=1
wl1_bcn_rotate=1
pci/1/1/rxgains5gmtrelnabypa2=1
wl0_acs_dfs=0
wl_wps_reg=enabled
ses_cl_enable=1
wl_rxstreams=0
wl_intfer_cnt=3
pci/1/1/epagain5g=0
qos_ack=1
qos_burst0=
wl0_wds=
wl1_txbf_bfr_cap=1
wl_rate=0
qos_burst1=
log_level=0
pci/1/1/mcslr5ghpo=0
pci/1/1/sb40and80hr5glpo=0
wan0_gateway=0.0.0.0
wfi_cmd=
wl1_wme_sta_be=15 1023 3 0 0 off off
ntp_server=192.5.41.40 192.5.41.41 133.100.9.2
wl0_reg_mode=off
wl1_closed=0
wl1_tpc_db=0
wl_intfer_tcptxfail=5
lan_ipv6_dns=
wan_hwaddr=
wl0_intfer_txfail=16
wl1_bss_enabled=1
wps_mfstring=xiaomi
wl0.11_hwaddr=02:90:4C:0E:50:2E
wl1_rxstreams=0
lan_ifnames=vlan1 wl0 wl1
wl1_akm=
wl1_reg_mode=off
wl0_auth=0
wl0_radius_port=1812
wl0_wme=on
wl1_wme_sta_bk=15 1023 7 0 0 off off
wl_rxchain_pwrsave_quiet_time=1800
pci/2/1/opo=68
pci/1/1/rxgains5ghtrelnabypa0=1
wl0_radius_ipaddr=
wl0_rxchain=3
wl0_wme_bss_disable=0
wl1_radio=1
wl_radio_pwrsave_pps=10
pci/1/1/rxgains5ghtrelnabypa1=1
pci/1/1/boardflags2=0x300002
pci/1/1/rxgains5ghtrelnabypa2=1
ure_disable=1
wl0_wme_sta_vi=7 15 2 6016 3008 off off
wl_acs_cs_scan_timer=900
pci/1/1/boardflags3=0x0
pci/1/1/sb40and80hr5ghpo=0
pci/2/1/bxa2g=0
wl1_antdiv=-1
qos_method=0
wl0_acs_ci_scan_timeout=300
wl1_acs_dfsr_deferred=604800 5
wl_acs_tx_idle_cnt=5
wan_pppoe_username=
pci/1/1/aga0=01
pci/2/1/freqoffset_corr=0x0
pci/1/1/aga1=01
wan_ifnames=eth0.2
wl1.15_hwaddr=02:90:4C:23:45:77
wl_crypto=tkip+aes
wl_rateset=default
flag_tftp_bootup=off
pci/1/1/aga2=133
wan0_domain=
wan0_hwname=
wl0_wme_sta_vo=3 7 2 3264 1504 off off
wl_acs_chan_flop_period=70
wl0_bss_hs2_enabled=1
wl1_ap_isolate=0
flag_last_success=0
pci/2/1/ledbh0=255
wl0_wps_reg=enabled
wl1_radio_pwrsave_quiet_time=1800
wl_acs_excl_chans=
pci/1/1/measpower1=0x7f
pci/2/1/ledbh1=255
wl1_wme_no_ack=off
wl_acs_fcs_mode=0
wl_radius_key=
clkfreq=1000,800
lan_ipaddr=192.168.1.1
lan_proto=dhcp
os_name=linux
pci/1/1/measpower2=0x7f
pci/2/1/ledbh2=255
wl1_radius_port=1812
wl_psr_mrpt=0
wl_rxchain_pwrsave_enable=1
lan1_netmask=255.255.255.0
pci/2/1/ledbh3=131
pci/2/1/rxchain=3
vlan1hwname=et0
wl0_maxassoc=128
wl_unit=0
wan0_route=
wl1_plcphdr=long
mode=Router
br1_ifname=br1
wan0_pppoe_demand=0
wl0_phytypes=v
wl1_macmode=disabled
wl1_maxassoc=128
lan1_proto=dhcp
router_disable=0
wl0_frag=2346
wl0_wep=disabled
wps_sta_pin=00000000
pci/2/1/hw_iqcal_en=0x0
pci/2/1/tssipos2g=1
wan0_netmask=0.0.0.0
wl0_txbf_bfe_cap=1
wl1_phytype=n
wl_radio_pwrsave_enable=0
wl0_intfer_tcptxfail=5
wl1_lazywds=0
wl1_phytypes=n
wl0.4_hwaddr=02:90:4C:0E:50:27
sdram_config=0x014B
wl1_wme_txp_be=7 3 4 2 0
wl_radio_pwrsave_stas_assoc_check=0
ssh_en=0
dmz_ipaddr=
pci/2/1/rxpo2g=0
vlan1ports=0 2 5*
wan0_wins=
wl0_chanspec=0
wl1.4_hwaddr=02:90:4C:23:45:7C
wl_wds=
wl1_trf_mgmt_rssi_policy=0
wl_acs_dfsr_activity=30 10240
pci/1/1/rxgains5gtrelnabypa0=1
nv_wifi_enc=none
pci/1/1/rxgains5gtrelnabypa1=1
wl1_chanspec=0
wl_wmf_ucast_upnp=0
wl_wet_tunnel=0
pci/1/1/rxgains5gtrelnabypa2=1
wl1_acs_ci_scan_timeout=300
wl1_mode=ap
wl1_wme_txp_bk=7 3 4 2 0
wl0_ampdu_rr_rtylimit_tid=2 2 2 2 2 2 2 2
wl0_rateset=default
wl1_rxchain_pwrsave_enable=0
nv_wifi_ssid=Xiaomi_B748
wl_bw_cap=1
pci/1/1/txchain=7
wl_wfi_enable=0
pci/1/1/pdgain5g=4
pci/2/1/pa2gw0a0=0xfe77
wl0_wme_apsd=on
wl1_intfer_tcptxfail=5
wl1_wpa_psk=
wl_acs_ci_scan_timer=4
wl_wfi_pinmode=0
pci/2/1/pa2gw0a1=0xfe76
wl0_wme_txp_vi=7 3 6 2 0
nv_uboot=1.0.2
wl_wme=auto
wl0_txstreams=0
pci/1/1/antswitch=0
pci/2/1/elna2g=2
wl1_wme_apsd=on
wl_wme_ap_vi=7 15 1 6016 3008 off off
dpsta_lan_uif=1
lan_ifname=br-lan
wan_primary=0
boardflags=0x00000110
lan_ipv6_6to4id=0
sdram_refresh=0x0000
wan0_pppoe_mtu=1492
wandevs=et0
wl0_acs_scan_entry_expire=3600
wl0_txbf_bfr_cap=1
nv_rom_channel=stable
dhcp_domain=wan
qos_icmp=0
wl0_wme_txp_vo=7 3 6 2 0
wl_auth=0
et_txq_thresh=1024
wl0.12_hwaddr=02:90:4C:0E:50:2F
wl1_dcs_csa_unicast=0
pci/1/1/temps_hysteresis=15
sdram_ncdl=0
wl_wme_ap_vo=3 7 1 3264 1504 off off
lan1_domain=
wl1_wme_ap_vi=7 15 1 6016 3008 off off
pci/1/1/mcsbw205glpo=0x88642222
wl1_wmf_bss_enable=0
wl_bss_maxassoc=128
wl_frameburst=off
ezc_enable=1
wl1_hw_rxchain=3
wl0_nmode_protection=auto
pci/2/1/tempsense_slope=0x0
wan0_lease=86400
wl0_radio_pwrsave_pps=10
wl0_radio_pwrsave_stas_assoc_check=0
wl1_dtim=3
wl1_ssid=Xiaomi_B748
is_modified=0
qos_enable=0
wl0_acs_cs_scan_timer=900
wl1.10_hwaddr=02:90:4C:23:45:72
wl1_intfer_period=1
lan_ipv6_mode=3
pci/1/1/dot11agduphrpo=0
pci/1/1/temps_period=15
wan_ipaddr=0.0.0.0
wl1_wme_ap_vo=3 7 1 3264 1504 off off
pci/2/1/antswitch=0
pci/1/1/mcsbw805gmpo=0xaa842222
pci/1/1/pdoffset80ma0=0
wl0_rts=2347
pci/1/1/pdoffset80ma1=0
wl_ifname=
flag_trans_proto=2
lan1_dhcp=0
pci/1/1/pdoffset80ma2=0
pci/2/1/rawtempsense=0x0
wan_wins=
wl_ampdu_rtylimit_tid=5 5 5 5 5 5 5 5
wl_wep=disabled
hspotap_enable=0
pci/1/1/mcsbw205ghpo=0x55540000
wl0_trf_mgmt_rssi_policy=0
wl1_nmode_protection=auto
pci/2/1/extpagain2g=3
pci/2/1/tempthresh=120
wl0_hw_txchain=3
wl1_key1=
os_version=6.37.14.34
pci/1/1/rxgains5gmtrisoa0=5
wl1_acs_dfs=0
wl1_key2=
wl_gmode_protection=auto
pci/1/1/rxgains5gmtrisoa1=4
wl1_key3=
pci/1/1/rxgains5gmtrisoa2=4
wl0_wpa_gtk_rekey=0
wl1_key4=
wl1_leddc=0x640000
nv_rootfs=0.0.1
lan1_wps_oob=disabled
pci/2/1/triso2g=4
wl0_sta_retry_time=5
wl_frag=2346
pci/1/1/phycal_tempdelta=255
wan0_desc=Default Connection
wl_rx_amsdu_in_ampdu=auto
pci/2/1/sromrev=8
wan_mtu=1500
wl0_key=1
qos_obw=384
nv_ramfs=0.0.1
wl_maclist=
ses_cl_event=0
emf_entry=
filter_macmode=deny
pci/1/1/xtalfreq=0x40000
wl1_infra=1
console_loglevel=1
et0phyaddr=30
wl_bcn_rotate=1
lan1_wps_reg=enabled
time_zone=PST8PDT
wl0.5_hwaddr=02:90:4C:0E:50:28
wl_wps_config_state=0
wl_bss_opmode_cap_reqd=0
qos_default=3
wl1_rxchain=3
acs_ifnames= wl0 wl1
wl1_acs_chan_flop_period=70
wl0_acs_dfsr_activity=30 10240
wl1.5_hwaddr=02:90:4C:23:45:7D
wl1_mfp=0
acs_mode=acsd
wan0_pppoe_idletime=60
wan0_pppoe_service=
wan_ifname=eth0.2
wl0_intfer_cnt=3
wl_wme_sta_be=15 1023 3 0 0 off off
wan0_ipv6_prefix=2001:db0:1:0::/64
wl_wmf_ucigmp_query=0
wl_radioids=
wan0_hwaddr=
landevs=vlan1 wl0 wl1
pci/1/1/rxgains5gelnagaina0=1
wan_hostname=
wl1_rate=0
wl_nmcsidx=-1
wl_corerev=
dhcp1_start=192.168.2.100
pci/1/1/rxgains5gelnagaina1=1
wl0_radio=1
pci/1/1/femctrl=3
pci/1/1/rxgains5gelnagaina2=1
wl0_acs_ci_scan_timer=4
pci/2/1/rssismc2g=0
wl_pspretend_threshold=0
wl_wme_sta_bk=15 1023 7 0 0 off off
wl0_bcn=100
wl1_assoc_retry_max=3
wl1_wps_reg=enabled
wl_radio=1
pci/2/1/aa2g=3
pci/2/1/boardrev=0x1301
pci/2/1/itt2ga1=32
wl0_hwaddr=8C:BE:BE:20:B7:4A
wl1_radio_pwrsave_enable=0
pci/1/1/ccode=CN
wl1_net_reauth=36000
wps_wer_mode=deny
qos_orates=80-100,10-100,5-100,3-100,2-95,0-0,0-0,0-0,0-0,0-0
wl0_ampdu_rtylimit_tid=5 5 5 5 5 5 5 5
emf_enable=0
ezc_version=2
pci/2/1/ag0=2
wl_stbc_rx=1
pci/2/1/ag1=2
pci/2/1/rssisav2g=0
wl0.13_hwaddr=02:90:4C:0E:50:20
wl0_gmode_protection=auto
pci/1/1/rxgains5gtrisoa0=7
wl0_maclist=
wl1_intfer_txfail=16
nv_wifi_pwd=
wl_radio_pwrsave_quiet_time=1800
pci/1/1/pdoffset40ma0=0x1111
pci/1/1/rxgains5gtrisoa1=6
wl0_obss_coex=0
wl_rts=2347
pci/1/1/pdoffset40ma1=0x1111
pci/1/1/rxgains5gtrisoa2=5
pci/2/1/iqcal_swp_dis=0x0
sdram_init=0x0000
pci/1/1/mcsbw405gmpo=0xa8842222
pci/1/1/pdoffset40ma2=0x1111
wl_ap_isolate=0
lan_wins=
wan_desc=
wl_dcs_csa_unicast=0
lan_hwnames=
pci/2/1/maxp2ga0=0x2072
wps_modelnum=0001
wl_country_rev=
lan1_ifnames=wl0.1 wl0.2 wl0.3 wl1.1 wl1.2 wl1.3
pci/2/1/maxp2ga1=0x2072
wl0_acs_tx_idle_cnt=5
wl1.11_hwaddr=02:90:4C:23:45:73
wl1_mrate=0
wl1_radius_ipaddr=
wl_wme_no_ack=off
dhcp1_end=192.168.2.150
pci/2/1/boardflags2=0x0800
wl1_country_code=CN
nv_linux=0.0.1
flag_local_ip=auto
wan0_pppoe_username=
wan0_unit=0
wl0_radius_key=
wl0_wps_config_state=0
wl1_gmode_protection=auto
wl0_wme_ap_be=15 63 3 0 0 off off
pci/1/1/rxgains5ghtrisoa0=5
wan0_ifnames=eth0
wl0_corerev=42
wl0_nmcsidx=-1
wl0_pspretend_retry_limit=0
wl_key=1
pci/1/1/rxgains5ghtrisoa1=4
wl0_acs_chan_flop_period=70
wl1_rateset=default
pci/1/1/regrev=35
pci/1/1/rxgains5ghtrisoa2=4
wl1_ampdu=auto
wl1_gmode=1
wl0_wds_timeout=1
wl1_unit=1
wps_aplockdown=0
wps_device_name=XiaoMiRouter
wl0_wmf_ucigmp_query=0
wl_bss_enabled=1
dlna_dms_enable=1
pci/1/1/devid=0x43b3
pci/1/1/tempsense_option=0x3
pci/2/1/regrev=28
upnp_enable=1
wl0_wme_ap_bk=15 1023 7 0 0 off off
wl0_wps_mode=enabled
wps_config_method=0x2688
pci/1/1/tempthresh=255
wan_ipv6_prefix=2001:db0:1:0::/64
wan_pppoe_ac=
wl1_nband=2
emf_uffp_entry=
pci/1/1/macaddr=8C:BE:BE:20:B7:4A
wl0_rx_amsdu_in_ampdu=auto
wl1_wme_sta_vi=7 15 2 6016 3008 off off
wl1_wps_config_state=0
wl1_wps_mode=enabled
nv_pppoe_pwd=
wl0_stbc_rx=1
lan1_hwaddr=9E:18:AB:30:82:A7
wl0_radio_pwrsave_quiet_time=1800
wl1_radio_pwrsave_pps=10
wl_sta_retry_time=5
wl_closed=0
wl0_auth_mode=none
wl1_acs_cs_scan_timer=900
pci/2/1/ofdm2gpo=0xaa888888
pci/2/1/temps_hysteresis=0
wl0_radio_pwrsave_enable=0
wl0_wet_tunnel=0
wl_intfer_period=1
autofw_port0=
wl0.6_hwaddr=02:90:4C:0E:50:29
wl1_wme_sta_vo=3 7 2 3264 1504 off off
wl1_wmf_ucigmp_query=0
boardnum=32
wl0_crypto=tkip+aes
wan_pppoe_ifname=
wl0_bss_opmode_cap_reqd=0
wl0_txchain=3
wl0_wfi_enable=0
wl1_wds=
wl_bcn=100
wl1.6_hwaddr=02:90:4C:23:45:7E
wl1_vlan_prio_mode=off
wl_reg_mode=off
pci/1/1/rxgains5gmelnagaina0=2
wl1_wds_timeout=1
pci/1/1/rxgains5gmelnagaina1=2
pci/1/1/rxgains5gmelnagaina2=3
wl_txbf_bfe_cap=1
dpsta_policy=1
flag_ota_reboot=0
wl_antdiv=-1
wl_radio_pwrsave_level=0
flag_server_ip=192.168.1.1
wl1_radio_pwrsave_stas_assoc_check=0
size: 18678 bytes (46858 left)


0.4.58 固件,从 CFE 获取的:

xiaomi> nvram show   
pci/1/1/mcsbw805glpo=0xaa842222
pci/2/1/mcs2gpo0=0x8888
qos_reset=0
wl1_wme=on
pci/2/1/mcs2gpo1=0x8888
qos_irates=0,0,0,0,0,0,0,0,0,0
wan_unit=0
pci/2/1/leddc=65535
pci/2/1/mcs2gpo2=0x8888
wl0_pspretend_threshold=0
wl0_rxchain_pwrsave_stas_assoc_check=0
wl0_wmf_bss_enable=0
wl1_auth=0
pci/2/1/mcs2gpo3=0xddb8
wan0_primary=1
wan_route=
wl0_mcast_regen_bss_enable=1
wl0_rifs_advert=auto
wl1_hwaddr=8C:BE:BE:20:B7:49
pci/2/1/mcs2gpo4=0x8888
samba_mode=
wl0_frameburst=on
pci/2/1/bwduppo=0
pci/2/1/mcs2gpo5=0xa988
wan_pppoe_keepalive=0
log_ipaddr=
pci/2/1/mcs2gpo6=0x8888
pci/2/1/stbcpo=0
pci/2/1/txchain=3
wan0_ipaddr=0.0.0.0
boardrev=0x1301
pci/2/1/mcs2gpo7=0xddc8
wan0_proto=dhcp
wl1_wme_bss_disable=0
br0_ifnames=vlan1 wl0 wl1
bsd_enable=0
pci/1/1/sb20in80and160lr5gmpo=0
pci/2/1/phycal_tempdelta=0
wl0.14_hwaddr=02:90:4C:0E:50:21
pci/1/1/aa5g=7
wl1_acs_fcs_mode=0
pci/1/1/mcsbw805ghpo=0x85542000
pci/1/1/sar5g=15
wl1_acs_dfsr_activity=30 10240
wl1_txstreams=0
et0macaddr=8C:BE:BE:20:B7:48
wl0_leddc=0x640000
pci/1/1/rawtempsense=0x1ff
pci/2/1/rssismf2g=0
wl0_bw_cap=7
wl1_wme_txp_vi=7 3 4 2 0
pci/1/1/mcsbw1605gmpo=0
wan_pppoe_passwd=
wl0_akm=psk psk2
wl1.12_hwaddr=02:90:4C:23:45:74
boot_wait=off
watchdog=3000
wan0_dns=
wl1_acs_ci_scan_timer=4
wl1_bss_hs2_enabled=1
wl1_bss_opmode_cap_reqd=0
wps_modelname=R1D
flag_try_sys1_failed=0
wl0_infra=1
wl1_rifs_advert=auto
et0mdcport=0
fw_disable=0
wl0_country_code=CN
emf_rtport_entry=
pci/1/1/tworangetssi5g=0
wl1_wep=disabled
wl1_wme_txp_vo=7 3 4 2 0
flag_package_update=0
telnet_en=0
wl1_frag=2346
wl1_acs_excl_chans=
pmon_ver=CFE 6.37.14.34 (r415984)
wl0_bcn_rotate=1
wl1_pspretend_threshold=0
pci/1/1/sb20in40lrpo=0
restore_defaults=0
vlan2ports=4 5
pci/1/1/sb40and80lr5gmpo=0
pci/2/1/ccode=CN
wan0_ifname=eth0
wl1_wpa_gtk_rekey=0
wl0.1_hwaddr=02:90:4C:0E:50:24
wl1_ampdu_rtylimit_tid=5 5 5 5 5 5 5 5
pci/1/1/pcieingress_war=15
pci/2/1/boardflags=0x80001000
wan_lease=86400
wan_pppoe_service=
wl0_wme_sta_be=15 1023 3 0 0 off off
wl1_maclist=
wl0_version=6.37.14.34 (r415984)
wl1.1_hwaddr=02:90:4C:23:45:79
http_wanport=
lan_gateway=192.168.1.1
pci/2/1/tempoffset=0
wl0.7_hwaddr=02:90:4C:0E:50:2A
wl0_psr_mrpt=0
wl1_amsdu=auto
wl1_crypto=tkip+aes
pci/1/1/mcsbw405glpo=0xa8842222
wl0_ifname=wl0
gpio0=usbport1
lan_domain=
lan_ipv6_prefix=2001:db8:1:0::/64
pci/1/1/rxgains5ghelnagaina0=2
pci/2/1/pa2gw2a0=0xf95d
wl1_hw_txchain=3
pci/1/1/rxgains5ghelnagaina1=2
pci/2/1/pa2gw2a1=0xf94f
timer_interval=3600
wl0_wme_sta_bk=15 1023 7 0 0 off off
wl1.7_hwaddr=02:90:4C:23:45:7F
wl1_psr_mrpt=0
pci/1/1/rxgains5ghelnagaina2=3
forward_port0=
igmp_enable=0
lan1_ipaddr=192.168.2.1
wl0_rxchain_pwrsave_quiet_time=1800
wl1_bss_maxassoc=128
wl0_rxstreams=0
pci/1/1/gainctrlsph=0
wl1_wmf_ucast_upnp=0
wan_pppoe_mru=1492
wl1_corerev=30
lan_route=
partialboots=0
pci/1/1/papdcap5g=0
wl0_radio_pwrsave_level=0
wl1_nmcsidx=-1
pci/1/1/sb20in80and160hr5gmpo=0
wl0_mrate=0
wl1_rx_amsdu_in_ampdu=auto
wps_device_pin=20682576
wan_gateway=0.0.0.0
wl0_mode=ap
dhcp_start=192.168.31.100
pci/1/1/mcsbw405ghpo=0x85542000
wl0_stbc_tx=auto
wl1_nmode=-1
lan1_route=
pci/2/1/devid=0x43a9
pci/2/1/tempsense_option=0x0
wl0_ap_isolate=0
dhcp_end=192.168.31.150
pci/1/1/tempcorrx=0x3f
wl0_rxchain_pwrsave_pps=10
sromrev=11
wfi_error=
wl0.15_hwaddr=02:90:4C:0E:50:22
wl0_ampdu=auto
wl0_gmode=1
wl0_wme_no_ack=off
wl1_intfer_cnt=3
pci/1/1/tssiposslope5g=1
samba_passwd=
wl0_wfi_pinmode=0
wl1_rts=2347
wl1_stbc_rx=1
pci/1/1/mcslr5gmpo=0
boardtype=0x0665
qos_sticky=1
wl0_dcs_csa_unicast=0
is_default=1
wl0_acs_dfsr_immediate=300 3
wl1_ampdu_rr_rtylimit_tid=2 2 2 2 2 2 2 2
wl0_acs_fcs_mode=0
wl0_nband=1
wl1_bw_cap=3
stats_server=
pci/1/1/rxchain=7
flag_image_name=brcm4709_hdd.bin
wl1.13_hwaddr=02:90:4C:23:45:75
wl1_txchain=3
lan_netmask=255.255.255.0
flag_try_sys2_failed=0
lan1_ifname=br1
wl0_wme_txp_be=7 3 6 2 0
wl1_obss_coex=1
http_username=
lan1_hwnames=
wl0_dtim=3
wl0_ssid=XMSB_5G
wl1_key=1
wl1_acs_scan_entry_expire=3600
pci/1/1/maxp5ga0=0x5E,0x5E,0x5E,0x5E
pci/1/1/sb40and80hr5gmpo=0
pci/2/1/pdetrange2g=3
pci/2/1/tempcorrx=0x0
wan0_pppoe_ifname=
wl1_rxchain_pwrsave_stas_assoc_check=0
flag_boot_rootfs=1
os_date=Jan  9 2014
pci/1/1/maxp5ga1=0x5E,0x5E,0x5E,0x5E
pci/1/1/maxp5ga2=0x5E,0x5E,0x5E,0x5E
wl1_radio_pwrsave_level=0
flag_boot_type=1
http_lanport=80
wl0_wme_txp_bk=7 3 6 2 0
wl1_wfi_pinmode=0
lan1_wins=
nvram_version=1
wan_domain=
wan_hwname=
wl1_wme_ap_be=15 63 3 0 0 off off
lan_lease=86400
wan_netmask=0.0.0.0
wl0_key1=
wan0_hostname=
wl0_key2=
wl0_vlan_prio_mode=off
wl0.2_hwaddr=02:90:4C:0E:50:25
wl0_key3=
wl1_rxchain_pwrsave_pps=10
wl0_key4=
wl1_radius_key=
filter_client0=
pci/1/1/sb20in80and160lr5glpo=0
filter_maclist=
lan1_lease=86400
pci/1/1/pa5ga0=0xFF90,0x1E37,0xFCB8,0xFF38,0x189B,0xFD00,0xff33,0x1a66,0xfcc4,0xFF2F,0x1748,0xFD21
wl1.2_hwaddr=02:90:4C:23:45:7A
wl1_wme_ap_bk=15 1023 7 0 0 off off
pci/1/1/boardflags=0x30000000
pci/1/1/pa5ga1=0xFF1B,0x18A2,0xFCB6,0xFF34,0x183F,0xFD12,0xff37,0x1aa1,0xfcc0,0xFF2F,0x1889,0xFCFB
wl0_acs_chan_dwell_time=70
wl0_wmf_mdata_sendup=0
pci/1/1/pa5ga2=0xff1d,0x1653,0xfd33,0xff38,0x1a2a,0xfcce,0xff35,0x1a93,0xfcc1,0xff3a,0x1abd,0xfcc0
pci/2/1/macaddr=8C:BE:BE:20:B7:49
qos_orules=
wl0.8_hwaddr=02:90:4C:0E:50:2B
wl1_bcn=100
wl1_ifname=wl1
vlan2hwname=et0
acs_2g_ch_no_restrict=1
uart_en=1
SN=561000015739
pci/1/1/tempoffset=255
wl1.8_hwaddr=02:90:4C:23:45:70
http_passwd=admin
pci/1/1/mcsbw1605glpo=0
wl0_acs_dfsr_deferred=604800 5
wl0_hw_rxchain=3
wl0_rxchain_pwrsave_enable=0
wl1_auth_mode=none
lan_stp=1
nat_type=sym
wan_pppoe_demand=0
pci/2/1/cck2gpo=0x8880
wl0_wme_ap_vi=7 15 1 6016 3008 off off
ctfqos_uldl_diffif=1
pci/1/1/sb20in80and160lr5ghpo=0
wl0_bss_maxassoc=128
wan0_pppoe_passwd=
wl0_mfp=0
wl1_wmf_mdata_sendup=0
qos_ibw=1500
wl0_closed=0
wl0_plcphdr=long
wl0_rate=0
wl1_mcast_regen_bss_enable=1
wl1_wet_tunnel=0
xtalfreq=25000
pci/2/1/pcieingress_war=15
wl0.10_hwaddr=02:90:4C:0E:50:2D
wl0_assoc_retry_max=3
wl0_macmode=disabled
wps_version2=enabled
lan_dhcp=0
wl0_radioids=BCM2069
wl0_wme_ap_vo=3 7 1 3264 1504 off off
model=R1D
pci/1/1/boardvendor=0x14e4
wl0_phytype=v
wl1_wfi_enable=0
nvram_space=65536
pci/1/1/mcsbw1605ghpo=0
wl0_lazywds=0
xiaoqiang_factory=1
wl1_radioids=BCM2057
pci/1/1/sb40and80lr5glpo=0
wl1_acs_tx_idle_cnt=5
wl1_rxchain_pwrsave_quiet_time=1800
boardflags2=0x00000000
wan0_pppoe_keepalive=0
wl0_intfer_period=1
wps_proc_status=0
pci/2/1/cddpo=0
wl1_version=6.37.14.34 (r415984)
lan_hwaddr=00:90:4C:0F:F2:A7
wl0_antdiv=-1
pci/1/1/subband5gver=0x4
wan_dns=
dpsta_ifnames=
wl1_acs_chan_dwell_time=70
pci/1/1/dot11agduplrpo=0
pci/1/1/measpower=0x7f
wan0_pppoe_ac=
wl1.14_hwaddr=02:90:4C:23:45:76
pci/2/1/pa2gw1a0=0x1c37
lan_wps_oob=disabled
pci/1/1/sromrev=11
pci/2/1/measpower1=0x0
pci/2/1/pa2gw1a1=0x1c5c
wan_pppoe_mtu=1492
wl0_acs_excl_chans=
wl0_wpa_psk=qwer1234
wl1_frameburst=on
wait_time=3
pci/2/1/bw40po=0
pci/2/1/measpower2=0x0
pci/1/1/sb40and80lr5ghpo=0
pci/1/1/venid=0x14e4
pci/2/1/temps_period=0
wl0_amsdu=auto
acs_no_restrict_align=1
dhcp_wins=wan
wl0_country_rev=35
os_server=
pci/1/1/sb20in40hrpo=0
pci/1/1/sb20in80and160hr5glpo=0
wl1_txbf_bfe_cap=1
br0_ifname=br0
lan_wps_reg=enabled
wan_proto=dhcp
wl0_wmf_igmpq_filter=0
pci/1/1/mcsbw205gmpo=0x88642222
pci/2/1/antswctl2g=0
wan0_pppoe_mru=1492
wl0_unit=0
wl1_stbc_tx=auto
wan0_mtu=1500
pci/2/1/measpower=0x0
wl0.3_hwaddr=02:90:4C:0E:50:26
wl0_bss_enabled=1
wl0_net_reauth=36000
wl1_sta_retry_time=5
lan1_stp=1
pci/1/1/mcslr5glpo=0
wl0_nmode=-1
wl0_wmf_ucast_upnp=0
wl1.3_hwaddr=02:90:4C:23:45:7B
wl1_pspretend_retry_limit=0
wl0.9_hwaddr=02:90:4C:0E:50:2C
pci/1/1/sb20in80and160hr5ghpo=0
wan_pppoe_idletime=60
wl1_acs_dfsr_immediate=300 3
wl1_wmf_igmpq_filter=0
pci/1/1/tempsense_slope=0xff
wl1.9_hwaddr=02:90:4C:23:45:71
wl1_country_rev=28
wps_restart=0
pci/1/1/rxgains5gmtrelnabypa0=1
lan1_gateway=192.168.2.1
pci/1/1/rxgains5gmtrelnabypa1=1
wl1_bcn_rotate=1
pci/1/1/rxgains5gmtrelnabypa2=1
wl0_acs_dfs=0
pci/1/1/epagain5g=0
qos_ack=1
qos_burst0=
wl0_wds=
wl1_txbf_bfr_cap=1
qos_burst1=
log_level=0
pci/1/1/mcslr5ghpo=0
pci/1/1/sb40and80hr5glpo=0
wan0_gateway=0.0.0.0
wfi_cmd=
wl1_wme_sta_be=15 1023 3 0 0 off off
ntp_server=192.5.41.40 192.5.41.41 133.100.9.2
wl0_reg_mode=off
wl1_closed=0
lan_ipv6_dns=
wan_hwaddr=
wl0_intfer_txfail=16
wl1_bss_enabled=1
wps_mfstring=xiaomi
wl0.11_hwaddr=02:90:4C:0E:50:2E
wl1_rxstreams=0
lan_ifnames=vlan1 wl0 wl1
wl1_akm=psk psk2
wl1_reg_mode=off
wl0_auth=0
wl0_radius_port=1812
wl0_wme=on
wl1_wme_sta_bk=15 1023 7 0 0 off off
pci/2/1/opo=68
pci/1/1/rxgains5ghtrelnabypa0=1
wl0_radius_ipaddr=
wl0_rxchain=3
wl0_wme_bss_disable=0
wl1_radio=1
pci/1/1/rxgains5ghtrelnabypa1=1
pci/1/1/boardflags2=0x300002
pci/1/1/rxgains5ghtrelnabypa2=1
ure_disable=1
wl0_wme_sta_vi=7 15 2 6016 3008 off off
pci/1/1/boardflags3=0x0
pci/1/1/sb40and80hr5ghpo=0
pci/2/1/bxa2g=0
wl1_antdiv=-1
qos_method=0
wl0_acs_ci_scan_timeout=300
wl1_acs_dfsr_deferred=604800 5
wan_pppoe_username=
pci/1/1/aga0=01
pci/2/1/freqoffset_corr=0x0
pci/1/1/aga1=01
wan_ifnames=eth0.2
wl1.15_hwaddr=02:90:4C:23:45:77
flag_tftp_bootup=off
pci/1/1/aga2=133
wan0_domain=
wan0_hwname=
wl0_wme_sta_vo=3 7 2 3264 1504 off off
wl0_bss_hs2_enabled=1
wl1_ap_isolate=0
pci/2/1/ledbh0=255
wl0_wps_reg=enabled
wl1_radio_pwrsave_quiet_time=1800
flag_last_success=1
pci/1/1/measpower1=0x7f
pci/2/1/ledbh1=255
wl1_wme_no_ack=off
clkfreq=1000,800
lan_ipaddr=192.168.1.1
lan_proto=dhcp
os_name=linux
pci/1/1/measpower2=0x7f
pci/2/1/ledbh2=255
wl1_radius_port=1812
vlan1hwname=et0
lan1_netmask=255.255.255.0
pci/2/1/ledbh3=131
pci/2/1/rxchain=3
wl0_maxassoc=128
wan0_route=
wl1_plcphdr=long
br1_ifname=br1
wan0_pppoe_demand=0
wl0_phytypes=v
wl1_macmode=disabled
wl1_maxassoc=128
lan1_proto=dhcp
router_disable=0
wl0_frag=2346
wl0_wep=disabled
wps_sta_pin=00000000
pci/2/1/hw_iqcal_en=0x0
pci/2/1/tssipos2g=1
wan0_netmask=0.0.0.0
wl0_txbf_bfe_cap=1
wl1_phytype=n
wl0_intfer_tcptxfail=5
wl1_lazywds=0
wl1_phytypes=n
wl0.4_hwaddr=02:90:4C:0E:50:27
sdram_config=0x014B
wl1_wme_txp_be=7 3 4 2 0
ssh_en=1
vlan1ports=0 2 5*
dmz_ipaddr=
pci/2/1/rxpo2g=0
wan0_wins=
wl0_chanspec=0
wl1.4_hwaddr=02:90:4C:23:45:7C
wl1_trf_mgmt_rssi_policy=0
pci/1/1/rxgains5gtrelnabypa0=1
pci/1/1/rxgains5gtrelnabypa1=1
wl1_chanspec=0
pci/1/1/rxgains5gtrelnabypa2=1
wl1_acs_ci_scan_timeout=300
wl1_mode=ap
wl1_wme_txp_bk=7 3 4 2 0
wl0_ampdu_rr_rtylimit_tid=2 2 2 2 2 2 2 2
wl0_rateset=default
wl1_rxchain_pwrsave_enable=0
pci/1/1/txchain=7
pci/1/1/pdgain5g=4
pci/2/1/pa2gw0a0=0xfe77
wl0_wme_apsd=on
wl1_intfer_tcptxfail=5
wl1_wpa_psk=qwer1234
pci/2/1/pa2gw0a1=0xfe76
wl0_wme_txp_vi=7 3 6 2 0
wl0_txstreams=0
pci/1/1/antswitch=0
pci/2/1/elna2g=2
wl1_wme_apsd=on
dpsta_lan_uif=1
lan_ifname=br-lan
wan_primary=0
boardflags=0x00000110
lan_ipv6_6to4id=0
wandevs=et0
sdram_refresh=0x0000
wan0_pppoe_mtu=1492
wl0_acs_scan_entry_expire=3600
wl0_txbf_bfr_cap=1
dhcp_domain=wan
qos_icmp=0
wl0_wme_txp_vo=7 3 6 2 0
et_txq_thresh=1024
wl0.12_hwaddr=02:90:4C:0E:50:2F
wl1_dcs_csa_unicast=0
sdram_ncdl=0
pci/1/1/temps_hysteresis=15
lan1_domain=
wl1_wme_ap_vi=7 15 1 6016 3008 off off
pci/1/1/mcsbw205glpo=0x88642222
wl1_wmf_bss_enable=0
ezc_enable=1
wl1_hw_rxchain=3
pci/2/1/tempsense_slope=0x0
wan0_lease=86400
wl0_radio_pwrsave_pps=10
wl0_radio_pwrsave_stas_assoc_check=0
wl1_dtim=3
wl1_ssid=XMSB
is_modified=0
qos_enable=0
wl0_acs_cs_scan_timer=900
wl1.10_hwaddr=02:90:4C:23:45:72
wl1_intfer_period=1
lan_ipv6_mode=3
pci/1/1/dot11agduphrpo=0
pci/1/1/temps_period=15
wan_ipaddr=0.0.0.0
wl1_wme_ap_vo=3 7 1 3264 1504 off off
pci/2/1/antswitch=0
pci/1/1/mcsbw805gmpo=0xaa842222
pci/1/1/pdoffset80ma0=0
wl0_rts=2347
pci/1/1/pdoffset80ma1=0
flag_trans_proto=2
lan1_dhcp=0
pci/1/1/pdoffset80ma2=0
pci/2/1/rawtempsense=0x0
wan_wins=
hspotap_enable=0
pci/1/1/mcsbw205ghpo=0x55540000
wl0_trf_mgmt_rssi_policy=0
pci/2/1/extpagain2g=3
pci/2/1/tempthresh=120
wl0_hw_txchain=3
wl1_key1=
os_version=6.37.14.34
pci/1/1/rxgains5gmtrisoa0=5
wl1_acs_dfs=0
wl1_key2=
pci/1/1/rxgains5gmtrisoa1=4
wl1_key3=
lan1_wps_oob=disabled
pci/1/1/rxgains5gmtrisoa2=4
wl0_wpa_gtk_rekey=0
wl1_key4=
wl1_leddc=0x640000
pci/2/1/triso2g=4
wl0_sta_retry_time=5
pci/1/1/phycal_tempdelta=255
wan0_desc=Default Connection
pci/2/1/sromrev=8
wan_mtu=1500
wl0_key=1
qos_obw=384
emf_entry=
filter_macmode=deny
pci/1/1/xtalfreq=0x40000
wl1_infra=1
et0phyaddr=30
console_loglevel=1
lan1_wps_reg=enabled
time_zone=PST8PDT
wl0.5_hwaddr=02:90:4C:0E:50:28
qos_default=3
wl1_rxchain=3
acs_ifnames= wl0 wl1
wl1_acs_chan_flop_period=70
wl0_acs_dfsr_activity=30 10240
wl1.5_hwaddr=02:90:4C:23:45:7D
wl1_mfp=0
acs_mode=acsd
wan0_pppoe_idletime=60
wan0_pppoe_service=
wan_ifname=eth0.2
wl0_intfer_cnt=3
wan0_ipv6_prefix=2001:db0:1:0::/64
wan0_hwaddr=
landevs=vlan1 wl0 wl1
pci/1/1/rxgains5gelnagaina0=1
wan_hostname=
wl1_rate=0
dhcp1_start=192.168.2.100
pci/1/1/rxgains5gelnagaina1=1
wl0_radio=1
pci/1/1/femctrl=3
pci/1/1/rxgains5gelnagaina2=1
wl0_acs_ci_scan_timer=4
pci/2/1/rssismc2g=0
wl0_bcn=100
wl1_assoc_retry_max=3
wl1_wps_reg=enabled
pci/2/1/aa2g=3
pci/2/1/boardrev=0x1301
pci/2/1/itt2ga1=32
wl0_hwaddr=8C:BE:BE:20:B7:4A
wl1_radio_pwrsave_enable=0
pci/1/1/ccode=CN
wl1_net_reauth=36000
wps_wer_mode=deny
qos_orates=80-100,10-100,5-100,3-100,2-95,0-0,0-0,0-0,0-0,0-0
wl0_ampdu_rtylimit_tid=5 5 5 5 5 5 5 5
emf_enable=0
ezc_version=2
pci/2/1/ag0=2
pci/2/1/ag1=2
pci/2/1/rssisav2g=0
wl0.13_hwaddr=02:90:4C:0E:50:20
wl0_gmode_protection=auto
pci/1/1/rxgains5gtrisoa0=7
wl0_maclist=
wl1_intfer_txfail=16
pci/1/1/pdoffset40ma0=0x1111
pci/1/1/rxgains5gtrisoa1=6
wl0_obss_coex=0
sdram_init=0x0000
pci/1/1/pdoffset40ma1=0x1111
pci/1/1/rxgains5gtrisoa2=5
pci/2/1/iqcal_swp_dis=0x0
pci/1/1/mcsbw405gmpo=0xa8842222
pci/1/1/pdoffset40ma2=0x1111
lan_wins=
wan_desc=
lan_hwnames=
pci/2/1/maxp2ga0=0x2072
wps_modelnum=0001
lan1_ifnames=wl0.1 wl0.2 wl0.3 wl1.1 wl1.2 wl1.3
pci/2/1/maxp2ga1=0x2072
wl0_acs_tx_idle_cnt=5
wl1.11_hwaddr=02:90:4C:23:45:73
wl1_mrate=0
wl1_radius_ipaddr=
dhcp1_end=192.168.2.150
pci/2/1/boardflags2=0x0800
wl1_country_code=CN
flag_local_ip=auto
wan0_pppoe_username=
wan0_unit=0
wl0_radius_key=
wl0_wps_config_state=0
wl1_gmode_protection=auto
wl0_wme_ap_be=15 63 3 0 0 off off
pci/1/1/rxgains5ghtrisoa0=5
wan0_ifnames=eth0
wl0_corerev=42
wl0_nmcsidx=-1
wl0_pspretend_retry_limit=0
pci/1/1/rxgains5ghtrisoa1=4
wl0_acs_chan_flop_period=70
wl1_rateset=default
pci/1/1/regrev=35
pci/1/1/rxgains5ghtrisoa2=4
wl1_ampdu=auto
wl1_gmode=1
wl0_wds_timeout=1
wl1_unit=1
wps_aplockdown=0
wps_device_name=XiaoMiRouter
wl0_wmf_ucigmp_query=0
dlna_dms_enable=1
pci/1/1/devid=0x43b3
pci/1/1/tempsense_option=0x3
pci/2/1/regrev=28
upnp_enable=1
wl0_wme_ap_bk=15 1023 7 0 0 off off
wl0_wps_mode=enabled
wps_config_method=0x2688
pci/1/1/tempthresh=255
wan_ipv6_prefix=2001:db0:1:0::/64
wan_pppoe_ac=
wl1_nband=2
emf_uffp_entry=
pci/1/1/macaddr=8C:BE:BE:20:B7:4A
wl0_rx_amsdu_in_ampdu=auto
wl1_wme_sta_vi=7 15 2 6016 3008 off off
wl1_wps_config_state=0
wl1_wps_mode=enabled
wl0_stbc_rx=1
lan1_hwaddr=9E:18:AB:30:82:A7
wl0_radio_pwrsave_quiet_time=1800
wl1_radio_pwrsave_pps=10
wl0_auth_mode=none
wl1_acs_cs_scan_timer=900
pci/2/1/ofdm2gpo=0xaa888888
pci/2/1/temps_hysteresis=0
wl0_radio_pwrsave_enable=0
wl0_wet_tunnel=0
autofw_port0=
wl0.6_hwaddr=02:90:4C:0E:50:29
wl1_wme_sta_vo=3 7 2 3264 1504 off off
wl1_wmf_ucigmp_query=0
boardnum=32
wl0_crypto=tkip+aes
wan_pppoe_ifname=
wl0_bss_opmode_cap_reqd=0
wl0_txchain=3
wl0_wfi_enable=0
wl1_wds=
wl1.6_hwaddr=02:90:4C:23:45:7E
wl1_vlan_prio_mode=off
pci/1/1/rxgains5gmelnagaina0=2
wl1_wds_timeout=1
pci/1/1/rxgains5gmelnagaina1=2
pci/1/1/rxgains5gmelnagaina2=3
dpsta_policy=1
flag_server_ip=192.168.1.1
wl1_radio_pwrsave_stas_assoc_check=0
flag_ota_reboot=0
size: 15595 bytes (49941 left)
*** command status = 0

















个人工具
名字空间

变换
操作
导航
工具箱