-
Notifications
You must be signed in to change notification settings - Fork 8
/
nvram-merlin.ini
2319 lines (2256 loc) · 36.7 KB
/
nvram-merlin.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# NVRAM user settings for ASUS router
# Supports OEM and Merlin firmware ONLY
#Version=30.4.0
# Changelog
#----------------------------------------------------------------
# Version 30.4 18-November-2020
# - Include nvram variables from John's Fork
#
# Version 30.3 29-March-2020
# - Updated for 384.13 nvram variables
# - Comment nvram vars http_username and http_passwd
# - Remove Facebook WiFi section
#
# Version 26.1 15-September-2017
# - add force save '%' and force save/restore '&' flags
# - force save dns_probe and dns_filters to preserve valid empty values
# - resync with new adds for 380.68
#
# Version 26.0 1-September-2017
# - change version numbering
# - add missing enable vars for ftp and samba
# - force restore transient var qos_inuse
# - exclude samba and media server names during migrate (default based on mac)
# - sync with 380.68 and V27 final
#
# Version 25a 9-August-2017
# - change force include flag to '+' to work around busybox bug
#
# Version 25 8-August-2017
# - sync with 380.67 Merlin and V27 fork
# - misc updates to wan and wifi variables
# - add support for hotspot and captive portal features (currently not supported)
#
# Version 24a 12-February-2017
# - sync with 380.65 Merlin and V23 fork
# - add support for Merlin firmware update
# - add support for new ipv6 options
# - add support for OpenVPN 2.4
# - add support for DNSCrypt
# - add support MU-MIMO options
# - add support for Bluetooth compatibility
# - add support for Facebook WIFI (ASUS OEM only)
# - misc updates to wan and wifi variables
#
# Version 24 2-May-2017
# - fix 3rd radio psk and wps vars
# - add Smartconnect support
#
# Version 23 3-April-2016
# - sync with 380.58 Merlin and V17 fork
# - reduced number of OpenVPN servers to 2 (number actually supported)
# - move and update vars to new Tweaks and Hidden settings section
# - add support for radius server
# - add user Email vars
# - add custom icon vars
# - add Traffic Control settings (future fw)
# - added section for custom User Adds
#
# Version 22 27-October-2015
# - fix SMB/FTP access restore by adding index var
# - fix ipv6 settings for non-native modes
# - additional support for 3 radios
# - add support for 374 fork http port change
# - add support for syslog logging level and msg level
# - add support for reboot schedule
# - add support for up to 5 VPN servers/clients
# - add support for QOS bw limiting
# - add support for WTFast
# - add support for KeyGuard
# - version variable name update
# Version 21 6-August-2015
# - version update only
#
# Version 20 3-August-2015
# - add missing Protected Management Frame vars
# - add missing mode settings vars
# - add missing Disk Utility vars
# - add support for AC3200 third radio
# - add support for Concurrent Repeater (future fw)
# - add support for bandwidth monitoring (future fw)
#
# Version 19 16-June-2015
# - restore overzealous cleaning of dhpc_, lan_ vars
# - add new Merlin jffs2_enable
#
# Version 18 14-June-2015
# - general update based on latest defaults.c
# included reported missing
# ipv6_ns_drop, dms_dir_manual, acs_dfs
# - Add [TOR VPN] section
# - remove unneccessary wl_,dhcp_ vars
# - update vars for migration mode
#
# Version 17 29-April-2015
# - added missing var for http/https mode
# - add separate USB Modem section and move existing modem vars
# from DualWan
# - add support vars for Merlin VPN policy based routing
#
# Version 16 16-April-2015
# - add first pass of TrendMicro module section
# - add https router access vars
# - add nat loopback var for Merlin
# - update DNSFilter section with YanexDNS vars
#
# Version 15 25-February-2015
# - add PPT server vars from ASUS merge
# - correct varname typo (MULTIFILTER_ALL) in [Parental Controls]
# - add [AICloud settings] section - suggestion by Denny
# - add [SNMP settings] section - suggestion by pieland
# - add missing nat_redirect_enable - thanks noric
# - add missing wan_unit (for Dual Wan configs) - thanks noric
# - add clkfreq (only in backup mode) - thanks noric
# - add version string for consistency check
#
# Version 14 7-February-2015
# - rename file to include codename
#
# Version 12 1-February-2015
# - version update only
#
# Version 11 29-January-2015
# - added Merlin & fork unique variables
#
# Version 10 8-January-2015
# - include Astrill VPN secion
#
# Version 9 24-December-2014
# - add chanspec vars - thanks ocram59,rlcronin
# - add TxPower vars for 374 code (txpower for 376 code already present)
# - update/consolidate [MAC Filters] vars
# - remove unnecessary _unit vars
#
# Version 8 17-December-2014
# - add access list for smb/ftp - thanks snb
# - add [DNS Filter] section - thanks snb
# - add [Parental Controls] section
#
# Version 7 12-December-2014
# - add WPS vars - thanks Gerr
#
# Version 6 5-December-2014
# - version bump to keep in sync wth script
#
# Version 5 20-November-2014
# - add /QOS section - by ocram59
# - add modem vars to DualWan section
#
# Version 4 3-November-2014
# - add Wireless-Professional section
# - add Guest Network section
# - add Switch Control section
# - add SAMBA access vars - by ocram59
# - add FTP access vars
# - add Migration mode flag to exclude select vars (first char @)
#
# Version 3a 28-October-2014
# - Re-release with script update
#
# Version 2 14-October-2014
# - Add custom_clientlist to [DHCP settings] - by JGrana
#
# Version 1 11-Sepember-2014
# - Initial release
# Comment (first char #) individual variable names to exclude that variable
# Comment (first char #) section name to exclude all variables in that section
#
#----------------------------------------------------------------
[System - Basic]
@AllLED
time_zone
time_zone_dst
time_zone_dstoff
time_zone_x
timemachine_enable
tm_debug
tm_device_name
tm_partition_num
tm_ui_setting
tm_usb_path_pid
tm_usb_path_serial
tm_usb_path_vid
tm_vol_size
@jffs2_enable
@jffs2_exec
@jffs2_format
@jffs2_log
@jffs2_on
@jffs2_scripts
@local_domain
log_ipaddr
telnetd
telnetd_enable
sshd_address
sshd_authkeys
sshd_bfp
sshd_enable
sshd_forwarding
sshd_pass
sshd_port
enable_acc_restriction
restrict_rulelist
misc_http_x
misc_httpport_x
misc_httpsport_x
sw_mode
r_Setting
w_Setting
x_Setting
wlc_psta
nat_redirect_enable
nat_type
http_autologout
http_client
http_clientlist
http_dut_redir
http_enable
http_id
http_lanport
#http_passwd
#http_username
httpd_die_reboot
httpd_handle_request
httpd_handle_request_fromapp
@https_crt_cn
@https_crt_file
@https_crt_gen
@https_crt_save
https_enable
https_lanport
preferred_lang
fw_restrict_gui
fw_restrict_gui_mac
[System - Other]
@usb_usb2
@usb_usb3
@usb_idle_exclude
@usb_idle_timeout
@rstats_bak
@rstats_colors
@rstats_data
@rstats_enable
@rstats_exclude
@rstats_new
@rstats_offset
@rstats_path
@rstats_sshut
@rstats_stime
@cstats_all
@cstats_enable
@cstats_exclude
@cstats_include
@cstats_new
@cstats_sshut
@rstats_bak
@rstats_colors
@rstats_data
@rstats_enable
@rstats_exclude
@rstats_new
@rstats_offset
@rstats_path
@rstats_sshut
@rstats_stime
@led_disable
@lfp_disable
@btn_ez
@btn_ez_mode
@btn_ez_radiotoggle
@btn_led
@btn_led_gpio
@btn_led_mode
@btn_lte
@btn_rst
@btn_wifi_sw
@btn_wifi_toggle
@gro_disable
@cron_loglevel
data_usage
data_usage_cycle
data_usage_limit
data_usage_warning
wollist
script_usbhotplug
script_usbmount
script_usbumount
log_level
log_port
log_size
log_small
message_loglevel
reboot_schedule
reboot_schedule_enable
ntp_log_x
ntp_ready
ntp_server
ntp_server0
ntp_server1
ntpd_enable
ntpd_server_redir
ntpd_server
custom_clientlist
custom_usericon
custom_usericon_del
atcover_sip
atcover_sip_ip
atcover_sip_type
nc_mail_enable
nc_setting_conf
nc_web_app_enable
ncb_enable
[Tweaks & Hidden settings]
aae_disable_force
diskformat_file_system
diskformat_label
dms_rescan
dnscrypt1_ipv6
dnscrypt1_port
dnscrypt1_resolver
dnscrypt2_ipv6
dnscrypt2_port
dnscrypt2_resolver
dnscrypt_csv
dnscrypt_log
dnscrypt_nologs
dnscrypt_proxy
dns_delay_round
dns_fwd_local
dns_local_cache
dns_norebind
dns_priv_override
dns_probe
dns_probe_chk
dns_probe_host
%dns_probe_content
drop_caches
ehci_irq
ehci_ports
env_path
fanctrl_dutycycle
firmware_check_enable
mdns_enable
mdns_enable_x
ptcsrv_enable
pwrsave_mode
upnp_clean
upnp_clean_interval
upnp_clean_threshold
upnp_enable
upnp_flush
upnp_max_lifetime
upnp_max_port_ext
upnp_max_port_int
upnp_min_lifetime
upnp_min_port_ext
upnp_min_port_int
upnp_mnp
upnp_port
upnp_secure
upnp_ssdp_interval
upnp_stun
[Disk Utility]
@diskmon_force_stop
@diskmon_freq
@diskmon_freq_time
@diskmon_part
@diskmon_policy
@diskmon_status
@diskmon_usbport
@usb_path1_diskmon_freq
@usb_path1_diskmon_freq_time
@usb_path2_diskmon_freq
@usb_path2_diskmon_freq_time
@usb_path3_diskmon_freq
@usb_path3_diskmon_freq_time
[AiMesh]
cfg_alias
cfg_cost
cfg_device_list
cfg_group
cfg_master
cfg_maxlevel
cfg_obstatus
cfg_recount
cfg_rejoin
cfg_relist
cfg_ver
cfg_wifi_quality
[Switch Control]
ctf_disable
ctf_disable_force
ctf_disable_modem
ctf_fa_mode
ctf_pt_udp
jumbo_frame_enable
[NAT Passthrough]
fw_pt_h323
fw_pt_ipsec
fw_pt_l2tp
fw_pt_pppoerelay
fw_pt_pptp
fw_pt_rtsp
fw_pt_sip
fw_pt_stun
[TCP/UDP settings]
ct_max
ct_tcp_timeout
ct_timeout
ct_udp_timeout
[Port Forwards]
game_vts_rulelist
vts_enable_x
vts_ftpport
vts_rulelist
vts_upnplist
[Port Triggers]
autofw_enable_x
autofw_rulelist
[Static Routing]
sr_enable_x
sr_rulelist
[MAC Filters]
macfilter_enable_x
macfilter_num_x
macfilter_rulelist
w1_maclist
wl_maclist_x
wl0_maclist_x
wl1_maclist_x
wl2_maclist_x
wl0_macmode
wl1_macmode
wl2_macmode
wl0.1_maclist
wl0.1_maclist_x
wl0.2_maclist_x
wl0.3_maclist_x
wl1.1_maclist_x
wl1.2_maclist_x
wl1.3_maclist_x
wl2.1_maclist_x
wl2.2_maclist_x
wl2.3_maclist_x
wl0.1_macmode
wl0.2_macmode
wl0.3_macmode
wl1.1_macmode
wl1.2_macmode
wl1.3_macmode
wl2.1_macmode
wl2.2_macmode
wl2.3_macmode
[IPv6 settings]
ipv6_6rd_dhcp
ipv6_6rd_ip4size
ipv6_6rd_prefix
ipv6_6rd_prefixlen
ipv6_6rd_router
ipv6_accept_ra
ipv6_autoconf_type
ipv6_debug
ipv6_dhcp6c_force
ipv6_dhcp6c_release
ipv6_dhcp6s_enable
ipv6_dhcp_end
ipv6_dhcp_lifetime
ipv6_dhcp_pd
ipv6_dhcp_start
ipv6_dns
ipv6_dns1
ipv6_dns2
ipv6_dns3
ipv6_dns_router
ipv6_dnsenable
ipv6_fw_enable
ipv6_fw_rulelist
ipv6_gateway
ipv6_get_dns
ipv6_get_domain
ipv6_hosts
ipv6_ifdev
ipv6_ifname
ipv6_ipaddr
ipv6_isp_opt
ipv6_mtu
ipv6_neighsol_drop
ipv6_pd_plifetime
ipv6_pd_vlifetime
ipv6_ns_drop
ipv6_prefix
ipv6_prefix_len_wan
ipv6_prefix_length
ipv6_prefix_length_s
ipv6_prefix_s
ipv6_radvd
ipv6_radvd_dl_x
ipv6_radvd_dlx
ipv6_radvd_dp
ipv6_radvd_mtu
ipv6_relay
ipv6_rtr_addr
ipv6_rtr_addr_s
ipv6_sbstate_t
ipv6_service
ipv6_slaid
ipv6_state_t
ipv6_tun_addr
ipv6_tun_addrlen
ipv6_tun_mtu
ipv6_tun_peer
ipv6_tun_ttl
ipv6_tun_v4end
#separate settings for dual wan
ipv61_6rd_dhcp
ipv61_6rd_ip4size
ipv61_6rd_prefix
ipv61_6rd_prefixlen
ipv61_6rd_router
ipv61_accept_defrtr
ipv61_autoconf_type
ipv61_dhcp6c_release
ipv61_dhcp_end
ipv61_dhcp_lifetime
ipv61_dhcp_pd
ipv61_dhcp_start
ipv61_dns
ipv61_dns1
ipv61_dns2
ipv61_dns3
ipv61_dnsenable
ipv61_gateway
ipv61_get_dns
ipv61_get_domain
ipv61_ifdev
ipv61_ipaddr
ipv61_prefix
ipv61_prefix_len_wan
ipv61_prefix_length
ipv61_prefix_length_s
ipv61_prefix_s
ipv61_radvd
ipv61_relay
ipv61_rtr_addr
ipv61_rtr_addr_s
ipv61_service
ipv61_tun_addr
ipv61_tun_addrlen
ipv61_tun_mtu
ipv61_tun_peer
ipv61_tun_ttl
ipv61_tun_v4end
[Wireless - General]
acs_band1
acs_ctrl_chan_adjust
acs_dfs
mfp_ip_monopoly
wl0_acs_scan_entry_expire
wl0_auth_mode_x
wl0_bss_enabled
wl0_bw
wl0_bw_cap
wl0_chanspec
wl0_closed
wl0_crypto
wl0_expire
wl0_gmode_protection
wl0_key
wl0_key1
wl0_key2
wl0_key3
wl0_key4
wl0_lanaccess
wl0_mfp
wl0_mode_x
wl0_nmode_x
wl0_optimizexbox
wl0_phrase_x
wl0_radius_key
wl0_ssid
wl0_wep
wl0_wep_x
wl0_auth
wl0_wpa_gtk_rekey
wl0_wpa_psk
wl0_wps_config_state
wl0_wps_mode
wl0_wps_reg
wl1_acs_scan_entry_expire
wl1_auth_mode_x
wl1_bss_enabled
wl1_bw
wl1_bw_cap
wl1_chanspec
wl1_closed
wl1_crypto
wl1_expire
wl1_gmode_protection
wl1_key
wl1_key1
wl1_key2
wl1_key3
wl1_key4
wl1_lanaccess
wl1_mfp
wl1_mode_x
wl1_nmode_x
wl1_optimizexbox
wl1_phrase_x
wl1_radius_key
wl1_ssid
wl1_wep
wl1_wep_x
wl1_auth
wl1_wpa_gtk_rekey
wl1_wpa_psk
wl1_wps_config_state
wl1_wps_mode
wl1_wps_reg
wl2_acs_scan_entry_expire
wl2_auth_mode_x
wl2_bss_enabled
wl2_bw
wl2_bw_cap
wl2_chanspec
wl2_closed
wl2_crypto
wl2_expire
wl2_gmode_protection
wl2_key
wl2_key1
wl2_key2
wl2_key3
wl2_key4
wl2_lanaccess
wl2_mfp
wl2_mode_x
wl2_nmode_x
wl2_optimizexbox
wl2_phrase_x
wl2_radius_key
wl2_ssid
wl2_wep
wl2_wep_x
wl2_auth
wl2_wpa_gtk_rekey
wl2_wpa_psk
wl2_wps_config_state
wl2_wps_mode
wl2_wps_reg
wlc_bw_cap
wlc_crypto
wlc_key
wlc_ssid
wlc_ure_ssid
wlc_wep_key
wlc_wpa_psk
wps_enable
wps_enable_x
wps_band
wps_band_x
wps_multiband
wps_wer_mode
wl0_radius_ipaddr
wl1_radius_ipaddr
wl2_radius_ipaddr
wl0_radius_key
wl1_radius_key
wl2_radius_key
wl0_radius_port
wl1_radius_port
wl2_radius_port
[Wireless - Professional]
acs_2g_ch_no_restrict
acs_ifnames
acs_no_restrict_align
wan_nat_x
wan0_nat_x
wan1_nat_x
stop_gmac3
@wl0_reg_mode
@wl0_txpower
@wl0_TxPower
@wl1_reg_mode
@wl1_txpower
@wl1_TxPower
@wl2_reg_mode
@wl2_txpower
@wl2_TxPower
wl0_ack_ratio
wl0_ampdu_mpdu
wl0_ampdu_rts
wl0_amsdu
wl0_ap_isolate
wl0_bcn
wl0_dtim
wl0_frag
wl0_frameburst
wl0_igs
wl0_itxbf
wl0_mrate_x
wl0_plcphdr
wl0_radio
wl0_radio_time_x
wl0_radio_time2_x
wl0_rateset
wl0_sched
wl0_timesched
wl0_turbo_qam
wl0_turbo_qam_brcm_intop
wl0_txbf
wl0_user_rssi
wl0_wds
wl0_wds_lazywds
wl0_wds_vht
wl0_wme
wl0_wme_apsd
wl0_wme_no_ack
wl1_ack_ratio
wl1_ampdu_mpdu
wl1_ampdu_rts
wl1_amsdu
wl1_ap_isolate
wl1_bcn
wl1_dtim
wl1_frag
wl1_frameburst
wl1_HT_GI
wl1_HT_STBC
wl1_igs
wl1_itxbf
wl1_mrate_x
wl1_plcphdr
wl1_radio
wl1_radio_time_x
wl1_radio_time2_x
wl1_rateset
wl1_sched
wl1_timesched
wl1_turbo_qam
wl1_turbo_qam_brcm_intop
wl1_txbf
wl1_user_rssi
wl1_wds
wl1_wds_lazywds
wl1_wds_vht
wl1_wme
wl1_wme_apsd
wl1_wme_no_ack
wl2_ack_ratio
wl2_ampdu_mpdu
wl2_ampdu_rts
wl2_amsdu
wl2_ap_isolate
wl2_bcn
wl2_dtim
wl2_frag
wl2_frameburst
wl2_HT_GI
wl2_HT_STBC
wl2_igs
wl2_itxbf
wl2_mrate_x
wl2_plcphdr
wl2_radio
wl2_radio_time_x
wl2_radio_time2_x
wl2_rateset
wl2_sched
wl2_timesched
wl2_turbo_qam
wl2_turbo_qam_brcm_intop
wl2_txbf
wl2_user_rssi
wl2_wds
wl2_wds_lazywds
wl2_wds_vht
wl2_wme
wl2_wme_apsd
wl2_wme_no_ack
wl0_btc_mode
wl1_btc_mode
wl2_btc_mode
wl1_80211h
wl2_80211h
wl0_mumimo
wl1_mumimo
wl2_mumimo
@acs_band3
@acs_ch13
wl0_mu_features
wl1_mu_features
wl2_mu_features
wl0_atf
wl0_atf_delay_disable
wl0_atf_mode
wl0_atf_sta
wl0_atf_ssid
wl1_atf
wl1_atf_delay_disable
wl1_atf_mode
wl1_atf_sta
wl1_atf_ssid
wl2_atf
wl2_atf_delay_disable
wl2_atf_mode
wl2_atf_sta
wl2_atf_ssid
wl0_hwol
wl1_hwol
wl2_hwol
quagga_enable
[Wireless - Smart Connect]
bsd_bounce_detect_x
bsd_helper
bsd_hport
bsd_ifnames
bsd_ifnames_x
bsd_msglevel
bsd_pport
bsd_primary
bsd_role
bsd_scheme
smart_connect_x
wl0_bsd_if_select_policy
wl1_bsd_if_qualify_policy_x
wl1_bsd_if_select_policy
wl1_bsd_if_select_policy_x
wl1_bsd_sta_select_policy_x
wl1_bsd_steering_policy_x
wl2_bsd_if_qualify_policy_x
wl2_bsd_if_select_policy
wl2_bsd_if_select_policy_x
wl2_bsd_sta_select_policy_x
wl2_bsd_steering_policy_x
[Wireless - Concurrent Repeater]
wlc0_list
wlc0_ssid
wlc0_wep
wlc0_key
wlc0_wep_key
wlc0_auth_mode
wlc0_crypto
wlc0_wpa_psk
wlc0_state
wlc0_sbstate
wlc0_scan_state
wlc0_mode
wlc0_ure_ssid
wlc0_nbw_cap
wlc0_bw_cap
wlc1_list
wlc1_ssid
wlc1_wep
wlc1_key
wlc1_wep_key
wlc1_auth_mode
wlc1_crypto
wlc1_wpa_psk
wlc1_state
wlc1_sbstate
wlc1_scan_state
wlc1_mode
wlc1_ure_ssid
wlc1_nbw_cap
wlc1_bw_cap
wlc2_list
wlc2_ssid
wlc2_wep
wlc2_key
wlc2_wep_key
wlc2_auth_mode
wlc2_crypto
wlc2_wpa_psk
wlc2_state
wlc2_sbstate
wlc2_scan_state
wlc2_mode
wlc2_ure_ssid
wlc2_nbw_cap
wlc2_bw_cap
wlc_express
[Guest Network]
wl0.1_ap_isolate
wl0.1_auth_mode_x
wl0.1_bss_enabled
wl0.1_closed
wl0.1_crypto
wl0.1_expire
wl0.1_key
wl0.1_key1
wl0.1_key2
wl0.1_key3
wl0.1_key4
wl0.1_lanaccess
wl0.1_macmode
wl0.1_radio
wl0.1_radius_key
wl0.1_ssid
wl0.1_wep_x
wl0.1_wpa_gtk_rekey
wl0.1_wpa_psk
wl0.1_wps_mode
wl0.2_ap_isolate
wl0.2_auth_mode_x
wl0.2_bss_enabled
wl0.2_closed
wl0.2_crypto
wl0.2_expire
wl0.2_key
wl0.2_key1
wl0.2_key2
wl0.2_key3
wl0.2_key4
wl0.2_lanaccess
wl0.2_macmode
wl0.2_radio
wl0.2_radius_key
wl0.2_ssid
wl0.2_wep_x
wl0.2_wpa_gtk_rekey
wl0.2_wpa_psk
wl0.2_wps_mode
wl0.3_ap_isolate
wl0.3_auth_mode_x
wl0.3_bss_enabled
wl0.3_closed
wl0.3_crypto
wl0.3_expire
wl0.3_key
wl0.3_key1
wl0.3_key2
wl0.3_key3
wl0.3_key4
wl0.3_lanaccess
wl0.3_macmode
wl0.3_radio
wl0.3_radius_key
wl0.3_ssid
wl0.3_wep_x
wl0.3_wpa_gtk_rekey
wl0.3_wpa_psk
wl0.3_wps_mode
wl1.1_ap_isolate
wl1.1_auth_mode_x
wl1.1_bss_enabled
wl1.1_closed
wl1.1_crypto
wl1.1_expire
wl1.1_key
wl1.1_key1
wl1.1_key2
wl1.1_key3
wl1.1_key4
wl1.1_lanaccess
wl1.1_macmode
wl1.1_radio
wl1.1_radius_key
wl1.1_ssid
wl1.1_wep_x
wl1.1_wpa_gtk_rekey
wl1.1_wpa_psk
wl1.1_wps_mode
wl1.2_ap_isolate
wl1.2_auth_mode_x
wl1.2_bss_enabled
wl1.2_closed
wl1.2_crypto
wl1.2_expire
wl1.2_key
wl1.2_key1
wl1.2_key2
wl1.2_key3
wl1.2_key4
wl1.2_lanaccess
wl1.2_macmode
wl1.2_radio
wl1.2_radius_key
wl1.2_ssid
wl1.2_wep_x