I wonder if It is working ip wccp redirect 61 and 62 on same int at C2800

hi
I wonder if it is working like below at C2800.
case.1
interface ATM1/0.40 point-to-point
description to_WAN
bandwidth 18000
ip address 192.1681.1 255.255.255.0
ip wccp 61 redirect out
ip wccp 62 redirect in
! other configuration is omitted.
In cisco recomemdation, we know that the following configuration is common.
case.2
interface fa1/0
desc from_lan
ip address 1.1.1.1 255.255.255.0
ip wccp 61 redirect in
interface ATM1/0.40 point-to-point
description to_WAN
bandwidth 18000
ip address 192.1681.1 255.255.255.0
ip wccp 62 redirect in
BTW, the result of lab test, case.1 at C2800 didn't work, we tested it with FTP, but FTP open didn't open.
when we change from option1 to option2 , We can open ftp and completed acclecation test.
my questions point is that At C2800, option 1 is working?

Hi,
First thing we should verify is : is WCCP up and running while this issue is happening?
Can you paste following CLI command ?
Please get the output of following cli commands when the problem is happening.
sh ver
sh ip wccp
sh ip wccp 61 detail
sh ip wccp 62 detail
Further, whar cache engine you are using? and what's the version of the CE?  Can you also paste the cli command output:
sh egress-method
sh wccp router
sh stat connection | in
Last thing: is this issue related to FTP only ? do you see same issue with any other traffic?
is this traffic being optimized?
One more thing you want to add is: add exclude in statement on interface connected to CE.
cli command: ip wccp redirect exclude in
Regards.

Similar Messages

  • I installed itunes, and when it starts, it says the program has stopped working.  I uninstalled and reinstalled, same thing

    I recently installed Itunes on my laptop, and was able to add music to it, but then it would always pop up a window that said itunes had stopped working anytime I opened it.  I uninstalled it, and reinstalled it, and it's doing the same thing.  Please help!!!!

    Check  this document.
    Error "Licensing has stopped working" | Mac OS
    Try each step.
    When you get to the license recovery kit, type sudo, leave a space and drag LicenseRecover.py into
    the Terminal screen, then hit Enter. It should look like this:
    Enter your password, but remember the cursor will not move. Just hit enter and let the script run.

  • Firefox extremely slow to load, stops Keyboard from working despite resetting, uninstal and downloading same problems persist

    Firefox takes forever to load. When trying to fill in a form on a Web Page the Keyboard wont work and I have to close Firefox and start over. It stops for no reason and page gets s white haze over it. I have reloaded Foxfire. Uninstalled it and downloaded the latest version but it continues. Any clues Thanks Haydn

    Another update:
    I just tried a different router, an older wireless version of the same router and when I first plugged it in and restarted my computer the internet seemed to work normally again, under 5 second page loads (which is still slower than I'm used to getting, but it was a major improvent).
    Then I checked different slots in the router to see if my IP address was changing and it was still remaining on the same IP regardless of which slot I put it in. Do I have to restart my computer everytime I change slots? Either way the internet seemed to be working fine again.
    Then I switched back to the other cord that was producing the problems and the speed slowed down again, but it was still loading pages within 10-20 seconds, leading one to believe it was indead the cord.
    However, a few minutes into browsing around the web the speed seems to be getting progessively slower. I quit Safari a few times and restarted and the pages would now flash up with no delays, click one or two links with the same results. Then with the 4th or 5th new page the speed slows, and has been slowing to a dead hault again....
    I am out of ideas, seemingly a different cord and different router helped things, but only at first. I don't think I can rule out the cord and router as not being problems, but I don't think they are the only problem either.
    It must be something to do with the IP addresses, as I am still getting the same address regardless of which router port I put it in. But, I've tried resetting the routers and going into their configurations and resetting them to system defaults, all with no luck.
    You would think my computer is the problem, as my roommates computer hasn't had any problems, however everything else on my computer is working perfectly, I've not noticed any other problems and I've tried setting and resetting every network configuration option I can think of and that still doesn't fix the problem.
    Maybe the ethernet port on my computer is busted?

  • WCCP 61 and 62 for WAAS?

    What if, I wanted to use TWO wan optimizing pieces of hardware--One WAAS and one another vendor? Both "Head-End" devices would need to use a WCCP redirect off the same GIG and POS interace (with a different ACL and WCCP number) BUTTTT..the problem it seems, is the Cisco WAAS devices will only use 61 and 62 in promiscuous mode...while other vendors can do numbered modes...is this true? Or can you do something like
    Gig0/0
    ip wccp 10 redirect in <--Cisco waas
    ip wccp 20 redirect in <--vendor2
    etc..
    Thanks for any help

    Hi Alan,
    WAAS currently only supports service groups 61/62. Note that these numeric designations are really just identifiers, and don't impact order of operations or anything else. So long as the 'vendor2' device above uses some other service group numbers besides 61/62, you should be fine.
    Also note that if you are configuring WCCP on a software-based platform (ISR, 7200, etc.), you will also need to configure the global command 'ip wccp check services all'.
    Please let us know if you have any additional questions.
    Regards,
    Zach

  • Hi guys, so I wonder if ipad cellular works outside of the US. I need to send an iPad cellular overseas. Can an iPad cellular that is unlocked by AT

    Hi guys, so I wonder if ipad cellular works outside of the US. I need to send an iPad cellular overseas. Can an iPad cellular that is unlocked by AT&T/Verizon be usable outside of the US? I dun really know about iPad. Please help! Thanks

    I bought an AT&T ipad air in USA. I spend quite a bit of time in Sri Lanka and have been using it the past month with a Sri Lankan carrier's SIM and it has worked perfectly.

  • I wonder how this code works?

    I was going through java API in order to understand how System.out.println("Print this string"); works. I came to know that println is an instance method of PrintStream class. So, i created an instance of PrintStream (ps) and accessed println. My code works fine BUT i realized that i needed to pass System.out as parameter to PrintStream constructor.
    NOW System.out already refers to an instance of PrintStream class.
    BUT there is no such constructor defined in PrintStream class that requires an instance of PrintStream as parameter (See API).
    I wonder how this code works?
    import java.io.*;
    class AnotherWayToPrint {
         public static void main(String[] args) {
              PrintStream ps = new PrintStream(System.out);
              ps.println("Yes! I am printed.");
              ps.println(System.out); // java.io.PrintStream@1ob62c9
    }

    I was going through java API in order to understand
    how System.out.println("Print this string"); works. I
    came to know that println is an instance method of
    PrintStream class. So, i created an instance of
    PrintStream (ps) and accessed println. My code works
    fine BUT i realized that i needed to pass System.out
    as parameter to PrintStream constructor.
    NOW System.out already refers to an instance of
    PrintStream class.
    BUT there is no such constructor defined in
    PrintStream class that requires an instance of
    PrintStream as parameter (See API). Requires? All the constructors for PrintStream take an OutputStream as a parameter.
    A PrintStream IS AN OutputStream

  • I have recently found a pop up box telling me that 'Safari quit unexpectedly', and askes me to either report, re-open or ignore. However when I quit on re-open it doesn't work. I just get the same pop up box appearing. Has anyone any ideas please?

    Sorry - I meant to say: 'However when I click on re-open it doesn't work'.
    This problem has only occurred within the last week or so, since I have started to run my Mac on Safari OX 10 Yosemite. I wonder if anyone else has had similar problems and can suggest how I rectify it?
    I am now using Firefox to get on line but would like to know what has gone wrong with Safari.
    Many thanks,
    Clare.

    I cannot use mine at all! I am having to use Firefox as well, i continue to get this and have no idea what to do???
    Process:          
    Safari [786]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [786]
    User ID:          
    501
    Date/Time:        
    2014-12-27 12:02:59.114 -0600
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    AED39F4B-8E1B-0B58-D4A3-96C28B329DEE
    Time Awake Since Boot: 2300 seconds
    Crashed Thread:   
    15
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000101bb0000-0000000101bb1000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff8ec12a7e __getattrlist + 10
    1   com.apple.CoreServicesInternal    0x00007fff94ba674f prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227
    2   com.apple.CoreServicesInternal    0x00007fff94ba40ea _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 211
    3   com.apple.CoreFoundation
    0x00007fff8b13904b CFURLCopyResourcePropertyForKey + 123
    4   com.apple.CoreFoundation
    0x00007fff8b140f3e -[NSURL getResourceValue:forKey:error:] + 190
    5   com.apple.AppKit        
    0x00007fff8a21e34b +[NSImageRep _imageRepsWithContentsOfURL:expandImageContentNow:giveUpOnNetworkURLsWithoutGoo dExtensions:] + 142
    6   com.apple.AppKit        
    0x00007fff8a21e261 __51-[NSImageURLReferencingRepProvider representations]_block_invoke + 55
    7   com.apple.Foundation    
    0x00007fff95d9a006 _NSFaultInObject + 32
    8   com.apple.AppKit        
    0x00007fff8a21e223 -[NSImageURLReferencingRepProvider representations] + 89
    9   com.apple.AppKit        
    0x00007fff8a1c3af2 __45-[NSImage _usingRepresentationsPerformBlock:]_block_invoke + 47
    10  com.apple.AppKit        
    0x00007fff8a1c3a8c -[NSImage _usingRepresentationsPerformBlock:] + 91
    11  com.apple.AppKit        
    0x00007fff8a21e0fc __15-[NSImage size]_block_invoke + 380
    12  com.apple.AppKit        
    0x00007fff8a212dc7 -[NSImage size] + 137
    13  com.apple.AppKit        
    0x00007fff8a2ce62f -[NSImageCell _cellSizeAccountingForImageInControl:] + 92
    14  com.apple.AppKit        
    0x00007fff8a2ce582 -[NSImageView intrinsicContentSize] + 95
    15  com.apple.AppKit        
    0x00007fff8a26ff28 -[NSView(NSConstraintBasedLayout) _generateContentSizeConstraints] + 50
    16  com.apple.AppKit        
    0x00007fff8a26fb04 -[NSView(NSConstraintBasedLayout) _updateContentSizeConstraints] + 433
    17  com.apple.AppKit        
    0x00007fff8a26f060 -[NSView updateConstraints] + 80
    18  com.apple.AppKit        
    0x00007fff8a26ee38 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 664
    19  com.apple.AppKit        
    0x00007fff8a26ed70 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 464
    20  com.apple.AppKit        
    0x00007fff8a285f94 __82-[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:]_block _invoke + 277
    21  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    22  com.apple.AppKit        
    0x00007fff8a26ec86 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 230
    23  com.apple.AppKit        
    0x00007fff8a26ead6 __45-[NSView updateConstraintsForSubtreeIfNeeded]_block_invoke + 49
    24  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    25  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    26  com.apple.AppKit        
    0x00007fff8a26ea9e -[NSView updateConstraintsForSubtreeIfNeeded] + 88
    27  com.apple.AppKit        
    0x00007fff8a2ce4b8 __62-[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded]_block_invoke + 136
    28  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    29  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    30  com.apple.AppKit        
    0x00007fff8a2ce3dc -[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded] + 208
    31  com.apple.AppKit        
    0x00007fff8a26e696 -[NSView layoutSubtreeIfNeeded] + 155
    32  com.apple.AppKit        
    0x00007fff8a4d2f45 -[NSAlert buildAlertStyle:title:formattedMsg:first:second:third:oldStyle:] + 9397
    33  com.apple.AppKit        
    0x00007fff8a4d0a45 -[NSAlert layout] + 357
    34  com.apple.AppKit        
    0x00007fff8a4decf1 -[NSAlert runModal] + 46
    35  com.apple.AppKit        
    0x00007fff8a1e165d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1037
    36  com.apple.AppKit        
    0x00007fff8a1e120e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    37  com.apple.AppKit        
    0x00007fff8a1e11ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    38  com.apple.AppKit        
    0x00007fff8a1e0e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    39  com.apple.AppKit        
    0x00007fff8a1e0c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    40  com.apple.AppKit        
    0x00007fff8a1e06b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    41  com.apple.Foundation    
    0x00007fff95da2458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    42  com.apple.Foundation    
    0x00007fff95da22c9 _NSAppleEventManagerGenericHandler + 102
    43  com.apple.AE            
    0x00007fff8c13b99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    44  com.apple.AE            
    0x00007fff8c13b719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    45  com.apple.AE            
    0x00007fff8c13b623 aeProcessAppleEvent + 295
    46  com.apple.HIToolbox     
    0x00007fff8979f37e AEProcessAppleEvent + 56
    47  com.apple.AppKit        
    0x00007fff8a1dcd76 _DPSNextEvent + 2665
    48  com.apple.AppKit        
    0x00007fff8a1dbe80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    49  com.apple.Safari.framework  
    0x0000000101c2fad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    50  com.apple.AppKit        
    0x00007fff8a1cfe23 -[NSApplication run] + 594
    51  com.apple.AppKit        
    0x00007fff8a1bb2d4 NSApplicationMain + 1832
    52  libdyld.dylib           
    0x00007fff922305c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff8ec1422e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff955a9a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff8ec13132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x00000001037dd88b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x00000001037da9d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x000000010299ca9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff9468fd63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff9468fc96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff8b14eb14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff8b14dfdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff8b14d838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff90ecad20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff95de8b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff8ec133f6 __select + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    2   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    3   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 14:
    Thread 15 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff8dd07695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff98093b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff9808c620 fprintf + 186
    3   ???                     
    0x000000010ac515dc 0 + 4475655644
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7b4f11d8  rcx: 0x00007fff7b4f11f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7b4f11f0  rsi: 0x00007fff8dd07b14  rbp: 0x000000010ac4de30  rsp: 0x000000010ac4ddb0
       r8: 0x000000010abb4000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7b4f06b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8dd07695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    6
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x101bb0000 -   
    0x101bb0fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x101bb9000 -   
    0x1024f2ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x102992000 -   
    0x102ea5ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x10300b000 -   
    0x1032bffff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10359b000 -   
    0x10359bfff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x1035a1000 -   
    0x1036ddffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x1037d6000 -   
    0x10477bff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x10a7dc000 -   
    0x10a7dcff5 +cl_kernels (???) <2B02B8D9-91CE-461E-9862-EE769DF8E174> cl_kernels
    0x10a7de000 -   
    0x10a8c4fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x10a98b000 -   
    0x10a98bfef +cl_kernels (???) <7A55F558-91D3-494C-812B-D4C6768AC6AD> cl_kernels
    0x7fff69b06000 -
    0x7fff69b3c837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff88fc1000 -
    0x7fff88fc2ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff88fc3000 -
    0x7fff88feefff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff88ff8000 -
    0x7fff89049ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8904a000 -
    0x7fff893b5fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff893d5000 -
    0x7fff893d8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8947c000 -
    0x7fff89763ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff89764000 -
    0x7fff89a66fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff89a7f000 -
    0x7fff89aaffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff89ab0000 -
    0x7fff89ac3ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff89ac4000 -
    0x7fff89b3afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff89b3b000 -
    0x7fff89f6bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff89f6c000 -
    0x7fff89f8fff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff89f90000 -
    0x7fff89fb8fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff89fb9000 -
    0x7fff8a19e267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8a19f000 -
    0x7fff8a1a3fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
    0x7fff8a1a4000 -
    0x7fff8a1aaff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8a1b8000 -
    0x7fff8acf9fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8acfa000 -
    0x7fff8ad8bfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff8b023000 -
    0x7fff8b06dfff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8b06e000 -
    0x7fff8b0bafff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8b0dc000 -
    0x7fff8b472fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8b473000 -
    0x7fff8b48cff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8b48d000 -
    0x7fff8b4fcfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8b4fd000 -
    0x7fff8b51bff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff8b51c000 -
    0x7fff8b5c4ff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff8b5ea000 -
    0x7fff8b606ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8b607000 -
    0x7fff8b65bfff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff8b65f000 -
    0x7fff8b667ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff8b673000 -
    0x7fff8b673fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8b674000 -
    0x7fff8b68fff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff8b6c3000 -
    0x7fff8b6ceff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8b6cf000 -
    0x7fff8b6d0ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8b6d1000 -
    0x7fff8b794ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b795000 -
    0x7fff8b7c0ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x7fff8b7c1000 -
    0x7fff8b855fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8b88f000 -
    0x7fff8b894ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8b895000 -
    0x7fff8b8a4fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8c12e000 -
    0x7fff8c18dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8c18e000 -
    0x7fff8c18efff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c18f000 -
    0x7fff8c192ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8c1ad000 -
    0x7fff8c2ddfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8c2de000 -
    0x7fff8c319fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8c31a000 -
    0x7fff8c35bfff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8c3a7000 -
    0x7fff8c462ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8c463000 -
    0x7fff8c471ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff8c5d7000 -
    0x7fff8c5dafff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c5e8000 -
    0x7fff8c631ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8c635000 -
    0x7fff8c63cfff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
    0x7fff8c660000 -
    0x7fff8c69bfff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c69c000 -
    0x7fff8c6b6ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8c6b7000 -
    0x7fff8c704ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8c70d000 -
    0x7fff8c712ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff8c713000 -
    0x7fff8c724fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff8c793000 -
    0x7fff8c828ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8c932000 -
    0x7fff8c963fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
    0x7fff8c971000 -
    0x7fff8c9e5fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8c9e6000 -
    0x7fff8ca26fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8ca27000 -
    0x7fff8ca2ffe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff8ca7b000 -
    0x7fff8ca82fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8ca83000 -
    0x7fff8ca87fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8ca88000 -
    0x7fff8cab5fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8cab6000 -
    0x7fff8caeefff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8caef000 -
    0x7fff8caf0fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8ccaf000 -
    0x7fff8ccd2fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8ccd3000 -
    0x7fff8cdc7ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8cf05000 -
    0x7fff8cf0cfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8cf5d000 -
    0x7fff8cf65fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff8cf80000 -
    0x7fff8cf96ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff8cf97000 -
    0x7fff8d038ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8d039000 -
    0x7fff8d03fff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8d040000 -
    0x7fff8d0d1fff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7fff8d113000 -
    0x7fff8d11bfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff8d11c000 -
    0x7fff8d136ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff8d137000 -
    0x7fff8d137ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff8d1bf000 -
    0x7fff8d3ffff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8d400000 -
    0x7fff8d517fe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8d518000 -
    0x7fff8d520ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x7fff8d521000 -
    0x7fff8d535ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8d536000 -
    0x7fff8d543fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8d544000 -
    0x7fff8d627fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8d693000 -
    0x7fff8d71cfff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8d71d000 -
    0x7fff8daf4fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8daf5000 -
    0x7fff8daf7fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff8daf8000 -
    0x7fff8dc3afff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8dc3b000 -
    0x7fff8dc3bfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8dc3c000 -
    0x7fff8dc45fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8dc46000 -
    0x7fff8dc6bff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8dced000 -
    0x7fff8dcf1ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8dcf2000 -
    0x7fff8dcfeff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8dd06000 -
    0x7fff8dd0ffff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8dd10000 -
    0x7fff8e567ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e568000 -
    0x7fff8e5b4ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff8e5b5000 -
    0x7fff8e610fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8e611000 -
    0x7fff8e641ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8e642000 -
    0x7fff8e688ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8e689000 -
    0x7fff8e6dcffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff8e6dd000 -
    0x7fff8ebc9fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8ebca000 -
    0x7fff8ebfcff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8ebfd000 -
    0x7fff8ec1afff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8ec1b000 -
    0x7fff8ec3cfff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8ec3d000 -
    0x7fff8eccbff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8eccc000 -
    0x7fff8ecfcffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8ecfd000 -
    0x7fff8ed6eff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ed6f000 -
    0x7fff8edc9ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff8edca000 -
    0x7fff8edccfff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8edcd000 -
    0x7fff8ee0ffff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
    0x7fff8ee10000 -
    0x7fff8ee49fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff8ee4a000 -
    0x7fff8ee50fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8ee66000 -
    0x7fff8ee6efff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff8ef12000 -
    0x7fff8ef41fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8f169000 -
    0x7fff8f415fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f416000 -
    0x7fff8f508ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8f509000 -
    0x7fff8f916ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8f917000 -
    0x7fff8f98fff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8f990000 -
    0x7fff8f99aff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8f99b000 -
    0x7fff8f9b5ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff8f9b6000 -
    0x7fff8f9c0ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f9c1000 -
    0x7fff8fc3bfff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8fc3c000 -
    0x7fff8fc43ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8fc44000 -
    0x7fff8fc4cff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8fc4d000 -
    0x7fff8fc58ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff8fc59000 -
    0x7fff8fceaff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8fceb000 -
    0x7fff8fd19ff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff8fd1a000 -
    0x7fff8fd1eff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8fd1f000 -
    0x7fff8fe12ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8fe20000 -
    0x7fff8fe21fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
    0x7fff8fe22000 -
    0x7fff8fe33ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff8fe34000 -
    0x7fff8fe3fff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
    0x7fff8fee8000 -
    0x7fff8fefdfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8fefe000 -
    0x7fff90016ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff90017000 -
    0x7fff90019ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9001a000 -
    0x7fff90294ff3  com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff902f0000 -
    0x7fff90302ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
    0x7fff90303000 -
    0x7fff90309fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x7fff9030a000 -
    0x7fff90336fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff9036b000 -
    0x7fff90378ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x7fff90656000 -
    0x7fff90658fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff90664000 -
    0x7fff906aaff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff906ab000 -
    0x7fff906b3ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff90771000 -
    0x7fff907a8ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff907a9000 -
    0x7fff908e6fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff908e7000 -
    0x7fff908f5ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff908f6000 -
    0x7fff90912fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff90913000 -
    0x7fff909b1fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff909b2000 -
    0x7fff90a01ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff90a02000 -
    0x7fff90d35ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
    0x7fff90d36000 -
    0x7fff90db7ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff90db8000 -
    0x7fff90dc1ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff90dc2000 -
    0x7fff90e29ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff90e2a000 -
    0x7fff9102dff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff9102e000 -
    0x7fff91040fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
    0x7fff91089000 -
    0x7fff9126eff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
    0x7fff9126f000 -
    0x7fff91295ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff91426000 -
    0x7fff9142bfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff91453000 -
    0x7fff91469ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff9146a000 -
    0x7fff914eeff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge

  • I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help!

    I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help! I don't want to have to be stuck using my internal speakers!
    Thank you,
    Chris

    Michael,
    Thanks. I haven't mixed down the audio or checked the number of tracks in Prefs. Good points.
    As far as a mixdown goes, I'll definitely give it a try, though I wonder whether or not the tracks will be recognized during mix down recording - given that you can't hear either of those segments in playback. Just have to try.
    Re the preferred number of allowed tracks - I'll go check as soon as I send this off, but I'm not sure that applies in this case, since the two Channels containing the segments that are pinked out are not in additional tracks. I should have mentioned that other audio clips and segments on the same Channels in the SAME tracks ARE heard in playback. As are two additional track in the 2nd Sequence. It's only when the two sequences are joined that the pink tinted segments can't be heard. Within the sequence the same audio cuts playback as they should. Thanks again &
    Best regards,
    David

  • I have a MacBook Pro 13inch 2.4GHz (Intel Core 2 Duo, 4Gb RAM, 250Gb HDD, NVIDIA GeForce 320M graphics, SD card slot, up to 10 hour battery life)bought in October 2010 in the UK. The charger has stopped working. Which model and voltage do I need please?

    I have a MacBook Pro 13inch 2.4GHz (Intel Core 2 Duo, 4Gb RAM, 250Gb HDD, NVIDIA GeForce 320M graphics, SD card slot, up to 10 hour battery life) bought in October 2010. The charger has been playing up for a while now - the light going out but coming back on when I move the cable a bit - faulty connection it seems. It has now stopped working at all.
    Apple UK charge a whopping £65 for a replacement - and the reviews are AWFUL for it!
    I need to know which one I need - 45w, 60w and 80w are listed - can someone tell me please? If I'm going to pay this price I want to make sure I get the right one!
    Also, is a genuine Apple one available on Amazon UK, does anyone know please?
    Any help will be much appreciated.
    Meanwhile my battery is going down.....

    Thanks for that wjosten. Much appreciated.
    I've read here on Apple's site that the 85W version will work, as you say, and that it would run cooler with a 13" Macbook - I have a 13" MBP of course but assume this would be the same with mine. I wonder if running cooler is a good thing (it sounds as if it is) and it would be better for me to get the 85W version than the 60W one?
    Then I have to decide whether to pay the (extortionate as it seems to me, though I may be wrong) £65 from Apple (bearing in mind the rotten reviews here of the Apple product), or risk a cheaper alternative from Amazon UK, at around £20 (also with various rotten reviews)... Any suggestions? Please? :-)

  • WCCP mask and weight?

    Hello
    We're setting up an scenario with datacenter with three WAEs using WCCP to distribute the load.
    The core switches are catalyst 6500 so we're using redirect in. L2 redirection and mask to optimize forwarding of redirected packet.
    the problem is that the three WAEs are not equal. Two are 612-2GB and the other is a 7341, so we want to use the weight parameter of the wccp tcp-promiscuous command, but I'm not sure if this parameter works also with the mask mode or only with hash mode. And couldn' t find a definitive answer in the documentation.
    It's possible?
    Regards, Fernando

    Fernando,
    Typically we don't see/ nor recommend using such different devices, especially in the data center.  The 7341 can handle up to 12000 concurrent optimized connections, and the 612-2GB can only handle up 4800 concurrent optimized connections.   So, in the event of a 7341 failure you will lose more than half of the connection capacity you data center can handle.
    However, you can use the weight keyword with mask assignment.  I just confirmed in my lab two WAEs connected to a 6500 with the following config:
    WAE 14.110.3.19
    wccp router-list 1 14.110.3.17
    wccp tcp-promiscuous mask src-ip-mask 0xf dst-ip-mask 0x0
    wccp tcp-promiscuous router-list-num 1 weight 90 l2-redirect mask-assign
    wccp version 2
    WAE 14.110.3.20
    wccp router-list 1 14.110.3.17
    wccp tcp-promiscuous mask src-ip-mask 0xf dst-ip-mask 0x0
    wccp tcp-promiscuous router-list-num 1 weight 10 l2-redirect mask-assign
    wccp version 2
    6500 output:
    pdi-6500#sh ip wccp 61 det
    WCCP Cache-Engine information:
    Web Cache ID:          14.110.3.20
    Protocol Version:      2.0
    State:                 Usable
    Redirection:           L2
    Packet Return:         GRE
    Packets Redirected:    0
    Connect Time:          00:00:45
    Assignment:            MASK
    Mask  SrcAddr    DstAddr    SrcPort DstPort
    0000: 0x0000000F 0x00000000 0x0000  0x0000
    Value SrcAddr    DstAddr    SrcPort DstPort CE-IP
    0014: 0x0000000E 0x00000000 0x0000  0x0000  0x0E6E0314 (14.110.3.20)
    0015: 0x0000000F 0x00000000 0x0000  0x0000  0x0E6E0314 (14.110.3.20)
    Web Cache ID:          14.110.3.19
    Protocol Version:      2.0
    State:                 Usable
    Redirection:           L2
    Packet Return:         GRE
    Packets Redirected:    68
    Connect Time:          00:00:39
    Assignment:            MASK
    Mask  SrcAddr    DstAddr    SrcPort DstPort
    0000: 0x0000000F 0x00000000 0x0000  0x0000
    Value SrcAddr    DstAddr    SrcPort DstPort CE-IP
    0000: 0x00000000 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0001: 0x00000001 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0002: 0x00000002 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0003: 0x00000003 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0004: 0x00000004 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0005: 0x00000005 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0006: 0x00000006 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0007: 0x00000007 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0008: 0x00000008 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0009: 0x00000009 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0010: 0x0000000A 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0011: 0x0000000B 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0012: 0x0000000C 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    0013: 0x0000000D 0x00000000 0x0000  0x0000  0x0E6E0313 (14.110.3.19)
    So you will see the WAE with weight of 90 took 14 of the 16 available buckets.
    Sorry for the confusion on the original update.
    Regards,
    Mike Korenbaum
    Cisco WAAS PDI Help Desk
    http://www.cisco.com/go/pdihelpdesk

  • WCCP redirect on 4507 to ironport

    I am trying to setup WCCP on our 4507. For some reason I cannot get this to work! The config I have tried is below. I can't figure out what I'm doing wrong here!
    ip wccp web-cache group-list IRONPORT-GROUPLIST
    ip wccp source-interface GigabitEthernet2/24
    Interface Vlan160
    ip address 10.10.16.1 255.255.254.0
    ip wccp web-cache redirect out
    ip access-list IRONPORT-GROUPLIST
    permit ip any host 10.11.1.10 (10.11.1.10 is the ironport proxy IP address)
    On the ironport I setup web-cache under transparent redirection and provided the IP address I used to source from above (GigabitEthernet2/24). Here is the output I get on the 4507:
    10CSW-LAN1#sh ip wccp web-cache
    Global WCCP information:
        Router information:
            Router Identifier:                   10.11.1.9
            Configured source-interface:         GigabitEthernet2/24
            Protocol Version:                    2.0
        Service Identifier: web-cache
            Number of Service Group Clients:     1
            Number of Service Group Routers:     1
            Total Packets Redirected:            0
              Process:                           0
              CEF:                               0
              Platform:                          0
            Service mode:                        Open
            Service Access-list:                 -none-
            Total Packets Dropped Closed:        0
            Redirect access-list:                -none-
            Total Packets Denied Redirect:       0
            Total Packets Unassigned:            0
            Group access-list:                   IRONPORT_GROUPLIST
            Total Messages Denied to Group:      0
            Total Authentication failures:       0
            Total GRE Bypassed Packets Received: 0
              Process:                           0
              CEF:                               0
              Platform:                          0
    Here is the debug output:
    2w3d: WCCP-EVNT:Process: Start V2 (138)
    2w3d: WCCP-EVNT:Successfully opened UDP socket
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:router-id set (initialise) 0.0.0.0 => 10.11.1.9
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: allocate wc orig mask info (540 bytes)
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:1
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updated transmit interval to: 10000
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updated timer scaling factors to: 1 and 1
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updating group methods
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updating group timers
    2w3d: WCCP-EVNT:S0: no srvc grp mask data to validate
    2w3d: WCCP-EVNT:S0: created adjacency interest, 10.11.1.10
    2w3d: WCCP-EVNT:S0: nexthop update oce for wc 10.11.1.10, 0x0 -> 0x23C10CF0 IP adj out of GigabitEthernet2/24, addr 10.11.1.10 23C10C80
    2w3d: WCCP-EVNT:S0: track nexthop for wc 10.11.1.10 (OK)
    2w3d: %WCCP-5-SERVICEFOUND: Service web-cache acquired on WCCP client 10.11.1.10
    10CSW-LAN1(config)#
    2w3d: WCCP-PKT:S0: Received HIA from 10.11.1.10, rcv_id:1
    2w3d: WCCP-EVNT:S0: Building new router view
    2w3d: WCCP-EVNT:S0: deallocate rtr_view (24 bytes)
    2w3d: WCCP-EVNT:S0: allocate mask rtr_view (572 bytes)
    2w3d: WCCP-EVNT:S0: copy orig info (540 bytes)
    2w3d: WCCP-EVNT:S0: Assignment wait timer restarted, delay 50000
    2w3d: WCCP-EVNT:S0: Built new router view: 1 routers, 1 usable WCCP clients, change # 2
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:2
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: setting up wc mask assignments
    2w3d: WCCP-EVNT:S0: allocate current assign info (540 bytes)
    2w3d: WCCP-EVNT:S0: set wc current assign info (540 bytes)
    2w3d: WCCP-EVNT:S0: RA from 10.11.1.10 (id: 10.11.1.10), assignment key set to 10.11.1.10,3
    2w3d: WCCP-EVNT:S0: Building new router view
    2w3d: WCCP-EVNT:S0: reuse rtr_view (44 of 572 bytes)
    2w3d: WCCP-EVNT:S0: copy blank current info
    2w3d: WCCP-EVNT:S0: Assignment wait timer stopped
    2w3d: WCCP-EVNT:S0: Built new router view: 1 routers, 1 usable WCCP clients, change # 2
    2w3d: WCCP-PKT:S0: Received RA from 10.11.1.10, rcv_id:2
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:3
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:4
    10CSW-LAN1(config)#
    2w3d: %SEC-6-IPACCESSLOGP: list IRONPORT_GROUPLIST permitted udp 10.11.1.10(0) -> 10.11.1.9(0), 5 packets
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:5
    2w3d: WCCP-EVNT:Process: Start V2 (138)
    2w3d: WCCP-EVNT:Successfully opened UDP socket
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:router-id set (initialise) 0.0.0.0 => 10.11.1.9
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: allocate wc orig mask info (540 bytes)
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:1
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updated transmit interval to: 10000
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updated timer scaling factors to: 1 and 1
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updating group methods
    2w3d: WCCP-EVNT:S0: HIA from 10.11.1.10 updating group timers
    2w3d: WCCP-EVNT:S0: no srvc grp mask data to validate
    2w3d: WCCP-EVNT:S0: created adjacency interest, 10.11.1.10
    2w3d: WCCP-EVNT:S0: nexthop update oce for wc 10.11.1.10, 0x0 -> 0x23C10CF0 IP adj out of GigabitEthernet2/24, addr 10.11.1.10 23C10C80
    2w3d: WCCP-EVNT:S0: track nexthop for wc 10.11.1.10 (OK)
    2w3d: %WCCP-5-SERVICEFOUND: Service web-cache acquired on WCCP client 10.11.1.10
    10CSW-LAN1(config)#
    2w3d: WCCP-PKT:S0: Received HIA from 10.11.1.10, rcv_id:1
    2w3d: WCCP-EVNT:S0: Building new router view
    2w3d: WCCP-EVNT:S0: deallocate rtr_view (24 bytes)
    2w3d: WCCP-EVNT:S0: allocate mask rtr_view (572 bytes)
    2w3d: WCCP-EVNT:S0: copy orig info (540 bytes)
    2w3d: WCCP-EVNT:S0: Assignment wait timer restarted, delay 50000
    2w3d: WCCP-EVNT:S0: Built new router view: 1 routers, 1 usable WCCP clients, change # 2
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:2
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: setting up wc mask assignments
    2w3d: WCCP-EVNT:S0: allocate current assign info (540 bytes)
    2w3d: WCCP-EVNT:S0: set wc current assign info (540 bytes)
    2w3d: WCCP-EVNT:S0: RA from 10.11.1.10 (id: 10.11.1.10), assignment key set to 10.11.1.10,3
    2w3d: WCCP-EVNT:S0: Building new router view
    2w3d: WCCP-EVNT:S0: reuse rtr_view (44 of 572 bytes)
    2w3d: WCCP-EVNT:S0: copy blank current info
    2w3d: WCCP-EVNT:S0: Assignment wait timer stopped
    2w3d: WCCP-EVNT:S0: Built new router view: 1 routers, 1 usable WCCP clients, change # 2
    2w3d: WCCP-PKT:S0: Received RA from 10.11.1.10, rcv_id:2
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:3
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:4
    10CSW-LAN1(config)#
    2w3d: %SEC-6-IPACCESSLOGP: list IRONPORT_GROUPLIST permitted udp 10.11.1.10(0) -> 10.11.1.9(0), 5 packets
    10CSW-LAN1(config)#
    2w3d: WCCP-EVNT:S0: updating wc orig assign info
    2w3d: WCCP-EVNT:S0: reuse wc orig mask info (540 bytes)
    2w3d: WCCP-EVNT:S0: wc assignment validated
    2w3d: WCCP-PKT:S0: Sending ISY to 10.11.1.10, rcv_id:5

    I would recommend doing the following. Also feel free to call into the ironport support line. It is listed at the bottom of the page.
    Change the wccp service to service-number 90
    Try to redirect inbound traffic not outbound traffic.
    Set Load-balancing to mask
    Set forward method to L2
    Set return method to L2
    ip wccp 90 group-list IRONPORT-GROUPLIST  <- Set the wccp service-number
    ip wccp source-interface GigabitEthernet2/24
    Interface Vlan160
    ip address 10.10.16.1 255.255.254.0
    ip wccp 90 redirect out  <- Set the WCCP Service-number try to redirect inbound traffic
    ip access-list IRONPORT-GROUPLIST
    permit ip any host 10.11.1.10 (10.11.1.10 is the ironport proxy IP address)
    Below is an example of how you should setup your ironport for a customer service number. Place the port numbers that you want to redirect.
    Christian Rahl
    Customer Support Engineer                      
    Cisco IronPort - Web Security Appliances
    Cisco Technical Assistance Center RTP
    United States Ironport: 1-877-641-IRON (4766)

  • First USB port stops working after random time and won't work until I restart

    Hey guys
    I have this problem on my late 2011 Macbook Pro 13 inch,
    It's been for a year already and it really freaks me out and drive me crazy
    My first USB port next to the thunderbolt stops working after like 3 days, and it won't respond until I restart my computer or log off and log in again.
    If I restart my computer, USB stops working after 3 days and won't respond until I restart
    If I log off it works for like a couple of hours and then stops again
    I have tried EVERYTHING, SMC reset - no luck, PRAM reset - same results, Upgraded to lion same results, Upgraded to mountain lion - SAME RESULT
    And I can't take it to an apple store because I'm not from the US
    I am 100% sure this is a software problem and I've seen here that many people have faced this problem
    Please help, it really freaks me out

    ElectroSpyzz wrote:
    Hey guys
    I have this problem on my late 2011 Macbook Pro 13 inch,
    It's been for a year already and it really freaks me out and drive me crazy
    My first USB port next to the thunderbolt stops working after like 3 days, and it won't respond until I restart my computer or log off and log in again.
    If I restart my computer, USB stops working after 3 days and won't respond until I restart
    If I log off it works for like a couple of hours and then stops again...
    I'm sure this isn't what you want to hear but unless you really are using your laptop 24 hours a day, is there any reason why you don't just shut it down and reboot when you're ready to use it again? I have to wonder how many other MacBook Pro owners potentially have the same problem but when they quit computing for the day, their computers quit too.

  • ASR1002 throughput degradation when wccp redirect-list is changed

    We have two ASR 1002's going to 2 different WAN service providers, and two 7371 WAE load balanced by mask assignment. When we change the ACL (adding or removing lines) from our wccp redirect-list, the throughput on interfaces applied to the wccp service-groups is degraded to almost no traffic passing, until we completely remove wccp service group from the global configuration and then reapply. Then traffic throughput on the interface goes back to normal.
    Our ACL defined in the redirect list specifies our specific networks on our WAN that have WAE's and need the redirection. All other networks are denied implicitly. We need to regularly change this ACL, and this service interruption is a major issue. This was not an issue before moving to the ASR platform from 7206's.
    At TAC's request we have upgraded our IOS version to 15.1(3)S4 and that did not make any difference. Does anyone know why this occurs and if there is a way to work around this other than removing wccp configuration and adding back, every time the ACL needs to be modified?
    As a side note to this... We have recently added riverbed appliances, and created separate service groups with separate redirect-lists. The exact same behavior occurs on the ASR 1002 when the ACL for the riverbed's redirect list is altered.

    Thank you very much for sharing that information.  It is great to hear verification that the mask assignment change did resolve your problem.   That is the latest resolution that TAC has recommended, but we have to restart the WCCP service on all redundant edge routers to be able to implement this, so planning the outage window is taking some time.   We've been told that TAC will set this up in a lab and test for us by our Cisco SE.  We're hoping to get verfication that this actually resolves the problem before we take the outage.   
         If you could, can you tell me if this resolved the issue 100% or do you still have any performance issues when making a change to your WCCP ACL going to your bluecoat equipment?    We may also need to implement this in our redirects to BlueCoat from our Nexus.  Do you happen to have a link to how to make this change in Bluecoat?   Thanks again!

  • We are moving to France and wonder if we can take our Apple products and just trade out cords?

    I may have the option of taking my work computer, an iMac, but wonder if it will work okay. We have taken our laptops for visits and used plug adaptors. Is this okay for the longterm?
    Thanks

    You do not say where you are moving from but you should not have a problem as the iMac power supply is universal.  You can either use a plug adaptor for the French sockets or buy suitable power cords.

  • WCCP Redirection on a GRE Tunnel

    For some of our smaller branch offices we run GRE tunnels through a secured IPSec VPN connection over the Internet. Will WCCP redirect work if configured on the GRE Tunnel interface?

    Hi,
    Yes, it will work.
    Regards,
    Erik
    Sent from Cisco Technical Support iPad App

Maybe you are looking for