Are my ADSL stats normal?

Hi there,
Just looking for some insight on the ADSL stats on my line. Recently connected, still in DLM period but have noticed noise, output and attentuation settings have not changed +/- 0.5 dB at any point since connection.
Broadband performance feels variable, have had to reboot my router a couple of times due to browser sessions hanging etc and the broadband service appearing to have stopped working. A reboot tends to sort it.
Here's my stats - can anyone give an insight? I'm slightly worried about the number of errors..
ADSL Line Status
Connection Information
Line state:
Connected
Connection time:
0 days, 22:24:35
Downstream:
16.02 Mbps
Upstream:
1.094 Mbps
ADSL Settings
VPI/VCI:
0/38
Type:
PPPoA
Modulation:
G.992.5 Annex A
Latency type:
Fast
Noise margin (Down/Up):
6.2 dB / 5.9 dB
Line attenuation (Down/Up):
25.7 dB / 14.5 dB
Output power (Down/Up):
20.3 dBm / 12.8 dBm
FEC Events (Down/Up):
0 / 0
CRC Events (Down/Up):
140260 / 4966
Loss of Framing (Local/Remote):
0 / 0
Loss of Signal (Local/Remote):
0 / 0
Loss of Power (Local/Remote):
0 / 0
HEC Events (Down/Up):
177670 / 812
Error Seconds (Local/Remote):
17201 / 942
Solved!
Go to Solution.

yes i would leave your connection to complete the training period during which time your latency may change to interleaved automatically but it is important to try and not manually restart the hub
If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Similar Messages

  • Tween the icon you are over to its normal state

    I have this snippet of code I've been running successfuly on my image buttons grouped into one MC.
    It applies changes to the buttons I am not rolling over, i.e. if I were to roll over a button the rest of the buttons in the group would dim and blur and etc, but not the button I am over.
    All worked fine until I decided to group buttons one more time.
    With my limited knowledge of AS3 I was able to put all the actions to the buttons except into making the button I am over to stay the way it is.
    In my understanding the problem is in the line:
    //  target = tween the icon you are over to its normal state
      TweenMax.to(e.target, .5, {alpha: 1, blurFilter:{blurX:0, blurY:0}, colorMatrixFilter:{colorize:0x000000, amount:0, brightness:1.25, saturation:1}, ease:Sine.easeOut});
    particularly in properly specifiying e.target
    I tried a few variations but nothing seemed to work.
    What would be a proper code to go two levels deep into an MC?
    Below is my full code:
    IMGS_COLLAGE.buttonMode=true;
    IMGS_COLLAGE.useHandCursor = true;
    IMGS_COLLAGE.imgORIGINAL_collage.addEventListener(MouseEvent.MOUSE_OVER, navOver);
    IMGS_COLLAGE.imgORIGINAL_collage.addEventListener(MouseEvent.MOUSE_OUT, navOut);
    function navOver(e:MouseEvent):void
              //loop through all icons
              for (var i in IMGS_COLLAGE.imgORIGINAL_collage)
                        //tween out all icons
                        TweenMax.to(IMGS_COLLAGE.imgORIGINAL_collage[i], .2, {alpha:.85, blurFilter:{blurX:11, blurY:11}, colorMatrixFilter:{colorize:0x000000, amount:0.25, brightness:0.65, saturation:0.7}, ease:Sine.easeOut});
                        //                                target = tween the icon you are over to its normal state
                        TweenMax.to(e.target, .5, {alpha: 1, blurFilter:{blurX:0, blurY:0}, colorMatrixFilter:{colorize:0x000000, amount:0, brightness:1.25, saturation:1}, ease:Sine.easeOut});
    function navOut(e:MouseEvent):void
              for (var i in IMGS_COLLAGE.imgORIGINAL_collage)
                        //tween out all icons to a normal state
                        TweenMax.to(IMGS_COLLAGE.imgORIGINAL_collage[i], .5, {alpha: 1, blurFilter:{blurX:0, blurY:0}, colorMatrixFilter:{colorize:0x000000, amount:0, brightness:1, saturation:1}, ease:Sine.easeOut});

    P.S.
    While further working on the project I realised that sinse there are two img collages with the same navOver and navOut setting I should use one line of code.
    Both of those images collages are located inside the IMGS_COLLAGE so I thought of deleting imgORIGINAL_collage out of IMGS_COLLAGE.imgORIGINAL_collage but it did not work.
    So now I have two identical blocks of code for two image collages. Is there a way to unify them since both of them are located in IMGS_COLLAGE mc?
    Here is how the code looks now:
    // makes a hand cursor appear over a mc acting as a button for all the buttons inside the IMGS_COLLAGE.
    IMGS_COLLAGE.buttonMode=true;
    IMGS_COLLAGE.useHandCursor = true;
    IMGS_COLLAGE.imgORIGINAL_collage.addEventListener(MouseEvent.MOUSE_OVER, navOver_ORIGINAL);
    IMGS_COLLAGE.imgORIGINAL_collage.addEventListener(MouseEvent.MOUSE_OUT, navOut_ORIGINAL);
    //set up a vars object to hold all the properties of the icons in normal state
    //since we use these properties twice it makes sense to define them only once
    var normalVarsIMGS_COLLAGE_ORIGINAL:Object = new Object();
    normalVarsIMGS_COLLAGE_ORIGINAL={colorMatrixFilter:{colorize:0x000000, amount:0, brightness:1, saturation:1}, ease:Sine.easeOut};
    function navOver_ORIGINAL(e:MouseEvent):void
              //loop through all icons
              for (var i in IMGS_COLLAGE.imgORIGINAL_collage)
                        if(IMGS_COLLAGE.imgORIGINAL_collage[i].hitTestPoint(mouseX, mouseY)){
                        //target = tween the icon you are over to its normal state
                        TweenMax.to(IMGS_COLLAGE.imgORIGINAL_collage[i], .5, normalVarsIMGS_COLLAGE_ORIGINAL);
                        }else{
                        TweenMax.to(IMGS_COLLAGE.imgORIGINAL_collage[i], .2, {colorMatrixFilter:{colorize:0x000000, amount:.15, brightness:0.85, saturation:0.45}, ease:Sine.easeOut});
    function navOut_ORIGINAL(e:MouseEvent):void
              for (var i in IMGS_COLLAGE.imgORIGINAL_collage)
                        //tween out all icons to a normal state
                        TweenMax.to(IMGS_COLLAGE.imgORIGINAL_collage[i], .5, normalVarsIMGS_COLLAGE_ORIGINAL);
    IMGS_COLLAGE.imgPNP_collage.addEventListener(MouseEvent.MOUSE_OVER, navOver_PNP);
    IMGS_COLLAGE.imgPNP_collage.addEventListener(MouseEvent.MOUSE_OUT, navOut_PNP);
    //set up a vars object to hold all the properties of the icons in normal state
    //since we use these properties twice it makes sense to define them only once
    var normalVarsIMGS_COLLAGE_PNP:Object = new Object();
    normalVarsIMGS_COLLAGE_PNP={colorMatrixFilter:{colorize:0x000000, amount:0, brightness:1, saturation:1}, ease:Sine.easeOut};
    function navOver_PNP(e:MouseEvent):void
              //loop through all icons
              for (var i in IMGS_COLLAGE.imgPNP_collage)
                        if(IMGS_COLLAGE.imgPNP_collage[i].hitTestPoint(mouseX, mouseY)){
                        //target = tween the icon you are over to its normal state
                        TweenMax.to(IMGS_COLLAGE.imgPNP_collage[i], .5, normalVarsIMGS_COLLAGE_PNP);
                        }else{
                        TweenMax.to(IMGS_COLLAGE.imgPNP_collage[i], .2, {colorMatrixFilter:{colorize:0x000000, amount:.15, brightness:0.85, saturation:0.45}, ease:Sine.easeOut});
    function navOut_PNP(e:MouseEvent):void
              for (var i in IMGS_COLLAGE.imgPNP_collage)
                        //tween out all icons to a normal state
                        TweenMax.to(IMGS_COLLAGE.imgPNP_collage[i], .5, normalVarsIMGS_COLLAGE_PNP);

  • Possible to get ADSL stats on HH5

    Hello,
    Is it possible to get ADSL stats on a HH5 for normal broadband connection (not infinity)? thnx

    like the HH4 the stats are not available on hh5 not like the hh3
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • ADSL stats in the Home Hub 5.

    Hi,
    Are the ADSL line stats still available in the HomeHub 5 (software version 4.7.5.1.83.8.173.1.6 ).  I know they're still available with infinity but I'm not sure if they're still accessible on ADSL.
    Thanks,
    John.
    Solved!
    Go to Solution.

    as far as i am aware the answer is no there have been several posters who have been trying to find them
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Messages are in Scheduled State

    Hi
       some of my messages are in scheduled state. i  verified   SMQ1,SMQ2 . no queues are in block state. also  i  executed  register queues in sxmb-adm still they are  same state. how can i make them as successful state. only by restarting the messages or is there any other way? also tell me why these messages went to scheduled state

    Reddy,
    Can you please check this threads for possible solutions:
    Problem with scheduled message in SXMB_MONI
    SXMB_MONI - Message scheduled on outbound side (no queues)
    Regards,
    ---Satish

  • Business Area wise finacial statements - P&L, Balance Sheet

    Hi,
    My client has a requirement to have business area wise Trail Balance. In OBY6, business area financial statements tick has been done. So it is asking business area in cost objects. Plants are assigned to business areas. But still, I am able to post Balance sheet account to Balance sheet accounts without business area. I thought making business area mandatory for all G/Ls in OBC4. Then I have to write many substitutions  and  I may lose advantage of F.5D which gives business area basing on other P&L line item.
    What needs to be done?
    Can someone help me to suggest what exactly needs to be done to get Business Area wise Trail Balance.
    We have not activated document splitting functionality. Please suggest the way without document splitting and New G/L functionalities.
    Regards,
    Saidarao
    Edited by: saidarao G on Nov 22, 2011 7:47 AM

    Hi,
    You if want business area wise finanancial statements go to the this tranction code F.01
    Regards
    Mastan Reddy N

  • Indexes are in unusable state

    hi
    i am beginner....
    indexes are in unusable state...
    how can i make it actual state

    Maybe you can use
    alter index your_index_name rebuild online;?

  • Scheduled jobs are in released state only

    Dear Experts,
    we shedule jobs in background periodically. But for a particular time, all scheduled jobs are in released state only. Please suggest what might be the issue. Even some SAP std jobs have have not started.

    Hi Raghavendra,
    Have you checked enough BTC work process available in your SAP system.
    Use SM65 transaction,goto =>Additional Tests ;check mark "Determine work process status" and "Determine no of jobs in queue"
    and see the test results for any problems.
    Best Regards,
    Shyam Dontamsetty

  • Messages are in HOLD state

    Hello ALL,
    We have all messages processed sucessfully in Monitor but in "HOLD" state in the Audit log...EO is the QOS...Not sure why the messages are in HOLD state..There are atleast 15 receivers for this interface..ANy ideas guys..
    -Teresa

    Hi Teresa,
    Which SP do you work with?
    note: 813993
    "<b>If a predecessor has the "canceled with errors"
    status, further processing is not possible in systems
    before Support Package 11</b> for the adapter framework
    and Support Package 10 for the adapter framework core patch 02."
    last time we talked you were on SP4 so
    maybe you need OSS to handle this...
    unless you've upgreaded
    BTW
    Are you sure it's not EOIO?
    if it's EO then the predecessors thing doesn't make sense... wierd
    >>>" Can't award points--Forum error"...
    maybe they are changing our Martix...
    Regards,
    michal

  • I live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    i live in the UAE and i dont have the face time app on my iphone 5 and it's not showing in the settings list as well only face time mentioned in the notification center , my friends in the same area are using face time normally any advice?

    Doesn't matter.  That store is likely selling illegit iphones, brought oin from somewhere else.
    The fact remains the UAE government does not allow Facetime on iphones legitimately sold there.

  • SMQ1 queues are in stop state

    Hi All,
    My outbound queues from ECC to CRM system are in Stop state, I checked under qRFC monitor (SMQS) , queue is registered.
    When i go to SMQ1 and click on unlock the queues works but when the next entry gets stuck again.
    Any ideas to fix this.
    Thnx
    Addi

    Dear Addi,
    Please check your RFC settings - and the logical systems defined.
    Secondly, check the Inbound (SMQ2) and Outbound (SMQ1) queues on both systems, that will help you trace the reason of the error. Check Tx. SMW02 to trace BDocs messages if any.
    If middleware was working fine earlier then most probably RFC settings have been altered.
    Regards.

  • Bdocs are in intermediate state I01

    Hi all,
    When I checked SMW02 transaction,some bdocs are in intermediate state I01.
    I tried to reproces, but it's giving shortdump.
    Shortdump is trying to insert table entries, already exist.
    Bdoc type - CND_M_SUP
    someone could help me how to clear these Intermediate bdocs.
    Thanks in advance,
    P.V

    Hi all,
    I did not find anything in the condition log but this is the description of my short dump:
    Error analysis
        Short text of error message:
        Error in mass insert in table CNLCRMPRSCALEDIM.
        Long text of error message:
         Diagnosis
             You tried to insert entries in the database table CNLCRMPRSCALEDIM.
             This operation failed because one or more entries with the
             specified key already exist in the table.
         System Response
         Procedure
             Inform your support organization.
         Procedure for System Administration
        Technical information about the message:
        Message class....... "/SAPCND/DB_ACCESS"
        Number.............. 002
        Variable 1.......... "CNLCRMPRSCALEDIM"
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    Regards
    André

  • Deployments are in Active state on Cluster but in Prepared state on server

    Hi,
    We initially deployed our application (Oracle Identity Manager 11gR2) on standalone managed server and then convert it into cluster using wlst commands.
    readDomain('/app/oracle/Middleware_OAM/user_projects/domains/oim_domain')
    setDistDestType('JRFWSAsyncJmsModule', 'UDD')
    setDistDestType('OIMJMSModule', 'UDD')
    create('oim_cluster','Cluster')
    assign('Server','oim_server1','Cluster','oim_cluster')
    updateDomain()
    The cluster is created fine and we can start the application successfully and access it. However the problem is that all the deployments are in 'Active' state only under Cluster but in prepared state under the server oim_server1 (though application access working on managed server port). Please advise where we are missing and what could be the wrong?
    Thanks

    Hi,
    1. What if you are trying to access the application page, does it come up ?
    2. Use the below wlst command to get the actual state of the deployed application:
    The deploy command returns a WLSTProgress object that you can access to check the status of the command. The WLSTProgress object is captured in a user-defined variable, in this case, progress.
    wls:/mydomain/serverConfig/Servers> progress= deploy(appName='businessApp',path='c:/myapps/business',createplan='true')
    The previous example stores the WLSTProgress object returned in a user-defined variable, in this case, progress. You can then use the progress variable to print the status of the deploy command. For example:
    wls:/mydomain/serverConfig/Servers> progress.printStatus()
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State       : completed
    Deployment Message     : null
    wls:/mydomain/serverConfig/Servers>
    3. Restart all the servers, instances, related DB and check if it helps.
    Thanks,
    Sharmela

  • So far I've been using Flash Player 11.2 which is the only normal playing sound newer versions are stereo sound streamed normal once the second is the center sp

    so far I've been using Flash Player 11.2 which is the only normal playing sound newer versions are stereo sound streamed normal once the second is the center speaker started to play

    Flash Player 11.2 is horribly insecure and no longer supported. Please update to Flash 11.6

  • My daq card PCI6025e' digital ports PA,PB,PC are in high state and cannot be changed even in MAX 2.1 testing panel and continuously output 5 volts even set for output.

    my digital ports PA,PB,PC are in high state and cannot be set low even if it is set for outputs.
    Thanks

    The MAX utility is the closest to the driver level and will eliminate software configuration as a possible issue. Please disconnect anything that you have connected to the DIO lines.
    Use the MAX test panel for your DIO lines, configure them as outputs, and set them to a low state. Use a multimeter (DMM) to observe the line state. If it is still high then you may have a problem with your hardware. If this is the case, I advise calling National Instruments support and investigate a possible RMA (repair).
    Best Regards,
    Justin Britten
    Applications Engineer
    National Instruments

Maybe you are looking for

  • W520 "dismounts​" monitor on DisplayPor​t when power management switches it off

    My setup: W520 Mini Dock Plus Series 3 External 1080p display on DVI External 1440p display on DisplayPort (primary display) The problem I'm experiencing is that the external display on the DisplayPort gets dismounted (I can hear the Windows "hardwar

  • I wander how to establish Webdispatcher on EP with HTTPS

    I wander how to establish Webdispatcher on EP with HTTPS . I can do it for HTTP. I found releated link in SAP Library: http://help.sap.com/saphelp_nw04/helpdata/en/d8/a922d7f45f11d5996e00508b5d5211/frameset.htm but still I do not understand as instal

  • Black border around boxes and oval shapes

    I created some boxes and oval and circles in InDesign and it is placing a black border around the shapes. How can I get correct this? I am using InD CS6. Thanks, Joe

  • Master Details Join Issue

    I have two tables like master child master contains id value charges date 1 10 2 01-jan-10 2 25 4 01-jan-10 3 15 1 02-jan-10 child contains id qty price item 1 1 2 it1 1 2 4 it5 2 1 25 it3 3 1 5 it2 3 1 5 it3 3 1 5 it4 I want result with the join of

  • Connection between 2 webdynpro inputfields

    i'm making a webdynpro with 2 inputfields of solution type and solutionsubtype. this is the thing i want: when i select QM at the inputfield of the solution type then it is only possible to select solution subtypes that are only are available with th