Troubleshooting echo

1751v Router w/2 2port DID VIC's
I'm attempting to troubleshoot the sporadic voice issues one of my remote offices are having, but I've read so many support docs that I?ve got myself confused. The most common issue reported is echo. The people on the IP side of the legs are hearing the echo, not the outside (analog).
My voice ports are setup as follows:
voice-port 1/0
input gain -3
echo-cancel coverage 48
no vad
no comfort-noise
timing dialout-delay 300
I've been reading through an impedance troubleshooting doc and I'm concerned about the ERL levels that are being reported.
I make a test call via a typical outside analog line to a DID number in that office. then, I issue a test tone sweep on that particular port and here's what I see:
A-1751#test voice port 1/1 inject-tone network sweep 200 0 0
Freq (hz), ERL (dB), TX Power (dBm), RX Power (dBm)
104 -79 -82 -3
304 -79 -82 -3
504 -79 -82 -3
704 -79 -82 -3
904 -79 -82 -3
1104 -79 -82 -3
1304 -79 -82 -3
1504 -79 -82 -3
1704 -79 -82 -3
1904 -79 -82 -3
2104 -79 -82 -3
2304 -79 -82 -3
2504 -79 -82 -3
2704 -79 -82 -3
2904 -79 -82 -3
3104 -79 -82 -3
3304 -79 -82 -3
3404 -79 -82 -3
Those ERL values aren't even close to what the troubleshooting docs recommend. I've tried all 5 impedance settings as well as changing the input gain, output attenuation, and the echo-coverage to try and eliminate the echo problems..
Do those ERL levels (-79) look normal to anyone?? Any advice on what I should do next to get to the bottom of this echo problem?
(Just realized I posted this in the wrong Topic, Sorry!)

I've initiated the test tone from the 7960 and was able to replicate near or exactly the same erl that I have seen in other docs. I had to call from one 7960 to another 7960 via the pstn and once the call is established initiate the test tone from both phones.
Press the Settings button on the IP phone to enter the Settings menu in order to enable the tone
generator.
This enables the Tone softkey for as long as this phone is registered to Cisco CallManager.
1.
Press **##**3 on the Cisco IP Phone 7940 or 7960 keypad while the phone is not on a call. When
you go to Option 5 "STATUS", you should see more debug information (for example, Stack
Statistics, and Debug Display).
Note: From Load #P0030301ESP5, you need to unlock the phone first, then you can press **##**3.
You need to be careful because if you press **#** consecutively, you reset the phone (because of
the **#** sequence).
This enables the Tone softkey for as long as this phone is registered to Cisco CallManager.
2.
Place a call to the source phone with the echo problem.
Once the call is established, press the "i or ?" button twice. This brings up the statistics for the call.
Note: If the **##**3 key sequence works, you should have a Tone softkey available. Press the Tone
softkey and the phone begins to generate a 1004 Hz tone at -15 dB. The only way to stop the tone is
to end the call.

Similar Messages

  • Echo on ata

    I am having a problem with echo on an ata. It is both listener and talker. The distance from the ata to the phone is about 300 yards but we do not have cat 5 going to the building and are using the cable the old PBX used to extend the phone out. Is there any settings I can change in the ata that may help this? Of course from the customers perspective "it worked fine on the old system"

    Try this link for troubleshooting echo problems in voip
    http://www.cisco.com/en/US/tech/tk652/tk701/technologies_white_paper09186a00800d6b68.shtml

  • Shell Scripting Resources && Conditional

    Hiya folks.
    I'm looking for a great shell scripting site. Or a book. The Apple Mac Dev Centre is ... well she ain't workin for me.
    For instance, I'm looking for some leadership on a conditional, which those docs won't show me:
    troubleshooting=false
    *if [$troubleshooting==1]; then*
    * echo $troubleshooting*
    * echo $nameStart*
    * echo $myDate*
    * echo $newFName*
    * echo $mSource*
    * echo $mTarget*
    fi
    How do I trip this conditional?
    Cheers

    How do you set a boolean?
    Everything in a shell variable is a string. Some of those strings may look like numbers, but as far as the variable is concerned they are strings. There are no boolean variables. It is all in how you interpret the strings in your variable.
    I'll have to check up on the syntax for bash.
    You could read, reread, read and read "man bash". But I know it is not easy to actually figure out how to use the stuff the man page tells you, or even what they really mean when they use various terms. A book with examples helps, but there is magic hidden in the man page that sometimes takes ages and heavy use of shell scripting to figure out, and I've found that no one book will clearly explain every trick that can be done with shell scripts.
    I prefer to have spaces in there, but not around parens of any kind. I wish languages would be the same that way. Heh.
    And I like to have spaces around equal signs in assignments, but Bourne based shell scripts have their own rules. That is just the way it is.
    The syntax for the 'if' command is
    if list; then list; [ elif list; then list; ] ... [ else list; ] fi
    where "A list is a sequence of one or more pipelines separated by one of the operators ...". "A pipeline is a sequence of one or more commands separated by the character |".
    In the original Bourne shell (which ran in 64kilobytes of memory for code, data, and stack space) all expressions were handed by an external program 'test'. So your 'if' statement would have originally been
    if test $troubleshooting = 1; then
    fi
    Someone figured out that Unix filenames do not care what characters make up their name, so a hardlink was created between /bin/test and /bin/[
    ls -li /bin/test /bin/[
    57880389 -r-xr-xr-x 2 root wheel 46720 Jun 17 2009 /bin/[
    57880389 -r-xr-xr-x 2 root wheel 46720 Jun 17 2009 /bin/test
    You will notice that 57880389 (the file's inode) is identical for both 'test' and '['.
    So when you wrote
    if [$troubleshooting==1]; then
    the shell first processed the line and performed variable substitution, so the 'if' line converts to
    if [false==1]; then
    now the shell processes the 'list' of pipelines/commands following the 'if' statement. So a command is the first white space separate token, which is "[false==1]", so the shell looked in all the PATH directories looking for a file with the name "[false==1]" and did not find anything.
    However, if you white space separate the command in the 'list' from its arguments, then the shell can figure out what the first command is, invoke that command, and pass its arguments to the command.
    Now shells have more than 64kilobytes of memory to work with, and so the [[ ... ]] syntax was invented as a way to indicate that the expression was to use the shell built-in evaluation code. And I think bash eventually decided that it would do the /bin/[ program code evaluation as a built-in as well.
    But since you can also say
    if myprogram --opt --opt arg arg arg; then
    fi
    the shell must still be able to tell the difference between [ or [[ as expression evaluation operators, and a legal file with the name /home/me/bin/[myprogram, or $HOME/bin/[[myprogram, so it cannot assume that [ or [[ always start an expression evaluation.

  • IPhone 5S voice echo

    I'm getting a echo of my voice when i'm talking.

    Hello Jonnas Paul, 
    Thank you for participating in the Apple Support Communities. 
    If you hear an echo when talking on your iPhone, there are a few troubleshooting steps that can help. 
    First, follow the steps in this article to see if there is an issue with the microphone itself:
    If your voice is too faint or sounds unclear using iPhone, or iPod touch - Apple Support
    Next, if the microphone itself is working normally, try the troubleshooting steps in this article:
    If you can't make or receive calls on your iPhone - Apple Support
    Although it deals with issues making or receiving calls, the steps can help with the behavior you're seeing as well. 
    Sincerely,
    Jeremy

  • Troubleshoot recent overheating + immediate shutdowns (hard/software?)

    Since last Friday, I've been experiencing frequent, instant shutdowns due to overheating. I've had these occur before, but generally when running intensive computations in R. I'd initiate a script at bedtime, and wake up to find my computer off (shut down in the night). I learned to put a small book under it, run a fan next to it, or literally place it on it's side, resting on the non-fan edge and the lid to expose the whole bottom to "breathe." Recently, however, I have incessant, unexpected, immediate shutdowns during "normal use" (terminal, browser with, say, 4-10 non-video-playing tabs open), or even just updating with pacman.
    Unfortunately, use of some proprietary software along with needing some IE-specific sites at work had me in Windows 7 for ~1.5 weeks non-stop. This is really unusual for me, and I prefer to live in Arch as much as possible. Because of this, I didn't get to notice if this would have gradually increased in frequency or started abruptly. The behavior is drastically and noticeably different than anything I've experienced, completely kills the use of Linux for me, and I'd really like to identify if this is something to do with software, or if I'm experiencing a hardware failure of some sort (loose thermal gel?). I did a mess of trials this weekend, with results below. Thanks for any input or suggestions.
    System details
    - HP 8540w workstation
    - Intel i7 Q720 (4 physical cores, 8 virtual)
    - Nvidia Quadro FX 1800M
    - Using nvidia (334.21-4), nvidia-utils (334.21-4), nvidia-libgl (334.21-7)
    - Relevant BIOS options (as far as I can tell):
    --- Multi-core: turns off all physical cores other than the first
    --- Intel HT Technology: hyperthreading support (appears to turn off all virtual/hyperthreaded cores)
    --- Virtualization (unsure if relevant, but affects dmesg output for kvm abilities)
    $ uname -a
    Linux bigBang 3.14.0-5-ARCH #1 SMP PREEMPT Fri Apr 11 21:02:33 CEST 2014 x86_64 GNU/Linux
    $ sudo cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
    ondemand # same for all other cpus, 1-7
    I have acpi installed, but not acpid, laptop tools, cpupower, or others mentioned in the power management or CPU frequency scaling Wiki articles.
    Edit: Oops! I caught that I actually did have cpupower installed, from way back in 2012, and removed it last night. I don't recall ever setting it up, and issuing `locate cpupower` now that it's gone doesn't get any hits, so I'm thinking this means I never created a config file for it (which would have yielded, I think, a file.pacsave upon removal). Sorry for the mixup!
    Assume everything else is "stock" (in other words, no kernel options appended, etc.). This is pretty much a "vanilla" Arch system other than the applications I've installed. Feel free to ask follow up questions if I've missed something relevant.
    System messages
    Here are examples of the errors I'm seeing:
    $ dmesg | grep -i mce
    [ 0.040954] mce: CPU supports 9 MCE banks
    [18912.069281] mce: [Hardware Error]: Machine check events logged
    [19662.531507] mce: [Hardware Error]: Machine check events logged
    [20112.808818] mce: [Hardware Error]: Machine check events logged
    $ dmesg | grep -i temper
    [ 367.990859] CPU6: Core temperature above threshold, cpu clock throttled (total events = 1)
    [ 367.990862] CPU7: Core temperature above threshold, cpu clock throttled (total events = 1)
    [ 367.991919] CPU6: Core temperature/speed normal
    [ 367.991922] CPU7: Core temperature/speed normal
    [ 668.175622] CPU6: Core temperature above threshold, cpu clock throttled (total events = 508)
    [ 668.175623] CPU7: Core temperature above threshold, cpu clock throttled (total events = 508)
    [ 668.176683] CPU6: Core temperature/speed normal
    [ 668.176685] CPU7: Core temperature/speed normal
    Here are my limits, per lm_sensors:
    $ sensors
    coretemp-isa-0000
    Adapter: ISA adapter
    Core 0: +57.0°C (high = +84.0°C, crit = +100.0°C)
    Core 1: +57.0°C (high = +84.0°C, crit = +100.0°C)
    Core 2: +57.0°C (high = +84.0°C, crit = +100.0°C)
    Core 3: +57.0°C (high = +84.0°C, crit = +100.0°C)
    I installed the mcelog package, which shows messages like this:
    Hardware event. This is not a software error.
    Apr 14 21:36:50 bigBang mcelog[10019]: MCE 0
    Apr 14 21:36:50 bigBang mcelog[10019]: CPU 5 THERMAL EVENT TSC 1b184fe88d88
    Apr 14 21:36:50 bigBang mcelog[10019]: TIME 1397511379 Mon Apr 14 16:36:19 2014
    Apr 14 21:36:50 bigBang mcelog[10019]: Processor 5 heated above trip temperature. Throttling enabled.
    Apr 14 21:36:50 bigBang mcelog[10019]: Please check your system cooling. Performance will be impacted
    Apr 14 21:36:50 bigBang mcelog[10019]: STATUS 880003c3 MCGSTATUS 0
    Apr 14 21:36:50 bigBang mcelog[10019]: MCGCAP 1c09 APICID 5 SOCKETID 0
    Apr 14 21:36:50 bigBang mcelog[10019]: CPUID Vendor Intel Family 6 Model 30
    Apr 14 21:36:50 bigBang mcelog[10019]: Hardware event. This is not a software error.
    Apr 14 21:36:50 bigBang mcelog[10019]: MCE 1
    Apr 14 21:36:50 bigBang mcelog[10019]: CPU 4 THERMAL EVENT TSC 1b184fe8a5da
    Apr 14 21:36:50 bigBang mcelog[10019]: TIME 1397511379 Mon Apr 14 16:36:19 2014
    Apr 14 21:36:50 bigBang mcelog[10019]: Processor 4 heated above trip temperature. Throttling enabled.
    Apr 14 21:36:50 bigBang mcelog[10019]: Please check your system cooling. Performance will be impacted
    Apr 14 21:36:50 bigBang mcelog[10019]: STATUS 880003c3 MCGSTATUS 0
    Apr 14 21:36:50 bigBang mcelog[10019]: MCGCAP 1c09 APICID 4 SOCKETID 0
    Apr 14 21:36:50 bigBang mcelog[10019]: CPUID Vendor Intel Family 6 Model 30
    Apr 14 21:36:50 bigBang mcelog[10019]: Hardware event. This is not a software error.
    Method
    In updating my AUR-built packages, I got repeated shutdowns when trying to build pandoc-static, a pretty compiling-heavy package. I googled around quite a bit about thermal events, with nothing conclusively sticking out as the solution. Honestly, it reduced to trying pcie_aspm=0 or pcie_aspm=force -- that's really about all I could find! I thought I would try various things and log the temperature and frequency while trying to build pandoc-static. Here was my final summary of trials conducted:
    Key:
    - bios virt: "Virtualization Technology" turned on in BIOS?
    - bios multi: "Multi-Core" turned on in BIOS?
    - intel ht: "Intel HT Technology" turned on in BIOS?
    - X: started X with `startx` or run from TTY1?
    - cores: which CPUs were active (as per the scheme in /sys/devices/system/cpu/cpu*)?
    - success: did pandoc-static build successfully (1), or did the machine hard kill itself (0)?
    | log id | kernel | pcie_aspm | bios virt | bios multi | intel ht | X? | cores | success? | note |
    |--------+----------+-----------------+-----------+------------+----------+----+---------------+----------+-----------------------|
    | 4 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | [0-5] | 1 | |
    | 5 | 3.14.0-5 | pcie_aspm=0 | 1 | 1 | 1 | 1 | all | 0 | |
    | 6 | 3.14.0-5 | pcie_aspm=force | 1 | 1 | 1 | 1 | all | 0 | |
    | 7 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | all | 1 | |
    | 8 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | 0, 2, 4, 6 | 0 | |
    | 9 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | 0, 1, 3, 5, 7 | 0 | can't turn off core 0 |
    | 10 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | [0-5] | 1 | replicate (4) |
    | 11 | 3.10.36 | default | 1 | 1 | 1 | 1 | all | 0 | |
    | 12 | 3.14.0-5 | default | 1 | 1 | 1 | 0 | all | 0 | |
    | 13 | 3.14.0-5 | default | 0 | 1 | 1 | 1 | all | 0 | |
    | 14 | 3.14.0-5 | default | 0 | 0 | 1 | 1 | 0-1 | 1 | |
    | 15 | 3.14.0-5 | default | 0 | 1 | 0 | 1 | 0-3 | 0 | |
    | 16 | 3.10.36 | default | 1 | 1 | 1 | 0 | all | 0 | |
    | 17 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | all | 0 | |
    | 18 | 3.14.0-5 | default | 1 | 1 | 1 | 1 | [0-5] | 1 | replicate (4) |
    For instances where only certain cores were enabled, the following method was used:
    # echo 0 > /sys/devices/system/cpu/cpu6/online
    The effect was verified in the output of dmesg for each core:
    [ 2024.174235] kvm: disabling virtualization on CPU6
    [ 2030.187053] kvm: disabling virtualization on CPU7
    I tried a couple without X to rule out an Nvidia issue, as I also have a recent issue of closing my lid not suspending anymore. This is apparently an Nvidia issue, so I thought I'd at least try to rule it out. I threw in the LTS kernel just to see if I noticed any differences (I didn't).
    In each case, I used the following procedure:
    - Fresh boot
    - Open one instance of urxvt with three tabs (or three TTYs if running one of the two non-X trials)
    - run a cpu-logging script as root in one tab, a dmesg logging script from a regular user tab, and `yaourt pandoc-static` from a third tab
    - if the machine hard killed, move on. If not, stop the logger, reboot, and start over (applying any BIOS changes when necessary)
    All trials except 16, 17, and 18 were run at my house in the dining room, with the laptop resting on a small book (not obscuring the fan ports underneath). The last three were run today at work, and I put a similarly sized book under the laptop to try and replicate conditions reasonably well.
    I wrote a kludgy script (I'm no bash guy...) to collect the data in csv format. It's called by another script (not shown) that runs a continuous while loop every 10 seconds.
    #!/bin/sh
    temp0=`sensors | grep "Core 0" | awk '{print $3}' | sed s/"+"// | sed s/"°C"//`
    temp1=`sensors | grep "Core 1" | awk '{print $3}' | sed s/"+"// | sed s/"°C"//`
    temp2=`sensors | grep "Core 2" | awk '{print $3}' | sed s/"+"// | sed s/"°C"//`
    temp3=`sensors | grep "Core 3" | awk '{print $3}' | sed s/"+"// | sed s/"°C"//`
    for i in 0 1 2 3 4 5 6 7
    do
    eval cpu$i=`cat /sys/devices/system/cpu/cpu$i/cpufreq/cpuinfo_cur_freq`
    done
    time=`date +%H:%M:%S`
    top=`ps aux | awk '{print $11, $3}' | sort -k2rn | head -n 3`
    top=`echo $top | sed s/" "/", "/g`
    echo "$time, $temp0, $temp1, $temp2, $temp3, $cpu0, $cpu1, $cpu2, $cpu3, $cpu4, $cpu5, $cpu6, $cpu7, $top" >> /home/jwhendy/temp-freq.log
    I also output the results of `dmesg | grep -i mce` and `dmesg | grep -i temper` to two separate files every 10 seconds.
    Results
    The result of most interest came when I noticed that it was always cpu6 and cpu7 that showed up in dmesg logs. I found the trick above about disabling specific cores, and decided to try it... the build succeeded! I replicated this effect three different times, which I find significant given that almost nothing else succeeded.
    I used R and the ggplot2 package to plot the results, and here are two replicates of "default" Arch 3.14.0 (no changes) vs. the three runs in which I've disabled cores 6-7:
    Note the absence of the rapid spikes > 90C, which are entirely the blue lines in the left two plots. That color is for the "Core 3" temperature reported by lm_sensors (fourth core), which I take it is responsible for cpu6 and cpu7. Subjectively, I noticed that the laptop ran with much lower fan speeds, they kicked in later in the build, and simply ran less with cpu6/7 off. Frequencies appear to jump around with both, showing a pretty even spread of them cycling. The plots don't make it very clear, but the first default run succeeded, while the second one hard shutdown. Again, all three with cpu6/7 off succeeded.
    Discussion
    Case closed? Is this definitely a hardware issue? I'm still not sure, and that's where I'd like some assistance. Having replicated three successes with cpu6 and cpu7 off, I felt pretty confident. But from my current boot (with cpu6/7 off), I checked dmesg after running rsync for a couple hours catching up on backups!
    [18661.079071] CPU4: Core temperature above threshold, cpu clock throttled (total events = 1)
    [18661.079072] CPU5: Core temperature above threshold, cpu clock throttled (total events = 1)
    [18661.080133] CPU4: Core temperature/speed normal
    [18661.080135] CPU5: Core temperature/speed normal
    [19598.570458] CPU5: Core temperature above threshold, cpu clock throttled (total events = 182)
    [19598.570459] CPU4: Core temperature above threshold, cpu clock throttled (total events = 182)
    [19598.571517] CPU4: Core temperature/speed normal
    [19598.571520] CPU5: Core temperature/speed normal
    [20015.016963] CPU4: Core temperature above threshold, cpu clock throttled (total events = 221)
    [20015.016965] CPU5: Core temperature above threshold, cpu clock throttled (total events = 221)
    [20015.019037] CPU4: Core temperature/speed normal
    [20015.019040] CPU5: Core temperature/speed normal
    Also, note that run #15 above (disabling hyperthreading in BIOS) turns off cpu4-7, however the dmesg temp logs show that cpu3 was reporting temperature overages and that trial resulted in a hard shutdown. I'm not confident in how the system numbers the cpus (cpu0 and cpu1 are the hyperthreads for the first physical core? Is this always the case?). If numbering is consistent and this means that cpu6 and cpu7 are both hyperthreads of two different cores, this is also perplexing, since runs #8 and #9 turned off odd and even (respectively) cores yet saw no improvement. Both reported one of the suspect cpus (6 for even run, 7 for the odd), and both hard killed, #8 before it could even log any high spikes.
    - Here's a plot of those two runs
    There's also the issue that this never happens on Windows, or at least the forced shutdowns don't occur. Perhaps there are warnings or logs somewhere showing the same issue, but it's controlling the issue somehow. I'd love suggestions to check; if there aren't any errors reported, that shifts the evidence back to a potential software issue.
    Lastly, mcelog says flat out "This is not a software error." Now, I hear that... but I don't understand why changing which hyperthreads are online should change which cores overheat (always the highest numbered one). Or, say, could disabling those cores just disable the associated temperature sensor and it's still just as hot in that area, but it's not being measured/reported?
    For now, turning off cpu6 and cpu7 at least gives me a system that doesn't die on me with every action, so Arch remains usable. I've read a bunch of posts on this that frankly aren't much help. They range in content from "One cpu is ~10C higher than others" (to which people say, "Don't worry about it") to advice to simply go in an manually change the cpu temperature threshold values (seems like a horrible idea to me), to aspm fiddling (which seems like it was supposedly fixed in Linux 3.0+ if not before), and changing governors (I'm on ondemand, not performance, which seems reasonable).
    I typed a lot above, and that's because I would like the best chance I have to know what this is related to. Alright, 'nuff of the problem. Onto the solution. Many thanks for reading, and any assistance/suggestions you can provide.
    Last edited by jwhendy (2014-04-15 16:08:56)

    @ewaller: thanks for the feedback! Yeah, this was one of my more obsessive ones for sure. I admit that data collection and analysis is both a part of my job, and a hobby
    Re. Windows: subjectively, I think Windows runs with the fan much less (but always has, not a recent thing). It's also much slower and far less responsive (issue something like alt+tab to change windows and wait 1-3 full seconds for it to catch up). I could run something intensive in Win7 and check the logs to see if anything similar shows up (could Win7 just be controlling it somehow?). What surprises me is that Arch is catching that the cpus are over critical and throttling them, but they seem to spike so fast from ~80C to 100C that it can't do anything but hard kill.
    Re. hardware: thanks for your take. I plan to take this apart and brush/blow any dust out, so I'll take a look while I'm in there for anything obviously loose or weird.
    Re. what's changed: I've wondered that myself and am just drawing a blank. I tried to check for over-temp reports in journalctl, but unfortunately, have SystemMaxUse=250M in /etc/systemd/journald.conf. It appears that all of my experiments this weekend purged older entries, so journalctl starts at 2014-04-12 -- bummer. Still, I haven't changed anything major that I'm aware of. Just booted up, started doing normal stuff (updating packages, chromium, etc.), and I noticed the fan ramp up like crazy. Then that horrid "peeew" sound when the computer kills itself. Thought it was a fluke, but happened again and again.
    Re. pacman logs: here's my pacman log for what I think is a relevant period. Prior to 2014-04-09, the previous entry was 2014-03-31 (that period was the living-in-Windows time I mentioned). I omitted some more recent entries since the problem was already present as of Apr 09-10, and a majority of more recent entries are related to trying to get nouveau to work with acceleration (lots of installing/un-installing nvidia/nouveau to troubleshoot that issue -- in progress!).
    [2014-04-09 17:48] [PACMAN] Running 'pacman -Syu'
    [2014-04-09 17:48] [PACMAN] synchronizing package lists
    [2014-04-09 17:48] [PACMAN] starting full system upgrade
    [2014-04-09 17:54] [PACMAN] upgraded apr-util (1.5.3-3 -> 1.5.3-4)
    [2014-04-09 17:54] [PACMAN] upgraded readline (6.3-3 -> 6.3.003-2)
    [2014-04-09 17:54] [PACMAN] upgraded bash (4.3-3 -> 4.3.008-2)
    [2014-04-09 17:54] [PACMAN] upgraded boost-libs (1.55.0-4 -> 1.55.0-5)
    [2014-04-09 17:54] [PACMAN] upgraded openssl (1.0.1.f-2 -> 1.0.1.g-1)
    [2014-04-09 17:54] [PACMAN] upgraded ca-certificates (20140223-2 -> 20140325-1)
    [2014-04-09 17:54] [PACMAN] upgraded cpupower (3.13-2 -> 3.14-1)
    [2014-04-09 17:54] [PACMAN] upgraded cups-filters (1.0.50-1 -> 1.0.52-1)
    [2014-04-09 17:54] [PACMAN] installed libavc1394 (0.5.4-2)
    [2014-04-09 17:54] [PACMAN] installed libiec61883 (1.2.0-4)
    [2014-04-09 17:54] [PACMAN] installed gstreamer0.10-good-plugins (0.10.31-5)
    [2014-04-09 17:54] [PACMAN] upgraded farstream-0.1 (0.1.2-3 -> 0.1.2-4)
    [2014-04-09 17:54] [PACMAN] upgraded fftw (3.3.3-2 -> 3.3.4-1)
    [2014-04-09 17:54] [PACMAN] upgraded sqlite (3.8.4.2-1 -> 3.8.4.3-1)
    [2014-04-09 17:54] [PACMAN] upgraded nss (3.15.5-2 -> 3.16-1)
    [2014-04-09 17:54] [PACMAN] upgraded flashplugin (11.2.202.346-1 -> 11.2.202.350-1)
    [2014-04-09 17:54] [PACMAN] upgraded ghostscript (9.10-3 -> 9.14-1)
    [2014-04-09 17:54] [PACMAN] upgraded gnutls (3.2.12.1-1 -> 3.2.13-1)
    [2014-04-09 17:54] [PACMAN] upgraded groff (1.22.2-5 -> 1.22.2-6)
    [2014-04-09 17:54] [PACMAN] upgraded hplip (3.14.3-2 -> 3.14.4-1)
    [2014-04-09 17:55] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-04-09 17:55] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Starting build: 3.13.8-1-ARCH
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Starting build: 3.13.8-1-ARCH
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-04-09 17:55] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-04-09 17:55] [PACMAN] upgraded linux (3.13.7-1 -> 3.13.8-1)
    [2014-04-09 17:55] [PACMAN] upgraded linux-headers (3.13.7-1 -> 3.13.8-1)
    [2014-04-09 17:55] [PACMAN] upgraded man-pages (3.63-1 -> 3.64-1)
    [2014-04-09 17:55] [ALPM] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2014-04-09 17:55] [PACMAN] upgraded pacman-mirrorlist (20140107-1 -> 20140405-1)
    [2014-04-09 17:55] [PACMAN] upgraded python2-numpy (1.8.0-3 -> 1.8.1-1)
    [2014-04-09 17:55] [PACMAN] upgraded r (3.0.2-2 -> 3.0.3-1)
    [2014-04-09 17:55] [PACMAN] upgraded xorg-xauth (1.0.8-1 -> 1.0.9-1)
    [2014-04-09 17:55] [PACMAN] upgraded yajl (2.0.4-2 -> 2.1.0-1)
    [2014-04-09 18:03] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-04-09 18:03] [PACMAN] synchronizing package lists
    [2014-04-10 13:45] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-04-10 13:45] [PACMAN] synchronizing package lists
    [2014-04-10 13:45] [PACMAN] Running 'pacman -Syu'
    [2014-04-10 13:45] [PACMAN] synchronizing package lists
    [2014-04-10 13:45] [PACMAN] starting full system upgrade
    [2014-04-10 13:46] [PACMAN] upgraded kmod (16-1 -> 17-1)
    [2014-04-10 13:46] [PACMAN] upgraded libsystemd (212-1 -> 212-2)
    [2014-04-10 13:46] [PACMAN] upgraded coreutils (8.22-3 -> 8.22-4)
    [2014-04-10 13:46] [PACMAN] upgraded libutil-linux (2.24.1-4 -> 2.24.1-6)
    [2014-04-10 13:46] [PACMAN] upgraded util-linux (2.24.1-4 -> 2.24.1-6)
    [2014-04-10 13:46] [PACMAN] upgraded systemd (212-1 -> 212-2)
    [2014-04-10 13:46] [PACMAN] upgraded chromium (33.0.1750.152-1 -> 34.0.1847.116-1)
    [2014-04-10 13:46] [PACMAN] upgraded x265 (0.8-2 -> 0.9-1)
    [2014-04-10 13:46] [PACMAN] upgraded ffmpeg (1:2.2-2 -> 1:2.2-3)
    [2014-04-10 13:47] [PACMAN] upgraded git (1.9.1-1 -> 1.9.2-1)
    [2014-04-10 13:47] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-04-10 13:47] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Starting build: 3.14.0-4-ARCH
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Starting build: 3.14.0-4-ARCH
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-04-10 13:47] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-04-10 13:48] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-04-10 13:48] [PACMAN] upgraded linux (3.13.8-1 -> 3.14-4)
    [2014-04-10 13:48] [PACMAN] upgraded linux-headers (3.13.8-1 -> 3.14-4)
    [2014-04-10 13:48] [PACMAN] upgraded lirc-utils (1:0.9.0-70 -> 1:0.9.0-71)
    [2014-04-10 13:48] [PACMAN] upgraded nvidia (334.21-2 -> 334.21-4)
    [2014-04-10 13:48] [PACMAN] upgraded systemd-sysvcompat (212-1 -> 212-2)
    [2014-04-10 13:51] [PACMAN] Running 'pacman -Syu'
    [2014-04-10 13:51] [PACMAN] synchronizing package lists
    [2014-04-10 13:51] [PACMAN] starting full system upgrade
    [2014-04-10 13:51] [PACMAN] Running 'pacman -Sc'
    [2014-04-10 14:16] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-04-10 14:16] [PACMAN] synchronizing package lists
    [2014-04-10 14:21] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-jwhendy/PKGDEST.K0M/chromium-libpdf-1:34.0.1847.116-1-x86_64.pkg.tar.xz'
    [2014-04-10 14:21] [PACMAN] upgraded chromium-libpdf (1:33.0.1750.149-1 -> 1:34.0.1847.116-1)
    [2014-04-10 14:26] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-jwhendy/PKGDEST.R9f/dropbox-2.6.25-1-x86_64.pkg.tar.xz'
    [2014-04-10 14:26] [PACMAN] upgraded dropbox (2.6.13-1 -> 2.6.25-1)
    [2014-04-10 15:41] [PACMAN] Running 'pacman -Syu'
    [2014-04-10 15:41] [PACMAN] synchronizing package lists
    [2014-04-10 15:41] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-04-10 15:41] [PACMAN] synchronizing package lists
    [2014-04-10 15:43] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-04-10 15:43] [PACMAN] starting full system upgrade
    [2014-04-10 15:43] [PACMAN] upgraded libjpeg-turbo (1.3.0-4 -> 1.3.1-1)
    [2014-04-10 15:43] [PACMAN] upgraded mpd (0.18.9-1 -> 0.18.10-1)
    [2014-04-10 15:43] [PACMAN] upgraded python2-urwid (1.2.0-2 -> 1.2.1-1)
    [2014-04-10 15:43] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/itstool'
    [2014-04-10 15:44] [PACMAN] installed itstool (2.0.2-1)
    [2014-04-10 15:53] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-jwhendy/PKGDEST.Ikd/evince-gtk-3.12.0-1-x86_64.pkg.tar.xz'
    [2014-04-10 15:53] [PACMAN] upgraded evince-gtk (3.10.3-1 -> 3.12.0-1)
    [2014-04-10 16:08] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-jwhendy/PKGDEST.7Bs/jdk-8u0-1-x86_64.pkg.tar.xz'
    [2014-04-10 16:11] [PACMAN] Running 'pacman -S lm_sensors'
    [2014-04-10 16:12] [ALPM-SCRIPTLET] ==> Updating desktop MIME database...
    [2014-04-10 16:12] [ALPM-SCRIPTLET] ==> Updating MIME database...
    [2014-04-10 16:12] [ALPM-SCRIPTLET] ==> Updating icon cache...
    [2014-04-10 16:12] [PACMAN] upgraded jdk (7.51-1 -> 8u0-1)
    [2014-04-10 16:12] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/cabal-install extra/ghc community/alex community/happy'
    [2014-04-10 16:13] [PACMAN] installed cabal-install (1.18.0.2-1)
    [2014-04-10 16:13] [PACMAN] installed ghc (7.6.3-1)
    [2014-04-10 16:13] [PACMAN] installed alex (3.1.3-1)
    [2014-04-10 16:13] [PACMAN] installed happy (1.19.3-1)
    [2014-04-10 16:14] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-jwhendy/PKGDEST.DcA/zukitwo-themes-20140329-1-any.pkg.tar.xz'
    [2014-04-10 16:14] [PACMAN] upgraded zukitwo-themes (20131210-1 -> 20140329-1)
    [2014-04-10 16:14] [PACMAN] Running 'pacman -Syu'
    [2014-04-10 16:14] [PACMAN] synchronizing package lists
    [2014-04-10 16:15] [PACMAN] starting full system upgrade
    [2014-04-10 16:16] [PACMAN] Running 'pacman -Rsc itstool happy ghc alex cabal-install'
    [2014-04-10 16:16] [PACMAN] removed cabal-install (1.18.0.2-1)
    [2014-04-10 16:16] [PACMAN] removed alex (3.1.3-1)
    [2014-04-10 16:16] [PACMAN] removed ghc (7.6.3-1)
    [2014-04-10 16:16] [PACMAN] removed happy (1.19.3-1)
    [2014-04-10 16:16] [PACMAN] removed itstool (2.0.2-1)
    [2014-04-10 17:40] [PACMAN] Running 'pacman -Rsc gnome-themes-standard unixobdc'
    [2014-04-10 17:40] [PACMAN] Running 'pacman -Rsc gnome-themes-standard unixodbc'
    [2014-04-10 17:40] [PACMAN] removed unixodbc (2.3.2-1)
    [2014-04-10 17:40] [PACMAN] removed gnome-themes-standard (3.10.0-1)
    [2014-04-10 17:40] [PACMAN] removed cantarell-fonts (0.0.15-1)
    [2014-04-10 17:40] [PACMAN] Running 'pacman -Sc'
    [2014-04-11 12:51] [PACMAN] Running 'pacman -S gnome-themes-standard'
    [2014-04-11 12:52] [PACMAN] installed cantarell-fonts (0.0.15-1)
    [2014-04-11 12:52] [PACMAN] installed gnome-themes-standard (3.10.0-1)
    I found a post about the graphics driver affecting the laptop temperature, which is prompting me to re-run the test above with nouveau. Unfortunately, I can't startx without noaccel=1 and I get horrible performance with this.The solution there was to use the kernel option `radeon.dpm=1`, which for nvidia appears to be to use DPMS, which I seem to have, so perhaps that isn't relevant/related?
    $ grep -i dpms /var/log/Xorg.0.log
    [ 52.969] Initializing built-in extension DPMS
    [ 56.794] (==) NVIDIA(0): DPMS enabled
    While I was looking for how far back the overheating went, I also stumbled across some other errors in journalctl like this:
    Apr 15 08:10:07 bigBang kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 15 08:10:07 bigBang kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
    Apr 15 08:10:07 bigBang kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 15 08:10:07 bigBang kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
    Apr 15 08:10:07 bigBang kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 15 08:10:07 bigBang kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
    Apr 15 08:10:07 bigBang kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 15 08:10:07 bigBang kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20131218/utaddress-258)
    This post mentions a similar warning, but doesn't really get resolved. Here's another bug about that, which is both recent and also unresolved (active). The bug, however, says nothing about what effect it actually has! I'm not sure if there's anything undesirable about it other than an ugly warning...
    Action items for me
    - Try with nouveau (X and no-X)
    - I'll be trying one of these utilities on Windows 7 shortly to see if the cpu temp is reported there.
    Thanks again for the response/suggestions!

  • (High Ip input) on My router , I need to troubleshoot why CPU is high !!!!

    (High Ip input) on My router  , I need to troubleshoot why CPU is high !!!!
    =================
    i have a cisco router 7200 NPEG2 processor , worked as LNS for PPPOVPDN circuits (Router for ADSL clients)
    i  have "high ip input on my processor" and there is alot of differnce on my router between operations done by cef and operations done by router cpu
    as an example , lets make show cpu process sorted
    CPU utilization for five seconds: 67%/54%; one minute: 67%; five minutes: 68%
     PID Runtime(ms)     Invoked      uSecs   5Sec   1Min   5Min TTY Process 
      87    10837056    46891299        231  6.31%  6.04%  6.32%   0 IP Input         
     122     4081972    38214106        106  2.47%  2.36%  2.46%   0 L2X Data Daemon  
     270      467844     2089101        223  0.79%  0.78%  0.79%   0 PPP Events       
     275     1862224     2102444        885  0.71%  0.73%  0.71%   0 SNMP ENGINE      
     112      627104       93588       6700  0.39%  0.36%  0.37%   0 CEF: IPv4 proces 
     273      854004     4207368        202  0.31%  0.26%  0.24%   0 IP SNMP          
      52      453256       12321      36787  0.31%  0.31%  0.31%   0 Compute load avg 
     258      295540      701580        421  0.23%  0.17%  0.15%   0 RADIUS           
     142       45792    14107303          3  0.23%  0.21%  0.21%   0 HQF Shaper Backg 
      78       86532      166975        518  0.23%  0.17%  0.13%   0 ACCT Periodic Pr 
     260      483164      248673       1942  0.23%  0.19%  0.24%   0 L2TP mgmt daemon 
     272       63980     1073491         59  0.15%  0.16%  0.15%   0 IPHC Admin       
      77      111560      184597        604  0.15%  0.08%  0.06%   0 AAA ACCT Proc    
     261      330572      217566       1519  0.15%  0.12%  0.15%   0 L2TUN Applicatio 
     274      450584     2102164        214  0.15%  0.15%  0.15%   0 PDU DISPATCHER   
      16      152352     1081873        140  0.07%  0.08%  0.19%   0 EnvMon           
     279      229040       27298       8390  0.07%  0.10%  0.11%   0 VTEMPLATE Backgr 
      40       23704       53593        442  0.07%  0.03%  0.02%   0 Net Background   
      95        4512       55604         81  0.07%  0.00%  0.00%   0 PPP Hooks        
     109        6844       62029        110  0.07%  0.00%  0.00%   0 IP Background    
     269       21384     1931910         11  0.07%  0.06%  0.07%   0 PPP manager      
     271         116       60672          1  0.07%  0.00%  0.00%   0 Multilink PPP    
      23       98400         321     306542  0.00%  0.07%  0.03%   0 AAA high-capacit 
    =====================
    as we see above , we have high "IP Input" about differnece in cpu =67-54=13 % , which is high value process in software .
    i follwed the article here :
    http://www.cisco.com/c/en/us/support/docs/routers/7500-series-routers/41160-highcpu-ip-input.html
    i check and found that my router is fine , 
    no arp calls.
    no routing loops.
    no flapping links.
    i checked that my router has cef enabled and no enormous routing protocol updates
    i found that i have big differnce between hardware & software process on the router which is 13 %
    but when the traffic is more and more , the cpu reach reach 93 % and begin to have drops.
    i just want to ask , how can i debug the operations that are done on the cpu processor of the router ???
    i mean that if i know that traffic , i can estimate and know the problem  that increasing my cpu !!!
    another question :
    how to debug the packest that has a ttl exceeded 50 or ttl exceeded 100 ?????
    i dont wan tto make debug ip packed , because i have a huge traffic and it will let my router hanged due to large debug !!
    ===============
    righ now i will post my router config and some verification:
    drvirus#sh running-config 
    Building configuration...
    Current configuration : 12291 bytes
    upgrade fpd auto
    version 12.4
    service tcp-keepalives-in
    service tcp-keepalives-out
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    no service dhcp
    hostname drvirus
    boot-start-marker
    boot system flash disk2:c7200p-adventerprisek9-mz.124-24.T7.bin
    boot system flash disk2:c7200p-adventerprisek9-mz.124-24.T8.bin
    boot-end-marker
    logging message-counter syslog
    aaa new-model
    aaa group server radius radiusservers
     server-private 10..f.f.f auth-port 1812 acct-port 1813 key 7 weifuhjkefkjdbhfjkasbfjka
    aaa authentication login adminstaff local
    aaa authentication login sdm_vpn_xauth_ml_1 group radius
    aaa authentication login ahmad local
    aaa authentication ppp vpdn group radiusservers local
    aaa authentication ppp drvirus local
    aaa authentication ppp vpdn1 local group radiusservers
    aaa authentication ppp ddd none
    aaa authentication ppp dddd none
    aaa authentication ppp anyok none
    aaa authorization network default group radius local 
    aaa authorization network vpdn group radiusservers local 
    aaa authorization network sdm_vpn_group_ml_1 local 
    aaa authorization network drvirus local 
    aaa authorization network vpdn1 local group radiusservers 
    aaa authorization network ddd none 
    aaa authorization network anyok none 
    aaa accounting delay-start 
    aaa accounting update newinfo periodic 10
    aaa accounting network vpdn
     action-type start-stop
     broadcast
     group radiusservers
    aaa server radius dynamic-author
     client xxxxxxxx
     client 10.xxxxxx
     client 10.xxxxxxxxx
     server-key 7 dihcbsdjkbvcsdhmbvhsdbvsdhmbvsd
     auth-type any
    aaa session-id common
    clock timezone GMT+3 3
    no ip subnet-zero
    no ip source-route
    no ip gratuitous-arps
    ip cef
    no ip bootp server
    ip domain name drvirus
    ip name-server x.x.x.x.x
    ip name-server 8.8.8.8
    login block-for 180 attempts 3 within 60
    login quiet-mode access-class telnet
    login on-failure log
    login on-success log
    no ipv6 cef
    ipv6 dhcp pool vvv
     prefix-delegation pool version6
     address prefix 3333::/64
     dns-server 4444::1
    multilink bundle-name authenticated
    vpdn enable
    vpdn logging
    vpdn logging local
    vpdn history failure table-size 50
    vpdn-group eeeeeeeeeeee
     accept-dialin
      protocol l2tp
      virtual-template 1
     terminate-from hostname qqqqqq
     local name rrrrrrr
     lcp renegotiation on-mismatch
     l2tp tunnel password 7ekfhjjeklfnlenfl
     l2tp tunnel timeout no-session 60
     ip mtu adjust
    username drvirus@!34`!512&$8#$232!^@^FGsdGD privilege 0 password 7 000sdkjhvsdkjvnah94313085g2355091407458E32425D
    interface Loopback1
     ip address ttttttt 255.255.255.255
    interface GigabitEthernet0/1
     description ttttttt
     ip address 10.60.60.2 255.255.255.0 secondary
     ip address 10.200.200.200 255.255.255.0
     no ip redirects
     no ip unreachables
     no ip proxy-arp
     load-interval 30
     duplex auto
     speed auto
     media-type rj45
     negotiation auto
    interface GigabitEthernet0/1.4
     encapsulation dot1Q 4
     ip address ttttttttt 255.255.255.224
    interface GigabitEthernet0/1.14
     encapsulation dot1Q 14
     ip address 192.168.50.3 255.255.255.0
    interface FastEthernet0/2
     no ip address
     shutdown
     duplex auto
     speed auto
    interface GigabitEthernet0/2
     ip address 10.160.150.2 255.255.255.0
     duplex auto
     speed auto
     media-type rj45
     negotiation auto
    interface GigabitEthernet0/3
     description rrrrrrr
     ip address xxxxxxx 255.255.255.252
     no ip redirects
     no ip unreachables
     no ip proxy-arp
     load-interval 30
     duplex full
     speed 1000
     media-type sfp
     negotiation auto
    interface Virtual-Template1
     ip unnumbered Loopback1
     ip tcp adjust-mss 1412
     no logging event link-status
     peer default ip address pool xxxxx xxxxxx
     ppp mtu adaptive
     ppp authentication pap vpdn1
     ppp authorization vpdn1
     ppp accounting vpdn
    router eigrp 2
     redistribute connected metric 1 2 1 2 1
     passive-interface default
     no passive-interface GigabitEthernet0/1
     network 10.200.200.200 0.0.0.0
     no auto-summary
     eigrp router-id 2.2.2.2
    ip forward-protocol nd
    ip route 0.0.0.0 0.0.0.0 10.200.200.2
    ip route dddddddddd 255.255.255.0 fffffff
    ip route ddddddddd 255.255.255.0 ffffff
    no ip http server
    no ip http secure-server
    ip radius source-interface GigabitEthernet0/2 
    radius-server attribute nas-port format d
    radius-server configure-nas
    radius-server host ddddddddddd auth-port 1812 acct-port 1813 key 7 dddddddddd
    radius-server retransmit 0
    radius-server key 7 dddddddddddddddddd
    radius-server vsa send cisco-nas-port
    radius-server vsa send accounting
    radius-server vsa send authentication
    control-plane
    drvirus#sh ip traffic
    IP statistics:
      Rcvd:  92454889 total, 5908020 local destination
             0 format errors, 94 checksum errors, 3789577 bad hop count
             0 unknown protocol, 23360 not a gateway
             0 security failures, 0 bad options, 3730347 with options
      Opts:  0 end, 0 nop, 0 basic security, 0 loose source route
             0 timestamp, 0 extended security, 0 record route
             0 stream ID, 0 strict source route, 3730347 alert, 0 cipso, 0 ump
             0 other
      Frags: 1409002 reassembled, 485 timeouts, 0 couldn't reassemble
             4542214 fragmented, 9089659 fragments, 2659413 couldn't fragment
      Bcast: 6024 received, 0 sent
      Mcast: 56503 received, 31033 sent
      Sent:  15839581 generated, 2407203241 forwarded
      Drop:  23 encapsulation failed, 0 unresolved, 0 no adjacency
             0 no route, 0 unicast RPF, 0 forced drop
             0 options denied
      Drop:  0 packets with source IP address zero
      Drop:  0 packets with internal loop back IP address
             0 physical broadcast
    ICMP statistics:
      Rcvd: 0 format errors, 0 checksum errors, 0 redirects, 4 unreachable
            140579 echo, 33742 echo reply, 0 mask requests, 0 mask replies, 0 quench
            0 parameter, 0 timestamp, 0 timestamp replies, 0 info request, 0 other
            0 irdp solicitations, 0 irdp advertisements
            0 time exceeded, 0 info replies
      Sent: 0 redirects, 3530 unreachable, 33744 echo, 140579 echo reply
            0 mask requests, 0 mask replies, 0 quench, 0 timestamp, 0 timestamp replies
            0 info reply, 46795 time exceeded, 0 parameter problem
            0 irdp solicitations, 0 irdp advertisements
    TCP statistics:
      Rcvd: 19285 total, 0 checksum errors, 7 no port
      Sent: 39402 total
    BGP statistics:
      Rcvd: 0 total, 0 opens, 0 notifications, 0 updates
            0 keepalives, 0 route-refresh, 0 unrecognized
      Sent: 0 total, 0 opens, 0 notifications, 0 updates
            0 keepalives, 0 route-refresh
    IP-EIGRP statistics:
      Rcvd: 39154 total
      Sent: 39275 total
    PIMv2 statistics: Sent/Received
      Total: 0/0, 0 checksum errors, 0 format errors
      Registers: 0/0 (0 non-rp, 0 non-sm-group), Register Stops: 0/0,  Hellos: 0/0
      Join/Prunes: 0/0, Asserts: 0/0, grafts: 0/0
      Bootstraps: 0/0, Candidate_RP_Advertisements: 0/0
      Queue drops: 0
      State-Refresh: 0/0
    IGMP statistics: Sent/Received
      Total: 0/0, Format errors: 0/0, Checksum errors: 0/0
      Host Queries: 0/0, Host Reports: 0/0, Host Leaves: 0/0 
      DVMRP: 0/0, PIM: 0/0
      Queue drops: 0
    UDP statistics:
      Rcvd: 5632168 total, 0 checksum errors, 9605 no port
      Sent: 15536481 total, 0 forwarded broadcasts
    OSPF statistics:
      Rcvd: 0 total, 0 checksum errors
            0 hello, 0 database desc, 0 link state req
            0 link state updates, 0 link state acks
      Sent: 0 total
            0 hello, 0 database desc, 0 link state req
            0 link state updates, 0 link state acks
    ARP statistics:
      Rcvd: 36012 requests, 25 replies, 0 reverse, 0 other
      Sent: 3590 requests, 1883 replies (41 proxy), 0 reverse
      Drop due to input queue full: 0
    drvirus#sh interfaces switching 
    GigabitEthernet0/1 ffff
              Throttle count          0
                       Drops         RP      29334         SP          0
                 SPD Flushes       Fast     183378        SSE          0
                 SPD Aggress       Fast          0
                SPD Priority     Inputs     196591      Drops          0
        Protocol  IP                  
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process   50222652 1410586379   38933488 2377282438
                Cache misses          0          -          -          -
                        Fast 2501299905  502401799 1732463443 1178236678
                   Auton/SSE          0          0          0          0
        Protocol  DEC MOP             
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0        104       8008
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  ARP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process      36178    2170680       3643     233084
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  CDP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process       1039     385469       2067     772027
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  Other               
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process       2266     138297       6179     370740
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        NOTE: all counts are cumulative and reset only after a reload.
    Interface FastEthernet0/2 is disabled
    GigabitEthernet0/2 
              Throttle count          0
                       Drops         RP          0         SP          0
                 SPD Flushes       Fast        785        SSE          0
                 SPD Aggress       Fast          0
                SPD Priority     Inputs       1900      Drops          0
        Protocol  IP                  
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process     382927   34296776     382540  106683985
                Cache misses          0          -          -          -
                        Fast        198      31569          0          0
                   Auton/SSE          0          0          0          0
        Protocol  DEC MOP             
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0        104       8008
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  ARP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process       1900     114000       1813     108780
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  CDP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process       1030     378010       1031     378377
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  Other               
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0       6180     370800
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        NOTE: all counts are cumulative and reset only after a reload.
    GigabitEthernet0/3 drvirus
              Throttle count          0
                       Drops         RP         15         SP          0
                 SPD Flushes       Fast      22435        SSE          0
                 SPD Aggress       Fast          0
                SPD Priority     Inputs     194236      Drops          0
        Protocol  IP                  
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process   40507058 2970006619   56462488 1872816742
                Cache misses          0          -          -          -
                        Fast 1758170357  386468928 2449949282 3706868609
                   Auton/SSE          0          0          0          0
        Protocol  DEC MOP             
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0        105       8085
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  ARP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          5        300          7        420
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  CDP                 
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0       1034     379478
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        Protocol  Other               
              Switching path    Pkts In   Chars In   Pkts Out  Chars Out
                     Process          0          0       6180     370800
                Cache misses          0          -          -          -
                        Fast          0          0          0          0
                   Auton/SSE          0          0          0          0
        NOTE: all counts are cumulative and reset only after a reload.
    drvirus#sh ip route summary 
    IP routing table name is Default-IP-Routing-Table(0)
    IP routing table maximum-paths is 32
    Route Source    Networks    Subnets     Overhead    Memory (bytes)
    connected       1           1644        105280      250040
    static          3           0           192         456
    eigrp 2         0           0           0           0
    internal        5                                   5860
    Total           9           1644        105472      256356
    Removing Queue Size 0
    drvirus#sh ip route summary 
    IP routing table name is Default-IP-Routing-Table(0)
    IP routing table maximum-paths is 32
    Route Source    Networks    Subnets     Overhead    Memory (bytes)
    connected       1           1645        105344      250192
    static          3           0           192         456
    eigrp 2         0           0           0           0
    internal        5                                   5860
    Total           9           1645        105536      256508
    Removing Queue Size 0
    drvirus#sh ip route summary 
    IP routing table name is Default-IP-Routing-Table(0)
    IP routing table maximum-paths is 32
    Route Source    Networks    Subnets     Overhead    Memory (bytes)
    connected       1           1645        105344      250192
    static          3           0           192         456
    eigrp 2         0           0           0           0
    internal        5                                   5860
    Total           9           1645        105536      256508
    Removing Queue Size 0
    drvirus#sh ip route summary 
    IP routing table name is Default-IP-Routing-Table(0)
    IP routing table maximum-paths is 32
    Route Source    Networks    Subnets     Overhead    Memory (bytes)
    connected       1           1645        105344      250192
    static          3           0           192         456
    eigrp 2         0           0           0           0
    internal        5                                   5860
    Total           9           1645        105536      256508
    Removing Queue Size 0
    drvirus#
    ANy help ??????!!!!!

    can some one determin if :
     122     9166144   120227216         76  3.30%  2.81%  2.42%   0 L2X Data Daemon
    has a relation to my high cpu 
    her  is agian my cpu process :
    drvirus#sh processes cpu sorted 
    CPU utilization for five seconds: 69%/51%; one minute: 62%; five minutes: 59%
     PID Runtime(ms)     Invoked      uSecs   5Sec   1Min   5Min TTY Process 
      87    22165548   147317354        150  7.60%  6.54%  5.74%   0 IP Input         
      16      682988     2637213        258  3.61%  0.70%  0.37%   0 EnvMon           
     122     9166144   120227216         76  3.30%  2.81%  2.42%   0 L2X Data Daemon  
     270      484700     4987094         97  0.76%  0.84%  0.86%   0 PPP Events       
     260      746640      483367       1544  0.30%  0.51%  0.51%   0 L2TP mgmt daemon 
     112     1082540      228491       4737  0.30%  0.31%  0.31%   0 CEF: IPv4 proces 
     190         596         755        789  0.30%  0.02%  0.00%   2 SSH Process      
     279      461184       78909       5844  0.30%  0.39%  0.45%   0 VTEMPLATE Backgr 
      52      954592       29823      32008  0.30%  0.31%  0.31%   0 Compute load avg 
     272       53744     2782461         19  0.23%  0.17%  0.16%   0 IPHC Admin       
     261      513524      428266       1199  0.23%  0.38%  0.37%   0 L2TUN Applicatio 
     142       31888    35627222          0  0.23%  0.19%  0.20%   0 HQF Shaper Backg 
     258      570384     1602872        355  0.15%  0.18%  0.17%   0 RADIUS           
      78       43280      392561        110  0.15%  0.10%  0.08%   0 ACCT Periodic Pr 
     281       52340      385568        135  0.07%  0.08%  0.09%   0 IP-EIGRP: PDM    
      40       37300      138153        269  0.07%  0.09%  0.10%   0 Net Background   
      77      145860      443602        328  0.07%  0.06%  0.07%   0 AAA ACCT Proc    
     110       31060       53876        576  0.07%  0.03%  0.02%   0 IP RIB Update    
      45       11868       52400        226  0.07%  0.01%  0.00%   0 IF-MGR control p 
     115       20164      103667        194  0.07%  0.02%  0.00%   0 PPP IPCP         
     102      181600      489310        371  0.07%  0.14%  0.15%   0 SSM connection m 
     143        3148     1461382          2  0.07%  0.01%  0.00%   0 RBSCP Background 
      80       19488       22128        880  0.07%  0.02%  0.00%   0 CDP Protocol     
      23      189412       10771      17585  0.00%  0.15%  0.04%   0 AAA high-capacit 
      22           0           1          0  0.00%  0.00%  0.00%   0 CEF MIB API      
      21           0           2          0  0.00%  0.00%  0.00%   0 ATM Idle Timer   
      20         376      153594          2  0.00%  0.00%  0.00%   0 ARP Background   
      24           0           2          0  0.00%  0.00%  0.00%   0 AAA_SERVER_DEADT 
      25           0           1          0  0.00%  0.00%  0.00%   0 Policy Manager   
      26        1376       26590         51  0.00%  0.00%  0.00%   0 DDR Timers       
      31           4          30        133  0.00%  0.00%  0.00%   0 EEM ED Syslog    
      27           0           5          0  0.00%  0.00%  0.00%   0 Entity MIB API   
      33         324      147392          2  0.00%  0.00%  0.00%   0 GraphIt          
      34           0           2          0  0.00%  0.00%  0.00%   0 Dialer event     
      28           0           2          0  0.00%  0.00%  0.00%   0 Serial Backgroun 
      36           0           2          0  0.00%  0.00%  0.00%   0 XML Proxy Client 

  • Recording from internet results in echo

    I tried to record a song from last.fm and youtube. While recording there is an echo sound and/or a delay in the tracks. I've posted this as a bug in Papago. This sound delay does not occur when I use AVS Media to record. This is a major problem

    I suspect you've got the "Monitor Input During Recording" option selected in the record dialog. If you're capturing the streaming audio via the "What You Hear" or "Stereo Mix" input options in the Windows Sound Device preferences AND the input monitor option is turned on, Soundbooth will echo what it records through the main system output, which will then in turn be recorded as it's fed back into Soundbooth. Unchecking the Monitor... box should prevent that.
    If not, let me know and we can continue troubleshooting.
    Thanks,
    Durin

  • Echo on 4s IOS 7.1.1.

    I HAVE A PROBLEM WITH ECHO SOUND ON MY IPHONE 4S IOS 7.1.1. I HEAR EVERY CONVERSATION VERRY WELL BUT THE OTHER PERSON IS HEARING ITSELF WITH ECHO. WHAT I HAVE TO DO TO SOLVE THIS ISSUE? I CHANGE THE MICROSIM AND THE PROBLEM IS STILL THERE. THANK YOU IN ADVANCE FOR YOURS ANSWERS.

    Hey there alinutzul,
    It sounds like you are unable to make a call without the receiving party hearing you as an echo, even after changing out the sim card. I would use the Microphone troubleshooting from the following article to help troubleshoot that, named:
    iPhone: Microphone issues
    http://support.apple.com/kb/ts5183
    Make sure nothing is plugged in to the jack connector.
    Make sure nothing is blocking any of the microphones (refer to the pictures below to find your device's microphones). Check for these:
    Dirt or debris
    A screen protector or case
    When you're holding your phone next to your ear, make sure you don't block the microphone with your fingers or shoulder and make sure to speak into the microphone
    Turn the iPhone off and then on.
    Update to the latest version of iOS.
    For further assistance, contact Apple Support.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Echo in Call Manager Express

    Hi All,
    I have a problem with echo in a CME installation. The users are at times experiencing echo while on calls. They are hearing their own voice delayed slightly in their own hand set. The say that it is often with a call that has been transferred to them.
    The environment is very simple. There are only 12 phones and they are not sharing the network, at this stage, with data. The connectivity to the PSTN is via BRI.
    The router is a 2811 with a 16 port POE switch card.
    Attached is the relevant parts of the config. Any help would be greatly appreciated.
    Regards,
    Scott

    Scott,
    Echo is usually due to two things.
    Long echo - Tail circuit is outside the range of the IOS echo cancellation unit thus the router cannot account for the echo. Default for the IOS for awhile was 8ms. New echo cancellation standards are applied in 12.3 and higher that allow you to up the echo cancellation range upwards to 64ms. On the latest codes this is now the default setting. You need to show voice-port to verify this is set to 64ms.
    Loud echo - This happens when the output attenuation or the input gain on your gateway is set too loud. Typically this is determined by checking a suspect call with Show call active voice. From there you can measure what your output volume is when it leaves the gateway and the return call volume before and after echo cancellation. I have attached the document that shows how to troubleshoot that issue. Essentially you tweak the volume settings (output attenuation and input gain commands) on the gateway until the echo is accounted for.
    http://www.cisco.com/en/US/tech/tk652/tk698/technologies_tech_note09186a0080149a1f.shtml#echoenhance
    Of course the long echo is easier to troubleshoot as the IOS does everything for you. All you need to do is make sure the cancellation range is set high enough. It does say in the documents not to set it higher than need be but the new ITU standard cancellators now are recommended to be set at the highest number available.
    Here is also a more concise document on echo in general on VOIP networks.
    http://www.cisco.com/en/US/tech/tk652/tk701/technologies_white_paper09186a00800d6b68.shtml#wp1041385
    Please rate the posts
    Thanks
    Fred

  • High pitch squeal when turning up volume and an echo sound

    I have never gotten good audio from my computer......any time I want to watch or hear something I have to turn it up to about 35 before I hear anything and then a deafening high pitch squeal happens that makes it impossible to listen to anything.....if I plug in my headphones there is so much feed back with a horrible echo sound  that I cant stand to listen for long.....I want to know if there is anything I can do to get decent sound from this laptop.   tia

    Hi stephenvy17,
    Welcome to the HP forum!
    Thank you for your inquiry, I will do my best to assist you.
    I understand that you are experiencing a difficulty with the sound on your computer.  When posting it is very beneficial for you to provide the exact model of your computer and the operating system you are running. How Do I Find My Model Number or Product Number?
    If you are running Windows 7 or lower you can run  MS Fix It to help with this issue.  If you are running Windows 8 or 8.1 you have a built in troubleshooter,
    Press the  Windows key +C to open charms
    Type troubleshoot audio  and follow the on screen prompts.
    You can run the HP Support Assistant to aid with resolving issues and updating drivers.    If this has not helped, please provide the information requested.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Flash videos playing with audio echo on initial load.

    I have been having issues playing Flash videos in the current version of Firefox (10.0) as well as the previous version (unknown) over the past few months.
    When I open a page with a video it will begin playing with an echo as if two videos are playing at the same time with a slight delay on the second video causing an audio echo effect. So basically one video with echoing audio. The websites that I experience this the most are yahoo sports (happens practically every time) and gamespot (happens occasionally). If I refresh the page the echoing effect goes away.
    I am running Windows 7 64-bit.
    I have updated video drivers on my ATI Radeon HD 5800 series.
    My flash player / shockwave is 11,1,102,55 (updated) but I know I have experienced the same problem with previous versions.
    I have the following plug-ins enabled:
    1. Adobe Acrobat 10.1.2.45
    2. Current version of Ad-Block
    3. Divx Plus Web Player 2.2.0.52
    4. Divx VOD Helper Plug-In 1.1.0.6
    5. Microsoft Windows Media Player Firefox Plug-In 1.0.0.8
    6. Quicktime Plug-In 7.7.1 / 7.7.1.0
    7. Real Player 32 Bit Plug-Ins (4 total plug ins) 15.0.0.198
    8. Veetle Plug-Ins (3 total plug ins) 0.9.17.0
    I have some others as well but I thought these were the only relevant ones.
    Can anyone help me with my problem?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When using my ipod touch to facetime with my ipad, why does the sound on the ipad echoes/repeats?

    when using my ipod touch to facetime with my ipad, why does the sound on the ipad echoes/repeats?

    Bunyip6 wrote:
    ...  so I am assuming it should not need to be reset/
    It will not hurt to try a Reset... this is one of the First steps in Troubleshooting...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • How do I get rid of voice echo on mozilla aol?

    when I click on any video the voice with that video has an echo! How do I get rid of the echo?

    If you hear an echo then this can mean that there are two players active that are playing this file.
    You can try to disable other plugins.
    *https://support.mozilla.org/kb/Troubleshooting+plugins
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    There are other things that need your attention.
    Please update the Java plugin because the 6U37 version that you currently use is seriously outdated and has known security vulnerabilities.
    * Next Generation Java Plug-in 1.6.0_37 for Mozilla browsers
    *http://www.mozilla.org/plugincheck/

  • FaceTime troubleshooting (imac)

    I've been having issues with FaceTime and I've traced the problem to my 2013 iMac. When I use my iMac to FaceTime my parents, they always have an echo on their side and a choppy connection. We both have high speed internet. On their end it says "poor connection" and I freeze, on my end I see and hear them clearly.
    I recently discovered that if I use my iPhone 6 plus, FaceTime works perfectly on both ends. So something about my iMac is causing these problems but I am kinda baffled. I am using external bluetooth speakers and the iMac's internal mic. I am running Yosemite.
    I'm going to try using the internal speakers next, but in the meantime if anyone else has encountered this, any advice would be appreciated.
    Thank you,
    J

    Hey jds9000,
    Good job on isolating the issue to your iMac, lets see if we can get it sorted out. Take a look at the troubleshooting and look at the settings on your iMac to make sure that you are good to make FaceTime calls. 
    FaceTime for Mac: Troubleshooting FaceTime
    http://support.apple.com/en-us/HT203585
    Troubleshooting FaceTime for Mac
    You can make FaceTime calls using the FaceTime app. You can call FaceTime users whose contact information is in Contacts. You can add contacts and edit contact information in either FaceTime or Contacts. To place a video call, you may use a phone number or email address.
    If you encounter issues making or receiving FaceTime calls, try the following:
    Verify that FaceTime is enabled in FaceTime > Preferences.If the issue persists, or if you see the message "Waiting for Activation", try toggling FaceTime off and then on.
    Verify that the Date, Time, and Time Zone are set correctly:
    From the Apple () menu, choose System Preferences > Date & Time > Date & Time.
    Enable "Set Automatically".
    Click the Time Zone tab and confirm the closest city is correct.
    Verify that both parties are connected to an active broadband Internet connection.
    See Mac OS X: Troubleshooting a cable modem, DSL, or LAN Internet connection.
    Consult Using FaceTime behind a firewall for necessary ports to open in firewalls, security software and routers.
    If you encounter issues using a Wi-Fi network, use standard Wi-Fi network troubleshooting to resolve interference and other issues.
    Verify the phone number or email address being used is the correct one activated for FaceTime.You can verify that you are using a valid Apple ID at appleid.apple.com. You can also create an Apple ID or reset your password from this website.
    Verify that both parties have installed the latest software updates for their Mac and/or device. See:
    Mac OS X: Updating your software
    iOS: How to update your iPhone, iPad, or iPod touch
    Take it easy,
    -Norm G.  

  • Help troubleshooting DirectAccess issue

    Hi All,
    I was following the Windows 2012 R2 DirectAccess guide to build a lab for testing. I did a small changes in IP addressing but other then that it should be configured as per that MS guide. Here is the config:
    As you can see Edge2 has been added and configured as NLB cluster. All components are green in Remote Access manager on both servers and NLB config is all green and converged.
    NLS is on APP1 and works fine. Public name of DirectAccess server is edge1.contoso.com and this name is being resolved on external DNS running on INET1. to 131.107.0.2. Correct certificates deployed and configured.
    When Client1 (windows 8.1) is on Corpnet all works fine, I can reach internal resources, fileshares, webs etc.
    When Client1 is on Internet DirectAccess connection is in status "Connecting" forever. Transition technology used is IPHTTPS as I have disabled both 6to4 and Teredo.
    PS C:\Users\user1> netsh interface httpstunnel show interfaces
    Interface IPHTTPSInterface (Group Policy)  Parameters
    Role                       : client
    URL                        : https://edge1.contoso.com:443/IPHTTPS
    Last Error Code            : 0x0
    Interface Status           : IPHTTPS interface active
    PS C:\Users\user1> get-daconnectionstatus
    Status    : Error
    Substatus : NameResolutionFailure
    I can ping IPv6 of DC1 and APP1 as well as IPv6 VIP of EDGE NLB. I cant however resolve or access anything via DNS name.
    PS C:\Users\user1> netsh namespace show effective
    DNS Effective Name Resolution Policy Table Settings
    Settings for .corp.contoso.com
    DirectAccess (Certification Authority)  :
    DirectAccess (IPsec)                    : disabled
    DirectAccess (DNS Servers)              : 2001:db8:1::2
    DirectAccess (Proxy Settings)           : Bypass proxy
    Settings for nls.corp.contoso.com
    DirectAccess (Certification Authority)  :
    DirectAccess (IPsec)                    : disabled
    DirectAccess (DNS Servers)              :
    DirectAccess (Proxy Settings)           : Use default browser settings
    When I run DirectAccess Troubleshooting tool I got following - see next post.

    [8/27/2014 8:36:40 AM]: In worker thread, going to start the tests.
    [8/27/2014 8:36:40 AM]: Running Network Interfaces tests.
    [8/27/2014 8:36:40 AM]: Internet (Microsoft Hyper-V Network Adapter): fe80::79b3:a90:1c54:2c7c%3;: 131.107.0.103/255.255.255.0;
    [8/27/2014 8:36:40 AM]: Default gateway found for Internet.
    [8/27/2014 8:36:40 AM]: 6TO4 Adapter (Microsoft 6to4 Adapter): 2002:836b:67::836b:67;
    [8/27/2014 8:36:40 AM]: No default gateway found for 6TO4 Adapter.
    [8/27/2014 8:36:40 AM]: Internet has configured the default gateway 131.107.0.10.
    [8/27/2014 8:36:40 AM]: Default gateway 131.107.0.10 for Internet replies on ICMP Echo requests, RTT is 1 msec.
    [8/27/2014 8:36:52 AM]: The public DNS Server (8.8.8.8) does not reply on ICMP Echo requests, the request or response is maybe filtered?
    [8/27/2014 8:36:52 AM]: The public DNS Server (2001:4860:4860::8888) does not reply on ICMP Echo requests, the request or response is maybe filtered?
    [8/27/2014 8:36:52 AM]: Running Inside/Outside location tests.
    [8/27/2014 8:36:52 AM]: NLS is https://nls.corp.contoso.com/.
    [8/27/2014 8:36:52 AM]: NLS is not reachable via HTTPS, the client computer is not connected to the corporate network (external) or the NLS is offline.
    [8/27/2014 8:36:52 AM]: NRPT contains 2 rules.
    [8/27/2014 8:36:52 AM]: Found (unique) DNS server: 2001:db8:1::2
    [8/27/2014 8:36:52 AM]: Send an ICMP message to check if the server is reachable.
    [8/27/2014 8:36:52 AM]: DNS server 2001:db8:1::2 is online, RTT is 53 msec.
    [8/27/2014 8:36:52 AM]: Running IP connectivity tests.
    [8/27/2014 8:36:52 AM]: The 6to4 interface service state is default.
    [8/27/2014 8:36:53 AM]: Teredo inferface status is offline.
    [8/27/2014 8:36:53 AM]: The configured DirectAccess Teredo server is edge1.contoso.com (Group Policy).
    [8/27/2014 8:36:53 AM]: The IPHTTPS interface is operational.
    [8/27/2014 8:36:53 AM]: The IPHTTPS interface status is IPHTTPS interface active.
    [8/27/2014 8:36:53 AM]: IPHTTPS is used as IPv6 transition technology.
    [8/27/2014 8:36:53 AM]: The configured IPHTTPS URL is https://edge1.contoso.com:443.
    [8/27/2014 8:36:53 AM]: IPHTTPS has a single site configuration.
    [8/27/2014 8:36:53 AM]: IPHTTPS URL endpoint is: https://edge1.contoso.com:443.
    [8/27/2014 8:36:53 AM]: Successfully connected to endpoint https://edge1.contoso.com:443.
    [8/27/2014 8:36:53 AM]: No response received from corp.contoso.com.
    [8/27/2014 8:36:53 AM]: Running Windows Firewall tests.
    [8/27/2014 8:36:53 AM]: The current profile of the Windows Firewall is Public.
    [8/27/2014 8:36:53 AM]: The Windows Firewall is enabled in the current profile Public.
    [8/27/2014 8:36:53 AM]: The outbound Windows Firewall rule Core Networking - Teredo (UDP-Out) is enabled.
    [8/27/2014 8:36:53 AM]: The outbound Windows Firewall rule Core Networking - IPHTTPS (TCP-Out) is enabled.
    [8/27/2014 8:36:53 AM]: Running certificate tests.
    [8/27/2014 8:36:53 AM]: Found 1 machine certificates on this client computer.
    [8/27/2014 8:36:53 AM]: Checking certificate [no subject] with the serial number [660000000E1171FD52F450635D00000000000E].
    [8/27/2014 8:36:53 AM]: The certificate [660000000E1171FD52F450635D00000000000E] contains the EKU Client Authentication.
    [8/27/2014 8:37:04 AM]: The trust chain for the certificate [660000000E1171FD52F450635D00000000000E] was sucessfully verified.
    [8/27/2014 8:37:04 AM]: Running IPsec infrastructure tunnel tests.
    [8/27/2014 8:37:04 AM]: Failed to connect to domain sysvol share \\corp.contoso.com\sysvol\corp.contoso.com\Policies.
    [8/27/2014 8:37:04 AM]: Running IPsec intranet tunnel tests.
    [8/27/2014 8:37:04 AM]: Successfully reached 2002:836b:3::836b:3, RTT is 24 msec.
    [8/27/2014 8:37:04 AM]: Successfully reached 2002:836b:2::836b:2, RTT is 10 msec.
    [8/27/2014 8:37:04 AM]: Failed to connect to HTTP probe at http://directaccess-WebProbeHost.corp.contoso.com.
    [8/27/2014 8:37:04 AM]: Running selected post-checks script.
    [8/27/2014 8:37:04 AM]: No post-checks script specified or the file does not exist.
    [8/27/2014 8:37:04 AM]: Finished running post-checks script.
    [8/27/2014 8:37:04 AM]: Finished running all tests.

Maybe you are looking for

  • Can't install windows XP to a macbook pro with an Intel X25-M SSD

    It's a strange problem: We just bought some new unibody macbook pro 2.8Ghz machines, (4GB ram)etc. We also obtained some of the new Solid State Drives (SSDs) from Intel, the X25M-80GB. (part number: SSDSA2MH080G1C5) After installing the SSD into the

  • How do I get Apple TV to work with my receiver?

    I have a new home theater. If I plug in my AppleTV to my TV, it works but the sound comes out of the TV. If I plug AppleTV into an HDMI port on my receiver, the TV doesn't know it exists. I want it to come out of my sound system thru my receiver. How

  • Using an Exchange Rate Type other than 'M' in a Purchase Order

    I use several exchange rate types in SAP for various currency positions, specificially with pricing.  As a result, when I create a Purchase Order I want to use a different Exchange Rate Type, instead of the standard 'M'.  I have seen the rates can be

  • How do you get the custom fields added to a address book to show up on Pages 09 when merging fields?

    I created some custom fields in the address book and want to get them merged into a Pages 09 document.  When using the merge fields feature in Pages, only the standard fields are displayed.  I am looking for a way to have the custom fields from the a

  • Recording audio from rtp session

    Dear all; I am not sure that this is the right forum to post my question. I am new in jmf and i want to record calls from nortel Pbx for example and others like asterisk PBX which records all in and out calls.first of all is it possible to use jmf fo