-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEN.dict
2452 lines (2452 loc) · 135 KB
/
EN.dict
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
English
繁體中文
简体中文
Česky
Polski
Pусский
Deutsch
Español
Français
Türkçe
ไทย
Malay
Norsk
Suomi
Dansk
Svensk
Portuguese(Brazil)
日本語
Italiano
Український
Hungarian
Romanian
한국어
Current Version
Latest Version
The Parent-AP might be turned off. Please check again.
Connection failed. Password is not correct. Please click [Rescan] to select another network.
Successfully established the wireless connection.
Relaunch the browser. In the URL address bar, key in "http://router.asus.com/" to access the repeater connection status.
Successfully updated the IP settings. You will be redirected to R7000\'s web GUI.
Select another network
Change the network that R7000 will connect to.
Searching for available networks, please wait...
Failed to detect any networks.
Select the network and click [Connect].
You are trying to connect to an unsecured network. The information transmitted in the network is not encrypted.
You have already connected to this AP.
Authentication method is not supported.
Please wait, the R7000 is connecting to
Key in the name
Auto
Automatic Setting
Bandwidth Limiter
Bandwidth Limiter helps control the maximum download and upload speed of your client devices.
is invalid IP address.
Please enter a value between
to
The type allows your PC to obtain IP address automatically. This connection type is often used by cable modem service providers.
ADSL or other connection that requires username, and password. It is known as PPPoE.
PPTP VPN connection requires username, password, some ISP require fixed IP address.
L2TP VPN connection requires username, password, some ISP require fixed IP address.
Static IP allows your PC to use a fixed IP address provided by your ISP.
Automatic IP
Static IP
If your WAN connection type is PPTP or L2TP, please enter the server name or server ip of the VPN server.
VPN Server
Host Name(optional):
MAC Address(optional)
MAC Clone
VPN Server List
Add to Favorites
The R7000\'s IP address is changed to
Hence, we recommend that you add this URL to your Favorites list for quick access to the R7000's web GUI.
Your browser does not support this function.
Reboot
No
Yes
Connected
Connection
Connection failed
Connection type
Unknown connection type
Connect
Apply
Apply all settings
Cancel
Detect Again
Use factory default
Modify
Next
Previous
Save Permission
Skip Setup Wizard
Sign in
Skip
Unknown Device
For more details, please visit <a style="font-weight: bolder;text-decoration: underline;color:#000000;" href="http://www.asus.com/support/" target="_blank">http://www.asus.com/support/</a>
*A minimum ping packet consumes approximately 128 bytes per interval. Therefore, the ping detector will consume
MBytes per month
Disconnected
You have changed SSID or security setting. This will result in wireless clients disconnecting. Please adjust client's setting for connecting again.
Connection is reestablished.
You may not enter setting page of R7000 because DHCP function is disabled after switching to AP mode.<p>We recommend you to use ASUS Utility / Device Discovery and search IP of AP for enter setting page again.</p>
Dual WAN
Dual WAN setting
Enable User-Defined Target
The IP address is being renewed. If this process takes more than two minutes, please follow these three steps to renew the IP manually: (1) unplug the network cable; (2) wait for about ten seconds; and (3) plug it back again to get a new IP address.
Error message
The latest firmware is available now. To improve the system, ASUS highly recommend that update to the latest version.
The WAN IP is not the external IP. External IP-based services will not work.
Username cannot be blank.
Username cannot be less than two characters.
Username cannot be greater than 20 characters.
This account already exists.\nPlease enter a different name.
Password cannot be blank.
Password should be matched.
Firmware upgrade unsuccessful. This may result from incorrect image or error transmission. Please check the version of firmware and try again.
Firmware is upgrading. Please wait about 3 minutes.
Firmware upgrade is done. Please reboot R7000 manually.
To comply with regulatory amendments, we have modified our certification rule to ensure better firmware quality. This version is not compatible with all previously released ASUS firmware and uncertified third party firmware. Please check our official websites for the certified firmware.
2016 ASUSTeK Computer Inc. All rights reserved.
For a configuration parameter existing both in the old and new firmware, its setting will be kept during the upgrade process.
Firmware Version:
* Daylight savings time is enabled in this time zone.
System Time
* Reminder: The system time has not been synchronized with an NTP server.
Guest Network
Because of security and compatibility concerns, IE8 / IE9 / IE10 are no longer supported.
Things might be bound to broken and perhaps unusable.
We recommend an upgrade to latest version of Internet Explorer.
Please refer to <a style="font-weight: bolder;text-decoration: underline;" href="https://www.microsoft.com/en-us/WindowsForBusiness/End-of-IE-support" target="_blank">Microsoft® announce</a> for more detail.
If your WAN connection requires a static IP address, key in the IP address in this field.
IP Address
You have set WAN IP as R7000's Gateway, and R7000 maybe could not connect to Internet. Please set Gateway with correct value.
This field indicates the IP address of DNS that R7000 contact to.
DNS Server1
This field indicates the IP address of DNS that R7000 contact to.
DNS Server2
Allows this router to get the DNS IP address from the ISP automatically.
Connect to DNS Server automatically
If your WAN connection requires a static IP address, key in the gateway IP address in this field.
Default Gateway
If your WAN connection requires a static IP address, key in the subnet mask in this field.
Subnet Mask
MAC address is not valid.
The router's current firmware is the latest version.
We suggest you to try a mix of letters, numbers, and symbols. Do you want to continue?
The default subnet mask is automatically filled in.
is kept for localhost address, please input value between 1 to 233.
Please input the value between 1 to 233.
Fields cannot be blank.
Please choose a fixed channel for Bridge.
Are you sure you want to logout?
Pre-shared key should be 8 to 63 characters or 64 hex digits. If you leave this field blank, system will assign [00000000] as your passphrase.
Pre-shared key should be 8 to 63 characters or 64 hex digits!
Pre-shared key should be 8 to 63 characters!
You cannot leave this field blank!
Your password is too short.
Invalid character!
is not a valid IP address!
is not a valid port number.
According to South Korea government instruction, password must contain at least 8 characters including 1 alphabet letter, 1 special character, 1 numeric character.
Please enter a value between
to
SSID cannot contain the character \"
\".
This string cannot start with:
This string cannot contain:
Please enter the correct WEP key.
Pre-shared key should be less than 64 characters!
The LAN IP of R7000 is
.If you can't get back setting page later, please renew IP configuration of your computer.
The IP address for your router has been changed. Please use the Device Discovery utility to search for your router's new IP address.
LAN IP Setting
The LAN IP address of R7000. The default value is 192.168.1.1. In IP-based networks, data packets are sent to the network devices' specific IP addresses.
The format for the MAC address is six groups of two hexadecimal digits, separated by colons (:), in transmission order (e.g. 12:34:56:aa:bc:ef)
The LAN subnet mask of R7000. The default value is 255.255.255.0
Invalid IP Address!
Get LAN IP Automatically?
Password cannot be greater than 16 characters.
A secure password must be at least 8 characters and contain a combination of uppercase and lowercase letters, numbers and symbols.
WAN Connection Type
Use the following IP address:
MAC address
Applying Settings
This may interrupt your internet connection.
Complete
Please wait,
Do not power off R7000 while upgrade in progress.
Rebooting the router takes about 60 seconds. Are you sure you want to reboot the router now?
Manual Setting
DSL Log
DSL Setting
Traffic Manager
USB Application
Network Map
Advanced Settings
Wireless
General
WPS
Bridge
Wireless MAC Filter
RADIUS Setting
Professional
LAN
LAN IP
DHCP Server
Route
WAN
Internet Connection
Port Trigger
Virtual Server / Port Forwarding
DMZ
DDNS
USB Application
Network Place (Samba) Share
FTP Share
Miscellaneous setting
USB Modem
Firewall
URL Filter
MAC Filter
Network Services Filter
Keyword Filter
IPv6 Firewall
Administration
Operation Mode
Operation Mode
System
Firmware Upgrade
Restore/Save/Upload Setting
General Log
DHCP leases
Wireless Log
Port Forwarding
Routing Table
Please wait about 3 minutes.
Please wait about 1 minutes.
NAT Passthrough
Network Key
New firmware will not be installed automatically. Go to <b>Administration</b> > <b>Firmware Upgrade</b> to download the latest firmware version and update your wireless router's firmware version.
Your browser does not support JavaScript. Choose a browser that supports JavaScript, or enable it to use the multi-functional router, R7000.
Settings have been updated. Web page will now refresh.
Changes have been made to the IP address or port number. You will now be disconnected from R7000.
To access the settings of R7000, reconnect to the wireless network and use the updated IP address and port number.
In Access Point (AP) mode, R7000 connects to a wireless router through an Ethernet cable to extend the wireless signal coverage to other network clients. In this mode, the firewall, IP sharing, and NAT functions are disabled by default.
You can also go to <a href=\"http://findasus.local\" style=\"font-family:Lucida Console;text-decoration:underline;color:#FC0;\">http://findasus.local</a> to search and enter device configuration page.
Access Point(AP) mode
R7000 supports several operation modes to meet different requirements. Please select the mode that match your situation.
In wireless router/ IP sharing mode, R7000 connects to the Internet via PPPoE, DHCP, PPTP, L2TP, or Static IP and shares the wireless network to LAN clients or devices. In this mode, NAT, firewall, and DHCP server are enabled by default. UPnP and Dynamic DNS are supported for SOHO and home users. Select this mode if you are a first-time user or you are not currently using any wired/wireless routers.
Wireless router mode (Default)
Media Bridge
R7000 can be configured in Media Bridge mode.
The Media Bridge mode provides the fastest 802.11ac Wi-Fi connection for multiple media devices simultaneously.
To set up the Media Bridge mode, you need two R7000: one configured as the Media station and the other as a router.
Configure one R7000 as a router and another R7000 as an 802.11ac Media Bridge to provide a simultaneous 802.11ac Wi-Fi connection for your media devices such as computer, Smart TV, game console, DVR, or media player via Ethernet cable.
Change to Media Bridge mode to provide a simultaneous 802.11ac Wi-Fi connection for your media devices.
In Media Bridge mode, only wireless devices connect to the P-AP. Client devices need to be connected to the Media Bridge with a network cable.
R7000 in Media Bridge mode. IP address has been changed.
Please download the <a href='http://dlcdnet.asus.com/pub/ASUS/LiveUpdate/Release/Wireless/Discovery.zip' target='_blank' style='font-family:Lucida Console;text-decoration:underline;color:#FC0;'>Device Discovery Utility</a> to identify the Media Bridge IP address.
Please check if you have unplugged the network cable from the WAN port.
In Repeater mode, R7000 wirelessly connects to an existing wireless network to extend the wireless coverage. In this mode, the firewall, IP sharing, and NAT functions are disabled.
The LAN IP address of R7000 may have changed.
Close this window and access http://router.asus.com again.
Repeater mode
WISP mode
R7000 wirelessly connects to your main router, AP or public hot spot, and shares internet with your wired / wireless clients. In this mode, NAT, firewall, and DHCP server are enabled by default.
Please make sure you are authorized to access internet if you are connecting to public hot spots service.
This function is disabled.
Parental Controls
New Password
Retype Password
Very Weak
Weak
Good
Strong
Very Strong
PIN code is not correct. Please key in the correct PIN code and reconnect the USB adapter. If you still encounter the same error, turn off the PIN code function, then turn it on and try again.
Password
PPP Username
Account Settings
This field allows you to provide a host name for R7000. It is usually requested by your ISP.
Special Requirement from ISP
MAC (Media Access Control) address is a unique identifier that identifies your computer or device in the network. ISPs monitor the MAC addresses of devices that connect to their services, and would disallow Internet connection for new MAC addresses. To fix this issue, you can do either of the following:<p>* Contact your ISP and request to update the MAC address associated with your ISP subscription.<p>* Clone or change the MAC address of the new device to match the MAC address of the original device.<p>
DNS Server
Connection Status
When your ISP supports a higher MPPE encryption level than your selected level, the higher encryption level will be used for better security.
When your VPN Server supports a higher MPPE encryption level than your selected level, the higher encryption level will be used for better security.
Quick Internet Setup
The new password is the same as system default password. We strongly recommend that you set a more complex password.
If you do not change the default password (admin), your router is vulnerable to security threats and others can easily guess the login password. Are you sure to keep this unsafe password?
Use the default settings (the same settings as the network you want to extend)
Automatic IP connection setup
Starting to clone the computer's MAC address into the router.
Please wait...
Verify the WAN IP address
Obtained the WAN IP address successfully.
Get the new WAN IP address after MAC cloning
Select which ANNEX mode your DSL service uses. Incorrect settings will prevent connection to your DSL service.
If you are not sure which ANNEX mode to use, please contact your ISP for assistance.
ANNEX mode is not selected.
We strongly recommend that you set the wireless security settings first, do you want to continue?
Please plug in the cable to WAN port. System will detect your network setting automatically.
Expert mode, offline settings
PPPoE/DSL connection is detected.
The Setup Wizard detected that your Internet connection type is PPPoE/DSL.
Click "Next" to enter the account name and password that your Internet Service Provider (ISP) has provided.
If the connection type is not PPPoE/DSL, please click "Connection Type".
R7000 is checking the link status, please wait...
R7000 is detecting the connection type, please wait...
R7000 cannot find the connection type. Please click [Manual Setting].
Detecting the Internet connection type timed out. Do you want to try again ?
The modem has been reset manually.
Check the WAN connection type.
Wait a while for verifying...
Use the following DNS server addresses
Successfully connected to the Ethernet WAN network.
Fail to connect to Ethernet WAN network.
Successfully connected to the mobile broadband network.
SIM card is not inserted properly.
Note: If you want to connect to the internet service via \"Mobile Broadband Network\", click <a onclick=\"redirect_page('unplug_sim');\">\"Configure Another WAN\"</a>.
The following process will guide you in completing the mobile broadband Internet settings.
Note: If you want to connect to the internet service via \"Ethernet WAN\", click <a onclick=\"redirect_page('unplug_ewan');\">\"Configure Another WAN\"</a>.
The following process will guide you in completing the Ethernet WAN settings.
Ethernet WAN and mobile broadband Connection Status
Edit the existing WAN settings, please click <a href="" onclick="gotoWANSetting();">here</a>.
Add the new WAN setting, please click <a href="QIS_manual_setting.htm">here</a>.
You have already configured the WAN settings.
Do you want to use the default wireless security settings?
R7000 cannot find the connection type. Your ADSL type may be one of the following modes: MER Static IP, IPoA or Bridge. Please click Manual Setting to configure the WAN settings manually.
Authentication failed.
The account name and password are not correct.
If you set the router offline, click <b>Wireless Setting</b> to skip Internet connection detection and go to next step to setup wireless name and password.
Click <b>Select Internet Type</b> to retype the user name password provided by ISP.
Unable to connect to the Internet. Please double-check your account data with your ISP or contact ASUS Support Hotline for technical inquiries and support.
The account name and password has passed authentication but failed to get an IP address from your ISP. Please contact your ISP for assistance.
Unable to connect to the Internet
Internet setting error!
PPPoE/DSL Connection failed
Failed to connect to the mobile broadband network.
Detection Failure
Router admin account
Router Admin password
R7000 is set up with these Internet and wireless settings.
Completed Network Configuration Summary
Network Name (SSID)
Wireless Security
Connect to the VPN server?
There might be a proxy server in your network. Please check with your Internet Service Provider or network administrator.
There might be an error in the Internet Service Provider Domain Name Server. Please check with your ISP or network administrator or go to the Advanced Setting page to set the public DNS.
Please check with your Internet Service Provider or network administrator.
Please unplug the power cord from the modem. Wait for about two minutes, then plug it back in again. Click <b>Detect connection again</b>.
Got IP
Connected to the ISP DNS
Failed to connected to the ISP DNS
Connected to the public DNS
Failed to connect to the public DNS
Don't input the URL or IP of the VPN server yet!
If your connection type is PPTP/L2TP, Please click [OK] to [Connecting the VPN server].\nIf not, please click [Concel] and check the information then Apply the settings.
VPN Item
VPN type
MAC (Media Access Control) address is a unique identifier that identifies your computer or device in the network. ISPs monitor the MAC addresses of devices that connect to their services, and would disallow Internet connection for new MAC addresses. To fix this issue, you can do either of the following:
Contact your ISP and request to update the MAC address associated with your ISP subscription. Once this is done, you can run the router's setup wizard again.
Clone or change the MAC address of the new device to match the MAC address of the original device. If you just replaced an old router, you will find the old router's MAC address from its label. If you previously connected your computer to the modem, you will need to enter your computer's MAC address or click "MAC Clone" to clone your computer's MAC addresss.
Step 1 of 2. Turn off the Cable/DSL modem
Please unplug the power cord from the modem, which is the ISP-provided device that connects to a cable TV outlet or a phone jack.
If the modem is still on after unplugging its power cord, it may have a battery backup function. Please press the modem's reset button for more than five seconds to reset it.
Click "Next" after unplugging the modem's power cord.
If you are not using a modem, please click "Select Internet Type".
Step 2 of 2. Turn off the Cable/DSL modem
Wait for about two minutes then replug the modem's power cord into a power outlet.
When the modem's LED starts blinking, click "Detect again" to auto-detect the connection type.
Please ensure that the phone cable is connected to the DSL port.
Phone line is not connected.
Change the router password to prevent unauthorized access to your wireless router.
Username and password are case sensitive.
Your router login information is used for accessing your router's administration settings.
The default username and password is :
Login Information Setup
Please enter the required information below.
Obtain the account name and password from your ISP.
If you subscribe to PPPoE, PPTP or L2TP connection type, your ISP would give you a card or document that contains the account name and password on it. The account name and password that your ISP provided are used to connect to the Internet. These are not the same as the username and password used for router administration.
Enable PPTP or L2TP client (optional)
Do you want to use the previous wireless security settings?
We strongly recommend that you set the wireless security settings first.
Rescan
Service
Show password
(Recommended)
Your ISP should give you a card or document with user name and password. *This sample document is an example for purpose of illustration only.
Enter the user name and password for your Internet connection information.These settings were given by your Internet Service Provider (ISP) .
HiNet user's client number is <span style="color:#FC0;">[email protected]</span>
Connection Scenario 1
Connection Scenario 2
Your ISP should give you the information about IP, subnet mask, gateway, and DNS address. If not, please contact your ISP.
Does your Internet connection require user name and password?
My Internet connection type is Automatic IP (Cable modem, Dynamic IP, DHCP) or Static IP
The type allows your R7000 to obtain IP address automatically. This connection type is often used by cable service providers.
My Internet connection type is PPPoE
* If you do not know the Internet connection type, please contact your ISP.
Copy 2.4 GHz to 5 GHz settings
Copy 2.4 GHz to 5 GHz-1 settings
Copy 5 GHz-1 to 5 GHz-2 settings
Check Connection
Internet Setup
Router Setup
Quick Internet Setup
For clients or computers to connect to your wireless network, follow these steps:
1. In the notification area, click the network icon ( <img src="/images/qis/win7_network_icon1.jpg"> ) or ( <img src="/images/qis/win7_network_icon2.jpg"> ).
2. From the list of networks, click the network you want to connect to, then click "Connect".
1. In the notification area, click the network icon, then click "View Available Wireless Networks".
1. Click the Airport status icon( <img src="/images/qis/osx_network_icon.jpg"> ) in the menu bar, and then select the wireless name you want to connect to.
Connecting to your wireless network
Please select the Internet connection type from the options below. If you do not know the Internet connection type, contact your ISP.
Select Internet Type
Ensure that SIM card or Ethernet cable are connected properly, then try again.
To set up the mobile network:
Ensure that the Ethernet cable is properly connected to the modem and to the WAN port of the router.
To set up the Ethernet WAN network:
Ensure that you insert the SIM card into the SIM card slot, then try again.
To set up the mobile network:
Insert the SIM card into the SIM card slot.
You can also connect the network (RJ-45) cable into the WAN port.
Connect the network (RJ-45) cable into the modem and into the WAN port of the router.
On the web interface, click Detect Again.
Please check SIM card and Ethernet WAN cable
Network Cable Status
SIM Card Status
Please enter your username and password.
Enable VPN client
Click "Next" to start the Quick Internet Setup Wizard for your R7000.
To reach up to 600 Mbps / 2.4 GHz, pair the R7000 with a TurboQAM compatible client, such as the PCE-AC68 or another R7000 in Media Bridge / repeater mode.
Welcome to the XWRT Networking Family!
The network name or SSID is a unique name that identifies the wireless network. WiFi devices automatically detect all networks within range.
A security key is the password that is assigned to secure a wireless network from unauthorized access. To access a secured network, the user will be asked to enter the security key.
Assign a unique name or SSID (Service Set Identifier) to help identify your wireless network.
Enter a network key between 8 and 63 characters(letters, numbers or a combination) or 64 hex digits. The default wireless security setting is WPA2-Personal AES. If you do not want to set the network security, leave the security key field blank, but this exposes your network to unauthorized access.
Enter a network key between 8 and 63 characters(letters, numbers or a combination). The default wireless security setting is WPA2-Personal AES.
Account name cannot be blank.
User Name / Password fields cannot be empty.
ISP Account Setting
Quick Start
Detecting your connection type
Redetecting your connection status
Detect again
auto detecting
Start to detect your connection type...
This process might take a few minutes, please wait until finished.
Internet connection setting is finished.
Going to Internet
Simply Wireless Security Setting
Look up and configure the encryption setup.
Advanced Setting page
Manual configuration and fine-tuning.
Please close this window and finish configuring the settings. Open a new window to connect to the Internet.
Finish
Please check you are connecting to R7000 then refresh this page manually.
Enter account or password again
DHCP connection failed.
Invalid account or password, click the link to modify it.
PPPoE connection failed, click the link to try again.
PPTP connection failed, click the link to try again.
L2TP connection failed, click the link to try again.
Static connection failed, click the link to try again.
Please refer to your ISP setting, and input the related information.
Static IP connection failed.
Automatic IP connection failed. You can configure here manually.
ISP Information Setting
Click <a><label for="upload_setting_profile" style="text-decoration:underline;cursor:pointer;font-weight:bold;color:#FC0;" onclick="">Restore setting</label></a> to load saved configuration settings.
Click <a><label for="upload_setting_profile" style="text-decoration:underline;cursor:pointer;font-weight:bold;color:#FC0;" onclick="">Restore setting</label></a> to restore the configuration if you have backed up the configuration settings before resetting the router.
Click <a><label style="text-decoration:underline;cursor:pointer;font-weight:bold;color:#FC0;" onclick="submitForm(0)">Manual Setting</label></a> to manually set up your wireless network if you know your ISP connection type.
Click <a><label style="text-decoration:underline;cursor:pointer;font-weight:bold;color:#FC0;" onclick="submitForm(0)">Manual Setting</label></a> to manually set up advanced router settings or set up R7000 to work in
You are a wireless networking expert and want to skip the internet setup wizard?
Please select the Internet connection type that your ISP provided.
Internet WAN connection type
Please Choose the WAN type
Wireless Setting
Radio
remote
Router Login Name
Note: It takes about 60 seconds.
Security
Select
Select ISP Profile
Please select
Sign in with your router account
Sign in with your NETGEAR router account
Sign in with your LINKSYS router account
Sign in with your HUAWEI router account
Standard Setup
Active
Inactive
Standby
Status
Access Point status
R7000
Active Connections
Auto Logout
Change the time zone
System Log
This is the history log of active connections.
Allow only specified IP address
Specified IP address
Logout
Traffic Monitor
Transfer Mode
Tri-band Smart Connect
dynamically and seamlessly switches devices to different bands based on location, signal strength and wireless protocol, ensuring consistent throughput for each device on your network.
Media Server
User's account cannot be 'root', 'guest' or 'anonymous'! Please enter a valid account.
VPN Details
Enter username and password.
Please ensure that the cable is plugged between R7000 WAN port and the modem.
Please check if you need to change the <a style='color:#FFF' href='/Advanced_OperationMode_Content.asp'>Operation Mode</a>.
Your PPPoE account or password is not accepted, please <a style='color:#FFF' href='/Advanced_WAN_Content.asp'>check</a>.
PPPoE Authentication Failure
Change WAN type
Please check the <a style='color:#FFF' href='/Advanced_WAN_Content.asp'>connection settings</a> is correct.
We suggest you turn on the <a style='color:#FFF' href='/index.asp'>WAN connection button</a>.
Please check USB modem is power on.
Change <a style='color:#FFF' href='/Advanced_Modem_Content.asp'>USB modem setting</a>.
The WAN cnnection is turned off
USB modem is not ready
Click (Next) to get a new IP address. The new IP address is:
Please confirm that related services using the new IP address, such as Port Forwarding or DMZ.
Please confirm Parent AP can connect to Internet.
<a style='color:#FFF' href='/QIS_wizard.htm?flag=manual'>Change the connection setting</a>.
Unable to connect to Parent AP
Reason for failed connection
You failed to access to the web page that you want to view.
The network cable is unplugged.
Your PPPoE or VPN authentification failed.
Connecting to remote server now.
Your ISP's DHCP does not function properly.
We have detected that your WAN Connection Type is PPPoE. But your PPPoE Setting is not complete.
The Internet connection failed. The router's IP address is the same as the gateway's IP address.
You have probably stopped the WAN connection manually.
The router's dynamic or static IP address settings are not correct.
IP conflict detected.
Click here to go to the setup page
You can check and config your setting by yourself.
If a problem still persists, manually change the connection settings.
Turn on the WAN.
We suggest you
Need account and password of administrator.
Please ensure that the cable is properly connected between R7000 WAN port and the modem.
Go to Account Setting page
and check your account and password again.
Go to the Quick Internet Setup page to automatically detect the connection type.
and R7000 will detect your WAN type automatically.
Please contact your ISP(Internet Service Provider) to find out the root cause of DHCP failure.
Please reconfigure the router's IP address and ensure that it is different from the gateway IP address.
Please build the WAN connection manually.
Please check that the IP and DNS settings are correct.
Plese reconfigure the local IP address for your R7000, and ensure that it is different from your WAN's gateway.Ex: 192.168.X.X; X is the number between 2 to 254.
After connecting the router to the modem, click "GO" to launch the Quick Setup Wizard.
To set up the WAN connection offline or change the operation mode to Access Point, click Manual Setting.
In the next step, set up the login name and password for security.
Wireless Router R7000
R7000
Configured
Wireless name
Wireless router
None
Control Channel
Key Index
WEP Key
5 ASCII digits or 10 hex digits
13 ASCII digits or 26 hex digits
WPA Encryption
Connect to APs in list
R7000 will change WEP or TKIP encryption to AES in [n Only] mode to ensure that clients to get the proper connection.
Succeed to build connection.
UTF-8
English
Access Intranet
Allow guest to access intranet.
You can now access your USB storage device and Network place (Samba) enabled devices connected to R7000.
Access time
The time allow guest to access internet.
Only 6 accounts allowed.
Account Type
Go to Dual WAN Setting and activate USB modem.
Adaptive
This category includes Diablo, WOW, Steam game and XBOX, etc. Move this category up for better game experience.
This category includes Youtube, Vimeo, iTunes, Hulu, Netflix and Spotify,etc. Move this category up for better networking experience.
This category includes VoIP, Instant Messaging, Mail service,etc. You can adjust their priorities according to your preference.
This category includes general web service and social network applications like flickr, twitter, facebook, tumblr, google toolbar,etc.
This category includes peer to peer and file transfer related software like uTorrent, BitTorrent, Dropbox, 4Shared and FTP applications,etc. It is recommended to leave file transfer category at a lower priority.
All the activities not included in Game, Streaming Media, Online Chat & Communication, Web Surfing and File Transfer.
File Transferring
Gaming
Web History
Web History shows clients Web Surfing history.
VoIP and Instant Messaging
Others
Adaptive QoS
QoS to configuration
In the QoS Adaptive type, the APPs with higher priority will be get better bandwidth over another when the APPs are competing for limited bandwidth, Drag and drop APPs category to upper level for higher priority
Please select priority mode depending on your networking environment. You can also choice customize mode to prioritize app category.
Video and Audio Streaming
Web Surfing
New account has no read/write access rights.
Add new account
The default access rights for a new folder is read/write.
Add new folder
Follow instructions listed below:
Download a proper version to your local machine.
Specify the path and name of the downloaded file in the New Driver File.
Click [Upload] to upload the file to R7000. Uploading process takes about one minutes.
After receiving a correct driver file, R7000 will automatically start to install the new DSL driver. The system reboots after the upgrading process is finished.
New DSL Driver File
If the DSL driver upgrade fails, you can install the driver again from this web page.
Note:
DSL Driver Version
DSL Link Status
Set up the wireless related information below.
Account Status
Unlock
You need a broadband Internet connection for the best viewing and listening experience. Refer to the recommendations below :
768 Kbps or faster upload bandwidth is recommended for music.
5 Mbps or faster is recommended SD video.
15 Mbps or faster is recommended for 720p video.
30 Mbps or faster is recommended for 1080p HD video streaming.
Internet upload speeds may vary depending on your ISP and other factors. If you are not sure what your Internet speed is, you can contact your ISP, or use an online bandwidth test from a computer connected to the Router.
Cloud List
Access the Cloud Disk from <a id="cloud_url" style="font-weight: bolder;text-decoration: underline;" href="https://router.asus.com" target="_blank">https://router.asus.com</a>.
You can access the Cloud Disk via this URL :
To modify the ddns name, please click <a style="font-weight: bolder;text-decoration: underline;" href="/Advanced_ASUSDDNS_Content.asp?af=DDNSName" target="_blank">here</a>.
Access the Cloud Disk from <a style="font-weight: bolder;text-decoration: underline;" href="https://router.asus.com" target="_blank">https://router.asus.com</a>.
Register for an ASUS DDNS <a style="font-weight: bolder;text-decoration: underline;" href="/Advanced_ASUSDDNS_Content.asp" target="_blank">here</a> to access the Cloud Disk online.
Enables USB-attached storage devices to be accessed, streamed or shared through an Internet-connected PC or device.
To create a Cloud Disk, you need to install a USB storage device into this router, then turn Cloud Disk <b>ON</b>.
Use the router login account to log into the default Cloud Disk.
Enter AiCloud 2.0
For more detail, you can also refer to the <a id="faq1" href="" target="_blank" style="font-weight: bolder;text-decoration:underline;">Port forwarding FAQ</a> and <a id="faq2" href="" target="_blank" style="font-weight: bolder;text-decoration:underline;">DMZ FAQ</a>.
Invalid invitation code!
Duration
Maximum number of failed login attempts
This page displays a log of AiCloud's activities.
ASUS AiCloud 2.0 keeps you connected to your data wherever and whenever you have an Internet connection. It links your home network and online storage service and lets you access your data through the AiCloud mobile app on your iOS or Android mobile device or through a personalized web link in a web browser. Now all your data can go where you go.
IP Address is not valid. You can set the WAN IP address <a href=\"Advanced_WAN_Content.asp\" style=\"text-decoration:underline\">here</a>, or go to <a href=\"https://
\" style=\"text-decoration:underline\">AiCloud</a>.
There is no record.
Enable Password Protection Feature.
Password Protection feature:
The Password Protection feature prevents unauthorized access to AiCloud.
You can set a limited number of account/password login attempts.
For example, a setting of 3 times / 2 mins indicates that the user has three attempts to input the account and password in 2 minutes. Once the specificed number of attempts has been exceeded, the AiCloud account will be locked and administrator access is needed to unlock it.
AiCloud content streaming port
AiCloud 2.0
AiCloud Web access port
Account
Allow anonymous login
Warning: The AiDisk had been set. If you set the AiDisk again, the previous account/password and access permission will be reset. To add more account, Select <a href="../Advanced_AiDisk_ftp.asp" target="_blank" style="text-decoration: underline; font-family:Lucida Console;">here</a> to edit the account profile.
By enabling [ Allow anonymous login ], any user can access your FTP service without authentication!
Username and password is necessary to log in FTP service.
By enabling [ Allow anonymous login ], any user can access your FTP service without authentication! Are you sure you want to enable it?
Allow guest login
For advanced file-sharing configuration. Click <a href="../Advanced_AiDisk_ftp.asp" target="_blank" style="text-decoration: underline; font-family:Lucida Console;">here</a>
NTFS Sparse Files Support
Read
By enabling [ Allow guest login ], any user in local network can access your network place(Samba) without authentication!
Username and password is necessary to log in network place(Samba)
By enabling [ Allow guest login ], any user in local network can access your network place(Samba) without authentication! Are you sure you want to enable it?
By using limitless access rights, any user can access your FTP service without authentication!
R7000 provides you with these three types of access rights to the shared resources:<p> a) limitless access rights, in which anyone can access your USB disk in the FTP server.</p> <p>b) limited access rights, in which access to your USB disk is limited to those you have assigned access rights. For this type, the R7000 creates the \"admin/Family\" accounts. </p> <p>c) admin rights in which the R7000 creates the \"admin\" account for full access rights.</p><p>Note: The permission settings will clear your original set of accounts.</p>
PS. Account management function cannot work on NTFS partition.
Creating the access rights
ASUS DDNS creates a domain name with a dynamic IP address. <p>If you need to configure other DDNS service settings, please refer to <a href='/Advanced_ASUSDDNS_Content.asp' target='_top'>Advanced DDNS</a></p>
Setting up the DDNS services
<a href='../Advanced_AiDisk_samba.asp' target='_top'>Network Neighborhood Share</a>: You can operate the Samba server professionally. <br/><a href='../Advanced_AiDisk_ftp.asp' target='_top'>FTP Share</a>: You can operate the FTP server professionally.
Setting up the shared disk
No selected account.
No selected disk for creating the shared folder.
No selected folder.
No selected partition for creating the shared folder.
Aidisk Wizard worked exceptionally. Please try again later.
After configuring the settings in AiDisk Wizard, refer to the information below to access the disk:
Write
AiDisk enables you to:
Share files in the USB disk through the Internet.
Create your own domain name for the FTP server.
Welcome to AiDisk wizard
AiDisk Wizard
Alert Preference
Please select the client name
AiProtection with Trend Micro uses real-time network monitoring to detect malware, viruses and other intrusions before it reaches your PC or connected devices. Parental Controls let you schedule times that a connected device is able to access the Internet. You can also restrict unwanted websites and apps.
Prevents infected devices from communicating personal information and/or infected status to external parties.
Infected Device Prevention and Blocking
Web & Apps Filters
Adult
Block adult content can prevent child from visiting sexy, violence and illegal related content.
Pornography
Illegal and Violence
Gambling
Internet Telephony
Instant Mssaging
Virtual Community
Blog
Mobile
Content Category
Web & Apps Filters allows you to block access to unwanted websites and apps. To use web & apps Filters:
In the [Clients Name] column, select the client whose network usage you want to control. The client name can be modified in network map client list.
Check the unwanted content categories
Click the plus (+) icon to add rule then click apply.
Instant Message and Communication
Block IM and communication content can prevent child from addicted to social networking usage.
If you want to disable the rule temporarily, uncheck the check box in front of rule.
P2P and File Transfer
Block P2P and File Transfer content can keep your network in a better transmission quality.
File transfer
Peer to Peer
Streaming and Entertainment
Games
Media Streaming
Internet Radio and TV
Block Streaming and Entertainment content can prevent child from spending long time on Internet entertainment.
Network Protection
Network Protection will send you an alert email if a suspicious connection between your client devices and malicious destination has been detected and blocked. Enter in your credentials and email below.
Network Protection with Trend Micro protects against network exploits to secure your network from unwanted access.
Router Security Assessment
Scans your router for any security vulnerabilities and recommends options for increased protection.
Default router login username and password changed
Wireless password strength check
Wireless encryption enabled
UPnP service disabled
Web access from WAN disabled
PING from WAN disabled
DMZ disabled
Port trigger disabled
Port forwarding disabled
Anonymous login to FTP share disabled
Disable guest login for Network Place Share
Malicious Website Blocking enabled
Vulnerability Protection enabled
Please change your login username and password for better router security.
Please make your network password more complex for better security.
Your wireless network is insecure because there is not wireless password. Click the hyper link to set the password.
Disable UPnP service to avoid any program have chance to use UPnP port to alter a your router’s settings.
Disable Web access from WAN to prevent your router from external control.
Disable PING from WAN to avoid cracker can connect to router from external network.
Disable DMZ to avoid all the inbounds packets are redirected to the computer exposing on internet.
Disable Port trigger to prevent your router from cracker access via specific port.
Disable Port forwarding to prevent your router from cracker access via specific port.
Disable Anonymous login to FTP share to avoid unauthorized user have chance to access your data.
Disable guest login for Network Place Share to avoid unauthorized user have chance to access your data.
Enable Malicious site blocking to restricts access to known malicious websites.
Enable Vulnerability Protection to prevent cracker invasion via vulnerability of router or device software.
Enable Infected device prevention and blocking to detects any suspicious connections or activities and blocks them to prevent data stealing.
Restricts access to known malicious websites in Trend Micro’s database for always-up-to-date protection.
Malicious Sites Blocking
AiProtection
Vulnerability Protection
This will enable Vulnerability Protection, Malicious Site Blocking and Infected Device Prevention and Blocking. Security settings will impact your wireless, wired and attached storage network performance.
Resolves common exploits within the router configuration. Protects the system and applications from exploits and vulnerabilities with Trend Micro Virtual Patch.
Failed to set the permission/access rights.
Failed to claim the disk.
Failed to build the swap file.
Failed to format the disk.
Failed to create the account.
Failed to delete the account.
Failed to modify the account.
Failed to create the shared folder.
Failed to delete the shared folder.
Failed to modify the shared folder.
Failed to control the AiDisk application.
Failed to unmount the disk.
There is no input about PROCOTOL!
The input about FOLDER is incorrect!
The input about POOL or FOLDER are incorrect!
There is no input about PERMISSION!
The input about PERMISSION is incorrect!
There is no input about PASSWORD! There is no password entry.
The input about PASSWORD is incorrect!
There is no input about NEW_ACCOUNT or NEW_PASSWORD!
There is no input about NEW_FOLDER!
There is no input about FLAG!
The input about FLAG is incorrect!
The input about PROCOTOL is incorrect!
There is no input about DISK!
There is not the chosen disk in the system!
There is no input about the name of the new partition!
There is a wrong format about the name of the new partition!
There is no input about the size of the new partition!
There is no input about the file system of the new partition!
There is no input about MODE!
The input about MODE is incorrect!
There is no input about ACCOUNT!
The input about ACCOUNT is incorrect!
There is no input about POOL!
The input about POOL is incorrect!
There is no input about FOLDER!
System error: Cannot allocate the memory!
System error: Cannot read out the disk's data!
System error: The disk is busy!
System Error.
There should not be any space in the first and last character.
R7000 detected that you are using IE6. Please Try Google Chrome, IE7 or higher for the best browsing experience.
All
Android phone
Failed to get the IP information.
AP IP address
AP Survey
Apps
APN Configuration
Loading APP list...
Failed to authenticate the WPA key. Please enter the WPA key again.
ASUS EZ printer sharing (Windows OS only)
Your network login name and password are still the default settings. We strongly recommend that you change this to avoid security risks.
A new firmware is now available.
Your Wi-Fi network has not been encrypted yet and is at risk. We recommend that you create a password for your network to avoid security risks.
Your current AiDisk FTP permission allows unauthorized users to log in. We recommend that you disable [ Allow anonymous login ] to avoid security risks.
The FTP was at risk and therefore [ Allow anonymous login ] has been automatically disabled. You can use router login name and password to login FTP. If you want to change permission setting
Your current Network place(samba) permission allows unauthorized users to log in. We recommend that you disable [ Allow guest login ] to avoid security risks.
The Network Place (Samba) was at risk and therefore [ Allow guest login ] has been automatically disabled. You can use router login name and password to log in. If you want to change permission setting
Change now
Update now
Create now
Do not show this message again
Auto-installing...
Automatic
Available space
Average
Enable Apps analysis allows you to click device icon and show all apps traffic by each device for detailed client monitor.
Bandwidth Monitor
Apps analysis
Traffic not detected.
WAN/LAN Bandwidth Monitor
Enable Download Master?
Enable Download Share?
Enable iTunes Server?
Enable UPnP
Black List
Block
Click here to block the client
Blocked client list
Get the bandwidth information from ISP or go to <a href="http://speedtest.net" target="_blank" style="text-decoration:underline;color:#000;">http://speedtest.net</a> to check bandwidth.
Bandwidth Status
Bandwidth Management - User Specify Service
User Specify Rule List
Service Name
Source IP or MAC
Destination Port
Priority
Host Name provided by ISP:
If your WAN connection type is PPTP or L2TP, Please enter the server name or server ip of the VPN server.
This field allows you to provide a host name for R7000. It is usually requested by your ISP.
Set the maximum download bandwidth limit. 0 means no bandwidth limit.
Disable
Disabled
Enabled
Export
GO
Remove
Send
WAN setting
Captcha
Please enter the captcha.
Ensure that the Ethernet/network cable is connected properly
The router is checking the ASUS server for the firmware update.
Clock Format
Cloud Disk
The password length should be at least 8 characters.
Browser
You have a new invitation.
Remote Path
Rule
Download to USB Disk
Synchronisation
Upload to Cloud
Server share folder
Through share without account, accounts kept hidden. Are you sure you want to disable it?
Are you sure you want to disable the disk shared in the Network Neighborhood?
Are you sure you want to disable the disk shared via the FTP server?
Disable Network Neighborhood Share will cause your Download Master can't be used.
Enabling share with account enables multiple computers, with different access rights, to access the file resources. Are you sure you want to enable it?
Are you sure you want to share the disk in the Network Neighborhood?
Are you sure you want to share the disk by via the FTP server?
Retype password
The router cannot connect to ASUS server to check for the firmware update. After reconnecting to the Internet, go back to this page and click Check to check for the latest firmware updates.
Connect your iOS or Android devices to R7000 through WiFi. The AiCloud 2.0 app will automatically guide you through the setup process.
Client List
Connecting...
Connection Time
Connections
Connection status
Create A Free Account
Level 2 CTF is not supported under PPPoE, PPTP, or L2TP. To change to Level 1 CTF, please click Confirm.
Enable HW Accelerator
Add
Agree
Check log
Clear
Close
Delete
Disabled
Disagree
Disconnected
Enabled
Finish
Generate
Help
Local Device
Login
Nonsupported
OK
Save
Auto-reconnection
Refresh
Reset
Restore
Scan
Secure Your Router
Upload
Current
Current Frequency
Current Settings
Custom
Customize
Date
Fri
Mon
Sat
Sun
Thu
Tue
Wed
days
Register
Terms of Use Notice
WAN IP and hostname verification
Check every
I will use the service
This account will be deleted with its access rights in the Network Neighborhood and FTP<p>Are you sure you want to continue?</p>
Delete this account
First time dealy
Before deleting the folder, ensure that it is empty.<br><br>Are you sure you want to delete the folder?
Delete this folder
Searching, please wait...
iTunes Service:
Printer Service:
PC
Router
Access Point
NAS
IP Camera
Other Device
In Repeater mode, the DHCP-assigned IP address changes. Install and use the <a href=\"http://dlcdnet.asus.com/pub/ASUS/LiveUpdate/Release/Wireless/Discovery.zip\" style=\"font-family:Lucida Console;text-decoration:underline;color:#FC0;\">Device Discovery Utility</a> to get the wireless router's new IP address.
In Access Point (AP) mode, the DHCP-assigned IP address changes. Install and use the <a href=\"http://dlcdnet.asus.com/pub/ASUS/LiveUpdate/Release/Wireless/Discovery.zip\" target=\"_blank\" style=\"font-family:Lucida Console;text-decoration:underline;color:#FC0;\">Device Discovery Utility</a> in order to detect the wireless router's IP address.
In Media Bridge mode, the DHCP-assigned IP address changes. Install and use the <a href=\"http://dlcdnet.asus.com/pub/ASUS/LiveUpdate/Release/Wireless/Discovery.zip\" style=\"font-family:Lucida Console;text-decoration:underline;color:#FC0;\">Device Discovery Utility</a> to get the wireless router's new IP address.
Wireless MAC filter allows you to control packets from devices with specified MAC address in your Wireless LAN.
DHCP query frequency
Aggressive Mode
Normal Mode
This page shows the device's related settings such as MAC, IP, and lease time settings.
Share without account
Disable Share
Disable FTP
Disconnect the Internet connection
Unmounted
Health Scanner
Errors have been detected on your hard drive. Remove any damaged files or use a PC to correct system issues.
Daily
Scan Results
Disk scan has been scheduled :
Finishing disk scanning...
Frequency
Information
Click [Rescan] to check if your hard drive is healthy.
Initializing disk scanning…
Monthly
Disk scan process complete. Please check the detailed results below.
Disk Re-Mounting…
Disk scanning...
All disk activity will stop while scanning is in progress. Do you want to run disk scan now?
All disk activity will stop while scanning is in progress.
Disk scan running. Please wait.
Schedule Disk Scan
Disk scan almost complete…
Time
Unmounting disk…
Week
Weekly
I have plugged USB disk,
renew
the system status.
Display routing table
Shared Content Type
Media Server Directory
Enable UPnP Media Server
Media Server Name
Manual Media Server Path
Media Server Path Setting
All Disks Shared
Media Server Status
Download Master is disabled.
Get ASUS Download Master for Windows® now.
PC-free download manager.
Please select the USB storage device that you want to access
Download Master installation successful!
Launch Download Master now
R7000 does not support this format for the first partition. It supports FAT32, MS-DOS, and ext2/3.
Disk quota for the first partition is < 1GB.
Please set up the DNS server on the client device.
Download ASUS AiCloud 2.0 app to phone or pad from :
Download Bandwidth
Download Master is not installed in your R7000.
Download Master is not supported in your R7000.
Download Priority