priority of the Internet for each application

priority of the Internet/network for each application as between ie8, firefox and a download manager like utorrent, igetter, orbit downloader

Hi, Thibaut,.

There are some non-Microsoft programs, you can download from the Internet and use them to set the priority for each application.

Note: Using non-Microsoft program is at your own risk.

For more information on the definition of priority network, see the following article:
See How to change the binding order of the network in Windows XP cards

Visit our Microsoft answers feedback Forum and let us know what you think.

Tags: Windows

Similar Questions

  • Mark on Group on the priority of the task for each employee

    Hi all

    We have following the structure of the employees table, the taskallocation & tasks.
    CREATE TABLE EMP
       (     "EMP_ID" NUMBER(10,0) NOT NULL ENABLE, 
              "FNAME"     NVARCHAR2(50) NOT NULL ENABLE, 
              "LNAME"     NVARCHAR2(50) NOT NULL ENABLE 
       );    
       
       
    CREATE TABLE TASKS
       (     "TASK_ID" NUMBER(10,0) NOT NULL ENABLE, 
              "TASK_PRIORITY" NVARCHAR2(10) NOT NULL ENABLE          
       );   
       
    CREATE TABLE TASKSALLOCATION
       (     "TASKALLOCATION_ID" NUMBER(10,0) NOT NULL ENABLE, 
              "EMP_ID" NUMBER(10,0) NOT NULL ENABLE, 
              "TASK_ID" NUMBER(10,0) NOT NULL ENABLE
       );   
       
    The same data will be as follows
    Insert into EMP (EMP_ID,FNAME,LNAME) values (1,'XYZ','DFD');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (2,'DFDS','FD');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (3,'FDSF','GFH');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (6,'GFHGF','GFHS');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (4,'GFD','FDG');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (5,'DSFDS','FDSAF');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (7,'GHGY','EWE');
    Insert into EMP (EMP_ID,FNAME,LNAME) values (8,'FGRFSAD','SADF');
    
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (1,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (2,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (3,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (4,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (5,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (6,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (7,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (8,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (9,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (10,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (11,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (12,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (13,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (14,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (15,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (16,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (17,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (18,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (19,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (20,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (21,'LOW');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (22,'HIGH');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (23,'MEDIUM');
    Insert into TASKS (TASK_ID,TASK_PRIORITY) values (24,'LOW');
    
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (1,1,1);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (2,2,1);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (3,3,2);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (4,3,3);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (5,4,4);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (6,4,5);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (7,4,6);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (8,4,7);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (9,5,6);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (10,6,8);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (11,7,9);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (12,8,8);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (13,8,10);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (14,8,11);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (15,8,12);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (16,6,13);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (17,5,14);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (18,3,12);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (19,3,13);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (20,2,15);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (21,1,16);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (22,2,17);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (23,1,18);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (24,4,19);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (25,6,20);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (26,5,21);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (27,1,22);
    Insert into TASKSALLOCATION (TASKALLOCATION_ID,EMP_ID,TASK_ID) values (28,3,23);
     
    COMMIT;
    And we are looking for a number of tasks based on grouping on its priority by employee. Something like that,

    ResultSet
    with 
        t as 
         (                                        
              select     'XYZ DFD' as EMP_NAME,     3 as HIGH ,     0 as MEDIUM,     1 as LOW FROM dual union all
              select     'DFDS FD'     ,     1     ,     1     ,     1     FROM dual union all
              select     'FDSF GFH'     ,     1     ,     2     ,     2     FROM dual union all
              select     'GFHGF GFHS'     ,     3     ,     1     ,     1     FROM dual union all
              select     'GFD FDG'     ,     0     ,     1     ,     2     FROM dual union all
              select     'DSFDS FDSAF'     ,     1     ,     2     ,     0     FROM dual union all
              select     'GHGY EWE'     ,     0     ,     0     ,     1     FROM dual union all
              select     'FGRFSAD SADF'     ,     1     ,     2     ,     1     FROM dual)
    Note: We use the Oracle 11.2.0.2.0 version

    Hello

    select emp.fname || ' ' || emp.lname EMP_NAME
         , sum(case when tasks.TASK_PRIORITY = 'HIGH' then 1 else 0 end) HIGH
         , sum(case when tasks.TASK_PRIORITY = 'MEDIUM' then 1 else 0 end) MEDIUM
         , sum(case when tasks.TASK_PRIORITY = 'LOW' then 1 else 0 end) LOW
      from emp
      join TASKSALLOCATION
        on emp.EMP_ID = TASKSALLOCATION.EMP_ID
      join TASKS
        on TASKSALLOCATION.TASK_ID = tasks.TASK_ID
     group by emp.fname || ' ' || emp.lname
    
    EMP_NAME                   HIGH     MEDIUM        LOW
    -------------------- ---------- ---------- ----------
    FGRFSAD SADF                  1          2          1
    XYZ DFD                       3          0          1
    GHGY EWE                      0          0          1
    GFHGF GFHS                    1          2          0
    GFD FDG                       3          1          1
    DFDS FD                       1          1          1
    FDSF GFH                      1          2          2
    DSFDS FDSAF                   0          1          2
    

    Concerning

    Martin Preiss

  • Error in Event Viewer: loading libraries of dynamic links customized for each application. The system administrator should review the list of libraries

    My system features, i7 thinkpad w540, 16 GB of ram and a 256 GB ssd. Using MSE as av with AMBM pro

    whenever I start my system, win 7 x 64, I get the following error in the event viewer:

    Custom dynamic link libraries are loaded for each application. The system administrator should review the list of libraries to ensure that they are linked to trusted applications.

    any help with this error?

    Atul

    Description: NVIDIA shim dll initialization

    Product: Shim NVIDIA D3D drivers
    Company: NVIDIA Corporationhttp://systemexplorer.net/file-database/file/nvinit-dll/33069751

    I would not be concerned by this driver.

  • Pinwheel 10-20 seconds on the launch of each application

    Since upgrading my Macbook Pro at El Capitan I had a problem where launch apps cause a 10-20 seconds of reel. Oddly, the application seems to start immediately (i.e. clicking on Safari immediately brings up the Safari window) but when demand becomes inadmissible and non-interactive with reel spinning for an average of 15 seconds.

    I ran repair disk such as suggested by some other items with no improvement. I used the console to collect newspapers while it happened between a launch system and Safari preferences and the only common element between the two seems to be the message, repeated three times.

    2016-03-07 12:00:04.102 PM apsd [81]: could not send activation record to com.apple.ManagedClient.enroll service

    2016-03-07 12:00:13.051 PM System Preferences [492]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:00:13.051 PM System Preferences [492]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:00:13.052 PM System Preferences [492]: failed to SecTaskLoadEntitlements error = 22

    from 12:00:04.102 to 12:00:13.052 (about 9 seconds) System Preferences was not on the screen and available. After the last SecTaskLoadEntitlements has no error to the 12:00:13.052 that the Preferences window

    Similarly at the launch of Safari

    2016-03-07 12:00:31.068 PM Safari [497]: KeychainGetICDPStatus: key :-25300

    2016-03-07 12:00:31.068 PM Safari [497]: KeychainGetICDPStatus: status: power off

    2016-03-07 12:00:31.095 PM Safari [497]: KeychainGetICDPStatus: key :-25300

    2016-03-07 12:00:31.095 PM Safari [497]: KeychainGetICDPStatus: status: power off

    2016-03-07 12:00:31.414 PM EET [275]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:00:34.082 PM configd [56]: inet_set_autoaddr (1, 1) failed, busy resource (16)

    2016-03-07 12:00:47.418 PM Safari [497]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:00:47.418 PM Safari [497]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:00:47.418 PM Safari [497]: failed to SecTaskLoadEntitlements error = 22

    The Safari window appeared almost immediately by clicking on the application icon. However, when the window pops up about 12:00:34 that the wheel seems to do the Safari window says plue, until that last SecTaskLoadEntitlements has no error is recorded in 12:00:47.418 (13 seconds)

    This happens on the launch of EACH application on the Macbook, iTunes, Safari, Mail, preferences system, AppStore... everything...

    Here's an example to launch app store where I paid VERY very attention to this journal entry begins and stop the roulette

    2016-03-07 12:13:37.069 PM App Store [524]: unknown class FRToolbar in the path /System/Library/PrivateFrameworks/StoreUI.framework/Resources/Base.lproj/FRStor eViewController.nib Interface Builder file.

    2016-03-07 12:13:37.880 PM EET [275]: failed to SecTaskLoadEntitlements error = 22

    PINWHEEL begins immediately after the connection of the above error *.

    2016-03-07 12:13:53.181 PM App Store [524]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:13:53.181 PM App Store [524]: failed to SecTaskLoadEntitlements error = 22

    2016-03-07 12:13:53.181 PM App Store [524]: failed to SecTaskLoadEntitlements error = 22

    REEL stops immediately after connecting the three errors above, that all appear at once in the console *.

    I have no idea what happened to SecTaskLoadEntitlements, but clearly it is originally a kind of performance problem because this is the message that surround each reel application console.

    Try these in order to test your system after each see if it is back to normal:

    1. a. reset the PRAM and NVRAM on your Mac.

    b. Macs with Intel processors: reset of the controller (SMC) system management

    2. restart the computer in Safe Mode, and then restart again, normally. If this does not help, then:

    HD recovery start: restart the computer and after the buzzer, press on and press and hold the

    COMMAND and R keys until it appears the Utilities menu screen.

    3 fix the hard disk and permissions: select startup drive in the Utilities menu utility. Fix the hard drive and the permissions as follows.

    When the recovery menu appears, select disk utility, and then press the continue button. After loading disk utility select it

    indented Macintosh HD entry of the list on the left.  Click first aid button in the toolbar. Wait for the operation

    is over, then quit disk utility and back to the main menu.

    4 reinstall OS X: restart from HD recovery Select reinstall OS X from the Utilities menu, then click on the continue button.

    Note : You will need an active Internet connection. I suggest to use Ethernet if possible because it's three times faster than wireless.


  • After installing firefox os native app appears with a generic icon, which is the same for each of them

    I solve problems reinstall B2G ZTE provider, but all the native application like phone, camera msg etc apperars with a generic icon without staining, it is the same for each of them.

    some app have been updated, i.e. the market and in this case a correct icon appears, but others not update appears with a generic icon uncolored, customized with the name of the application text only.

    my phone provider was movistar, the manufacturer was zte and the model is open from zte.

    I need help to install the correct icons without having to completely reinstall the system if it were possible. Otherwise, the help is to know how to reinstall B2G correct icons

    Hi Josefer,

    I'm sorry to hear that you have problems with your Firefox OS. What are the instructions did you follow to Flash your device ZTE open? Did you receive errors in the process?

    I would say the best way to solve this problem would be to reset your device.

    Warning: Resetting your phone will remove all data stored on the device, including applications, data from the calendar, e-mail accounts and settings.

    To reset the device, follow these instructions:

    1. Open the settings application.
    2. Press the button of device information.
    3. Press the button more than information.
    4. Press the Reset button.
    5. Press OK to continue or Cancel to cancel.

    If the problem persists, you may need to reflash your device using the construction and the instructions available on the download page of ZTE:

    In addition, please remember that the best place to find support for questions specific to the device is directly with the OEM, as they provide the device-specific builds.

    We hope that this problem fixed the problem you had. Please report to us if this helped!

    Thank you!

    -Ralph

  • Where are the files in the tutorial for each tutorials?

    Where can I find the files in the tutorial for each video tutorial under each Adobe application? I know that they exist. However, it is confusing to find.

    Thank you.

    Tutorials Adobe Creative cloud for students | Tutorials Adobe Creative Cloud

  • Newbie question: how to display the logo of the company for all applications

    Hi all:

    I am new to APEX and in the thorough step 'Application two days Express Developer's Guide.

    I have Oracle XE with APEX 3.1.2 installed.

    I have a file called test.gif stored on my C:\logo\test.gif logo

    The question is what is the step to display this logo on all pages for each application (I could build applications in the same workspace, and I like the same logo to all pages for each display application).

    I have extensive air manual and this forum and cannot always understand.

    Here is what I tried:

    -Click on an app that I created in Application Builder
    -Click on "shared components".
    -Files-click == > Images and upload my C:\logo directory test.gif
    -Return to page 'Components of the part' == > Logo and select / access to the following values:
    > logo type: image
    > logo: /i/test.gif
    > logo attribute: width = "100" height = "20" alt = "Company Logo".

    Save the changes. When I run my application, the company logo displayed as 'x' icon.

    A I missed something?


    Thank you!

    Kevin

    Kevin,

    You wanted a step by step so that is.

    You must first download your logo to your workspace file. Then you can assign it as a logo, so this step appears on all pages.

    Before you start, I suggest that ensure you that your graphic file name does not include the spaces inside. Replace spaces by dashes, underscore or squish traits it.

    1. application Builder-> shared-> files components-> Images.

    2. click on the create button.

    3. application for leave "No Application associated with" value, provide the specification of file, then click on the download button. When it's done, copy the name of the file (for example MyFile.gif).

    4. go into the Application Builder-> shared-> Application-> definition components

    5 scroll down the page to the section Logo and set the Type of Logo Image.

    6 Logo, enter ' #WORKSPACE_IMAGES # ' follow-up of your files.

    for example #WORKSPACE_IMAGES #MyFile.gif

    7. Optionally, you can set the attributes of the Logo, for example, by specifying the height and width to display your image.

    8. click on apply changes.

    9. run app.

    If you have the right to file specification, you should see your logo in the upper left corner. If you want elsewhere, you have to change the page template, which is way beyond the scope of this forum and the tutorial. :-)

    Good luck

    Stew

    p.s. If it works for you, please give points for correct answer at the top of this topic.

  • If I have the first generation iWatch I'll be able to get the update for new applications and look at faces?  I know that I couldn't display or the waterproof function to the water.

    If I have the first generation iWatch I'll be able to get the update for new applications and look at faces?  I know that I couldn't display or the waterproof function to the water.

    Hello

    The next operating system update, watch OS 3, will be available for all Apple Watch models, including the first generation watches.

    We should go out on 13 September, after which it can be installed by following the steps detailed here:

    More information:

    http://www.Apple.com/Watchos/

  • I do my job to the computer on a MAC computer. I want to create a document using Pages and then convert the document to PDF and send a group email. I want to send the PDF using the pdf for each receiver icon must click the icon to open t

    I do my job to the computer on a MAC book PRO. I want to create a document using Pages and then convert the document to PDF and send a group email. I want to send the PDF using the pdf for each receiver icon must click the icon to open the document. My problem is the document does not show the icon, but rather the document is already open. I spoke with 2 Apple. 'Experts' care and can help me. Can someone tell me what to do?

    It's a question of how the recipients e-mail programs deal with attachments. Many e-mail programs will open all the files they can handle, including files jpg and PDF, by default, and if the recipient has not changed that there is nothing you can do about it. The only solution is to the compress first, then it will be delivered as an attachment, allowing the recipient to decompress and open it.

  • My Inbox to view the sender for each message and now it does not work... How do I get it back to where it was?

    My Inbox to view the sender for each message and now it does not work... How do I get it back to where it was?

    Right-click on the header at the top of the list of messages and select from the list of options.

  • must my computer be connected to the internet for the development of work?

    must my computer be connected to the internet for the development of work?

    Hello

    Yes, because it updates your machine:

    Updates that help protect against performance problems future system by updating the PC with the Windows then in force, the BIOS firmware and software updates for security

    Source: http://www.hp.com/sbso/services/pc-tune-up-pro-datasheet.pdf

    Kind regards.

  • I don't see pictures to the owner/documents without opening each file individually. I just see the same image of a mountain and the Lake for each file.

    I don't see pictures (jpeg images) to the owner/documents without opening each file individually.  I just see the same image of a mountain and the Lake for each file.  When I look in windows XP, the JPEGs under 'my computer' and select 'film' or the 'miniature' I can see the image.  Why can I not see the image using Vista?

    I don't see pictures (jpeg images) to the owner/documents without opening each file individually.  I just see the same image of a mountain and the Lake for each file.  When I look in windows XP, the JPEGs under 'my computer' and select 'film' or the 'miniature' I can see the image.  Why can I not see the image using Vista?

    Start button > in the search box, type options records > press the Enter key > click on view tab > uncheck " always show icons, never thumbnails " > click OK for the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Modify the .pro for my application

    Hello

    I would like to modify the .pro for my application, so the links to different libraries depending on whether it's a simulator, device, release or debug build. How do I do that? I can't find any docs.

    Thank you.

    not my area of expertise, but a quick glance in my .pro file provides:

    key word/Device Simulator to discern, then CONFIG (release) for example to check the build.

    source of my file:

    simulator {
        CONFIG(release, debug|release) {
            DESTDIR = o
        }
        CONFIG(debug, debug|release) {
            DESTDIR = o-g
        }
    }
    
  • My computer is not connected to the internet for more than 2 minutes both

    my computer is not connected to the internet more than 2 minutes at a time

    Hi Ronda,

    Thanks for choosing the Microsoft Community forums.

    I see that the computer is not connected to the internet for more than 2 minutes on Windows 7.

    To help you better, please answer this question.

    Did you do changes on the computer before the show?

    I suggest you follow the provided methods to solve the problem.

    Method 1:


    Please see the knowledge base article:
    How to troubleshoot network connectivity problems in Internet Explorer

    http://support.Microsoft.com/kb/936211/

    Method 2:

    You can make sure to uncheck the following option in the network adapter properties in Device Manager.


    "Allow the computer to turn off this device to save power".
    You can see the steps
    a. Click Start, the Device Manager in the area start search, type and then click on Device Manager in the list programs.
    b. If you are prompted for an administrator password or a confirmation, type your password or click on continue.
    c. in the Device Manager dialog box, expand network adapter, click the network adapter and then click Properties.
    d. in the network adapter properties dialog box, click the power management tab. The allow the computer to turn off this device to save uncheck box appears

    Method 3: Problems of Wi - Fi network and

    http://Windows.Microsoft.com/en-us/Windows/network-connection-problem-help#network-problems=Windows-7&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    If you need help with the Windows operating system, just tell me and we will be happy to help you.

  • WIFI problem, Toshiba Satellite A665 internet connection. Lately when I try to connect to the internet, for the first minute or so it says "no internet connection".

    Hi all

    I had problems with my Toshiba Satellite A665 to internet connection. Lately when I try to connect to the internet, for the first minute or so it says 'No internet connection' (or something similar). Basically, he has the yellow warning triangle. Sometimes I can open the browser and search normally, but other times - and this happens more often it won't let me use my browser. When I have not fix the problem, he said that the DNS server is not responding. The problem is this same error happens all. unique. time. and the other computers in the House connect to the internet just fine. I called TWC and what I get on their part, it is "there no reported outages in your area. Useful, right? Tends to be gnawed by the use of Netflix and Hulu Plus, but this has never kept internet bandwidth to work in the past. What is going on? I'm so tired of having to go all the way down the stairs to reset the router every hour (on a good day) to get the computer to connect to the internet.
    I contacted Toshiba and they say that all the drivers on your computer are up to date and nothing is broken. I have also not downloaded or installed anything on my computer.

    If the reset of the router fixes the problem you should probably watch that as the culprit. Check the software/firmware for the router and see if you can borrow to someone router to test.

    I hope this helps.

Maybe you are looking for