Does Event Manager 1.4.4 work in FCPX 10.1 (& 10.0.9)?

Hi
Does Event Manager 1.4.4 work in FCPX 10.1 (& 10.0.9)?
Otherwise, what are folks doing not to be overloaded with events and projects when using FCPX?

Ian!
Looks great. I'll consider it.
I've got a bunch to think about before creating the libraries.
I'm thinking I almost would prefer not to create libraries since I often use some media from old projects in new projects and don't want to be copying from one library to another.
I probably should post questions about that possibility separately, don't want to gush.
best to you, Ian,
elmer

Similar Messages

  • Does VZAccess Manager (Verizon's EVDO) work with a MacBook?

    I just bought a MacBook (which has no PC card slot), and would like to
    use my EVDO service from Verizon Wireless. EVDO is a service from Verizon
    Wirless, which uses the cell phone network to access the Internet at approximately 10 times the speed of a dial-up connection. I loaded a Mac
    version of the software, but I don't think it recognized my internal Airport card.
    When I bought the EVDO card from Verizion Wireless, the salesperson said
    it will run on a Mac, but they have to record the serial number from the
    Airport card (I think).
    Has anyone used this on a Mac?
    Thanks,
    Paul

    Verizon DO have a EVDO ExpressCard solution.
    At this time they are the only cellular provider offering an ExpressCard solution that works with Mac OS X.
    Sprint have a card coming, but it's not yet available (or at least wasn't available last time I checked).
    They're basically the same card, manufactured by Sierra Wireless, IIRC, so there's no reason why it wouldn't work with either provider. However, Verizon are far more Mac-aware than Sprint are (which isn't actually saying a lot).
    At least with the PCCard solution, Sprint requires the use of a Windows PC to activate the card. Once activated it works fine in a Mac even though their staff will tell you that it can't be used in any machine other than the one that activated it (I even had to show their tech support person the page on their own support site that talked about Mac OS X compatibility).
    I've used PCCard solutions from all the major cellular networks. If it wasn't for Sprint's brain-dead activation process they'd have the best system - their card utilizes the built-in Internet Connect to manage its connection, unlike all the others that use some special third-party application.
    Anyway, feel free to get the Verizon card. It works just fine and doesn't have the Windows requirement.

  • Event manager script not working as expected

    On a Cisco 4900M running Version 12.2(53)SG1, trying to capture certain information requested by Cisco TAC to troubleshoot periodic high cpu usage on the device causing it to momentarily not respond to HSRP packets from the HSRP partner.
    This is the script in place today:
    event manager applet capture_cpu_spike
    event snmp oid 1.3.6.1.4.1.9.2.1.56 get-type next entry-op ge entry-val "80" exit-time 10 poll-interval 1
    action 1.0 syslog msg "CPU Utilization is high"
    action 2.0 cli command "en"
    action 3.0 cli command "show proc cpu sort | redirect bootflash:cpuinfo1.txt"
    action 3.1 cli command "show int summ | redirect bootflash:cpuinfo2.txt"
    action 3.2 cli command "show proc cpu sort | redirect bootflash:cpuinfo3.txt"
    action 3.3 cli command "show int summ | redirect bootflash:cpuinfo4.txt"
    action 3.4 cli command "show platform cpu packet statistics | redirect bootflash:cpuinfo5.txt"
    action 3.5 cli command "show platform health | redirect bootflash:cpuinfo6.txt"
    action 4.0 cli command "end"
    Problem is, when the cpu does spike, only action 3.1 is executed.
    How do I modify this script to run all the commands listed?
    TIA
    dom

    Let me first explain why your script is not working for you.
    Basically, the problem you encounter is a result of a common misconception about copyin(). It is intended to be used to copy content of userspace memory into a scratch buffer so that it can be accessed directly from within kernel space (where the DTrace core executes). That said, it is often interpreted as somehow being equivalent to malloc() whereas in reality it actually works like alloca() instead. So, what you are seeing is basically the artefact of the scratch buffer being overwritten with other data. And unfortunately, that is perfectly legal.
    The content of the scratch buffer pointed to by self->addr in your script is only valid for as long as the specific probe enabling is executing (it is clause-local). So, your clauses to print out the actual bytes in the buffer are looking at a buffer that is for all intends and purposes no longer reserved, and therefore you are looking at it after other data was written to the scratch space.
    So... in order for this to work, you should do things a bit different. Rather than trying to get a copy of the buffer in one clause, and then read from it in following clauses, you can simply collect the buffer address in the entry read:entry clause, get the number of bytes read in the first read:return clause, and then for every clause in which you print 4 bytes do the following (example for bytes 4-7):
    syscall::read:return
    /execname == "foobar" && self->nbytes > 4/
    this->addr = (char *)copyin((uintptr_t)self->bufferaddr + 4, 4);
    printf(" 4- 7: %02x %02x %02x %02x\n", this->addr[0], this->addr[1], this->addr[2], this->addr[3]);
    So basically, for every clause that print 4 bytes you copyin those bytes, and then print them out.

  • Training and Event Management (PE) - What does PE stand for?

    Hi
    Re: Training and Event Management (PE)
    Can someone tell me what (PE) stands for?
    I have had a look at the documentation on SAP Help but cannot see what this stands for. 
    I want to use this in the naming convention in my role stategy but need to understand what this means.
    Does anyone know?
    Thanks
    Charnaine

    Hmmm... the plot thickens...
    Perhaps if we look into the context where this abbreviation is used, then it would give a hint.
    For example:
    "training evidence in PE" => Personnel Education
    "attendance recorded in PE" => Personnel Events
    "will result in PE" => Personnel Execution
    According to [PE-RPL|http://help.sap.com/erp2005_ehp_04/helpdata/EN/77/bff8ab4a2911d182b80000e829fbfe/frameset.htm] it is a bit of a mix of the first two.
    Cheers,
    Julius

  • As a end user how to work in a " Training & Event Management Module'"

    Dear Gurus,
    As a end user how to work in a " Training & Event Management Module'"
    Please advised
    Regards
    MHPO

    Dear MHP,
                     there are lots of things you can do as an end user in TEM.   You could create new events (not events types), book peoples, fix the date of the event, then create califications of the event (about the event or about the atendee).  Please, read sap help issues:  (in Training and Event Management)  day-to-day activities, Recurring Activities and Reporting.
    I hope this help you.
    Santiago

  • Why does Event.ENTER_FRAME cause this code to stop working? Is there a better alternative?

    I programmed the following code so that an array of buttons
    can be dragged across the screen when either on :
    var buttons:Array=[button1, button2, button3];
    for (var i:uint=0; i<buttons.length; i++)
    buttons[i].addEventListener(MouseEvent.CLICK, alignButtons )
    function alignButtons (e:Event)
         for (var i2:uint=0; i2<buttons.length; i2++)
          if(buttons[i2]!=e.target){buttons[i2].x=e.target.x;}
         for (var i3:uint=0; i3<buttons.length; i3++)
         buttons[i3].addEventListener(MouseEvent.MOUSE_DOWN, buttonDrag);
         function buttonDrag (e:Event)
        e.target.startDrag();
        e.target.addEventListener(MouseEvent.MOUSE_UP, buttonDrop);
        function buttonDrop(e:Event)
              e.target.stopDrag();    
    It works pretty much how I'd like it to work, except for the fact that I have to click the mouse to update the screen. However, when I change the first event listener from "MouseEvent.CLICK" to "Event.ENTER_FRAME" the code goes haywire. Is there another event listener I should be using here?

    Due to what appears to be an incomplete set of curly braces, it is hard to tell how much nesting you have there, but there should be none.  Each listener and event handler function should be able to stand on its own.  You should not have to put any functions inside a loop.
    Having the CLICK event listener is redundant if you have a MOUSE_DOWN and a MOUSE_UP because a MOUSE_DOWN followed by a MOUSE_UP is a CLICK. 
    If your goal is to have the buttons all follow each other around x-wise, then what you can do is assign a MOUSE_MOVE event listener at the same time you execute the startDrag and use its event handler for adjust button positions.  When you stopDrag, you also remove the MOUSE_MOVE listener.
    As far as why things go haywire when you change to using an ENTER_FRAME, you should show the code when it is in that form so that whatever error is evident.

  • Training Need - TN in Training and Event Management

    Hi
    Did any one worked on Training Need (TN) in Training and event management? I have the below question.
    For France there is a legal requirement to capture some 1.6 % of the employee annual gross salary towards training cost.  So where to record the training cost of the employee in Training and event management and is there any link with payroll. 
    Logically it sounds as it does.  but where and how is it connected with payroll.
    Please revert if you know the solution.
    Brs
    Kenu.

    Hi
    In Table V_T77TNM_DC
    We need to have the below entries
    TNM                                              CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       HRTNM00_REPMOD        CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       MP168400                       CL_HRBAS_INFTY_1684_GUI_FR
    TNM       RPCTNM9S_REP            CL_HRTNM_INFTY_1036_GUI_FR
    Regards
    Kenu

  • Training and Event Management booking date

    Hi,
    I am working on Training and Event Management cube 0PE_C01. One of the requirements of a query is to show the booking date of the course.
    I have looked in business content for other cubes i have checked info object and 0event, i have also checked datasource 0HR_PE_1 but I can not find anywhere this information is being extracted into BW.
    Does anyone know how if this info is available or would i have to ammend the datasource to bring this info in.
    Thanks
    Forhad

    any ideas anyone.. or am i left with appending the datasource for booking date

  • TRAINING AND EVENT MANAGEMENT - ERROR

    Dear SAP Experts,
    I am working on the module TRAINING AND EVENT MANAGEMENT.
    While using transaction PSV2 - DYNAMIC BUSINESS EVENT MENU, when i click on BUSINESS EVENT TYPE in that create W/O RESOURCES, I get an error.
    PLANNING PERIOD IS NOT IN BUSINESS EVENT TYPE INTERVAL.
    Can you please guide me in this.
    Please tell me where i am going wrong
    Thanks in advance.
    Regards
    Aniruddha

    Hi all,
    PLANNING PERIOD IS NOT IN BUSINESS EVENT TYPE INTERVAL (on LSO_PSV2)
    I have the same error ...
    Does anyone know?
    thanks in advance, Sony

  • Issue with recent "iPhoto Videos" not showing up in "Event Manager"

    It has been awhile since I used iMovie '11 on my MacBook Pro with Retina Display.  I believe the last time I used it was in September or October of last year (2012) as most of my editing I have been doing on the iMovie iOS app as it has been sufficient for the majority of my needs.  I was running low on storage on my iPhone this past weekend and so transferred off all my videos to iPhoto. 
    I had need to edit some of the clips I transferred off and imported in iPhoto yesterday and so went to iMovie on the Mac to do so.  It had to process the new files and then it upgraded the thumbnails to high resolution images and it was then I noticed that it did not recognize any movies after September of 2012 in the "iPhoto Videos" section of the "Event Manager."  I was able to go into iPhoto and locate the more current videos to insure they were there and that they worked (I was worried at first they did not transfer off and just deleted or were corrupt in some manner).  I have tried restarting iMovie, rebooting the Mac, etc. and nothing seems to work.  Oddly enough, I can manually import the iPhoto files and iMovie finds them that way and they do work when manually imported.  For whatever reason they just do not appear in the "iPhoto Videos" section of the "Event Manager."  I am hoping someone here has an idea on why the Mac seemingly decided to stop recognizing videos after a certain date (September 2012 as is the case here) and how I can go about resolving the issue.

    calbe wrote:
    Hi Folks,
    Your iPhoto access in other programs such as iMovie depend on ~/library/preferences/com.apple.iApps.plist. Whenever you add new videos to iPhoto and close iPhoto, this file gets updated. If corrupted, pull the plist, open iPhoto and a new movie and then quit. See if iMovie picks it up.
    As long as you have the latest dot release, I believe you should be fine in compatibility.
    Calbe
    I had this problem and this fixed it. The problem started for me right after I upgraded iPhoto 9.4.1 to 9.4.2. I had to quit both apps, remove the plist file, launch iPhoto, then quit iPhoto, then launch iMovie... then iMovie asked about thumnails for videos and the iPhoto videos were back in iMovie.

  • Problem with Embedded Event Manager and Object Tracking

    Hi,
    I have a 2801 running c2801-advipservicesk9-mz.124-24.T2.bin. It has the following configuration:
    track 300 list boolean or
    object 10
    object 11
    object 12
    object 13
    event manager applet clear_ipsec_tunnel
    event track 300 state down
    action 1.0 cli command "enable"
    action 2.0 cli command "clear crypto session"
    action 3.0 syslog msg "IPSec tunnel has been cleared by clear_ipsec_tunnel applet"
    My problem is that after the tracked object number 300 transitions from an up state to a down state, nothing happens. It seems like the applet doesn't work with object tracking. Here's what I see in logs:
    Dec  7 21:52:32.236 MCK: %TRACKING-5-STATE: 12 ip sla 12 reachability Up->Down
    Dec  7 21:52:37.236 MCK: %TRACKING-5-STATE: 13 ip sla 13 reachability Up->Down
    Dec  7 21:52:57.236 MCK: %TRACKING-5-STATE: 10 ip sla 10 reachability Up->Down
    Dec  7 21:53:07.236 MCK: %TRACKING-5-STATE: 11 ip sla 11 reachability Up->Down
    Dec  7 21:53:07.996 MCK: %TRACKING-5-STATE: 300 list boolean or Up->Down
    That's it. For some reason, the applet won't execute the CLI commands when the EEM applet is triggered. Am I doing something wrong or I have encountered some bug? Thanks.

    jclarke,
    Today I added the router into the tacacs server database and the applet started working just fine by using my login name. So the working configuration looks like this:
    event manager session cli username "my login name"
    event manager applet clear_ipsec_tunnel
    event track 300 state down maxrun 30
    action 1.0 cli command "enable"
    action 2.0 cli command "clear crypto session"
    action 3.0 syslog msg "IPSec tunnel has been cleared by clear_ipsec_tunnel applet"
    Then I tried to use a login name from the local database that has "privelege 15" access and of course the debug output showed me this:
    Dec  8 18:12:58.203 MCK: %TRACKING-5-STATE: 300 list boolean or Up->Down
    Dec  8 18:12:58.203 MCK: fh_track_object_changed: Track notification 300 state down
    Dec  8 18:12:58.203 MCK: fh_fd_track_event_match: track ED pubinfo enqueue rc = 0
    Dec  8 18:12:58.215 MCK: fh_send_track_fd_msg: msg_type=64
    Dec  8 18:12:58.215 MCK: fh_send_track_fd_msg: sval=0
    Dec  8 18:12:58.219 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : CTL : cli_open called.
    Dec  8 18:12:58.227 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT : Router>
    Dec  8 18:12:58.227 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : IN  : Router>enable
    Dec  8 18:12:58.747 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT : Command authorization failed.
    Dec  8 18:12:58.747 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT :
    Dec  8 18:12:58.747 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT : Router>
    Dec  8 18:12:58.747 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : IN  : Router>clear crypto session
    Dec  8 18:12:58.771 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT :                                  ^
    Dec  8 18:12:58.771 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT : % Invalid input detected at '^' marker.
    Dec  8 18:12:58.771 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT :
    Dec  8 18:12:58.771 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : OUT : Router>
    Dec  8 18:12:58.775 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel: IPSec tunnel has been cleared by clear_ipsec_tunnel  applet
    Dec  8 18:12:58.775 MCK: %HA_EM-6-LOG: clear_ipsec_tunnel : DEBUG(cli_lib) : : CTL : cli_close called.
    So I guess this problem arises when you have command authorization enabled and the tacacs server is not reachable or something like that. I have tried to find a way to use the local database instead of using the aaa server but didn't succeed. Although I have found an interesting workaround. Here it is:
    Link: http://blog.ioshints.info/2007/05/command-authorization-fails-with-eem.html
    Workaround found after reading the "Executing IOS commands from Tcl shell" from the "Tclsh on Cisco IOS tutorial".
    On the above article it is mentionned that the ios_config command is executed inside the context of another VTY line (also found with the AAA debug). The workaround is to define the FIRST VTY line with "transport input none" to prevent ssh or telnet to grab it and to configure the aaa authorization without any command authorization for this line.
    Kind regards
    Christian Chautems
    Looks great, but I am not quite sure how to "configure the aaa authorization without any command authorization for this line".
    Anyway, jclarke thank you so much for taking your time to look into my problem and for your help.

  • Batch processing with Script Events Manager

    Hello all,
    I use the Script Events Manager to run a group of actions on a single file during the file open event.
    This workflow works well when dealing with a small quantity of files.
    Is there an efficient way to apply simultaneously a group of actions to folder of images?
    The PSCC Batch processor, Image Processor and Image Processor Pro only allow the use of one action at a time.
    I have try creating a combo action which includes a group of actions to run in the Batch Processor and Image Processor.
    When doing so I receive an error message from the Image processor and dialogs that from the Batch processor that suspend
    the program activity. I have had no luck with a combo droplet as well.  

    My system has 8 Gb of Ram and 4 processors. I doubt it's the system. I've had problems with CS Master Collection since day one. My main complaint is the ******* tabs and interface. Everything is so chunky. CS2 was smooth as butter. They keep making their products use more RAM and it's ridiculous. The tabs don't help, they only make life harder.
    Thanks for the suggestions, I was hoping not to have to reinstall PS, but looks like it's the only option.

  • FCPX & Event Manager problem

    I trashed Event Manager as I don't need it with the FCPX upgrade to libraries. After trashing it, FCPX won't open.  What now? This is what I see.

    That shows 10.1 and the latest update is to 10.1.1
    Have you updated to that?
    If not, do so and see how it goes.
    You could also try trashing the preferences for a start.
    Assuming that does not do the trick we will need far more info about exactly what you did.
    Corrupt preferences can create a vast range of different symptoms, so whenever FCP X stops working properly in any way, trashing the preferences should be the first thing you do using this free app.
    http://www.digitalrebellion.com/prefman/
    Shut down FCP X, open PreferenceManager and in the window that appears:-
    1. Ensure that only  FCP X  is selected.
    2. Click Trash
    The job is done instantly and you can re-open FCP X.

  • Correspondence, Traning and Event Management.

    Hello,
    i need to know if someone has configured the correspondence in Traning and event management with the help wizard?
    through the menu IMG <b>Traning And Event Managenment -- Day-to-Day Activities -- Correspondence -- wizards</b>.
    I tried to do that, i've followed the assistance's steps and i've configured the process to send the outgoing message as an e-mail,
    but when i try to simulate a participant's inscription to an event, the process dont send the confirmation's message (e-mail),
    and the participant obviously dont get the mail in his/her inbox. 
    Anyone knows how is the best way to configure the correspondence? or
    is there anything else that i need activate when i do the configuration part, that allows the process to send the confirmation's message?
    Regards,
    Hector

    The Wizard does all the entries, you can follow up in the next menu items if you want to check what values each tables have.
    If you are able to book the course and no notification is generated then you should try to see if manual output is working, then it could be the problem with just the email.
    For email, the employees email should be maintained in IT0105 subtype 0010. The user id who is doing the booking should have an email id assigned to its user profile so that the system has some reference of sender;s email.
    Another place to look is two more steps down the wizard in IMG to see if all the fields that are declared mandatory has been maintained in your notification.
    Hope this helps

  • EEM event manager applet problem

    I'm trying to create an EEM applet to log the output of a command to file every 5 minutes. The idea is to get a traffic baseline for implementing control plane policing but I want statistics from at least a whole week (not just while I'm at work). I have a 6506-E running 12.2(18)SXF17a for WLSM (WS-SVC-WLAN-1-K9) support. Initially I was trying to save the file to tftp but it turns out one cannot "| append" to a file on a tftp server. I thought about trying to increment the file name with a counter but instead I opted for this:
    event manager applet controlplanelog
    event timer cron name controlplanelog cron-entry "0/5 * * * *"
    action 1.0 cli command "enable"
    action 1.1 cli command "show policy-map control-plane | append disk1:log.txt"
    This didn't seem to work because the contents of the file "disk1:log.txt" didn't change over the course of my lunch time. I thought I had the timer messed up so I changed the entry "0/5 * * * *" to "0,5,10,15,20,25,30,35,40,45,50,55 * * * *". That didn't work either so I changed the event to none and ran it manually using "event manager run" and still, the file "disk1:log.txt" contents did not change.
    Am I trying to execute an unsupported command or is this an error or am I just doing it wrong? Any help would be appreciated.

    That is wierd. I must have typed it in wrong somewhere....
    I had already removed all eem commands since I used the numbers from the other 6500 log file. When I added them back in with the command changed to "show version" the text file was modified as expected. Even before checking the file, I noticed a difference because I had debugging on per your previous suggestion and these lines showed up in addition to the lines which previously showed up.
    545685: Sep 10 15:41:24.674 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    545686: Sep 10 15:41:24.674 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT : 6506#
    545687: Sep 10 15:41:24.674 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : IN  : 6506#exit
    545688: Sep 10 15:41:24.674 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : CTL : cli_close called.
    At this point I reverted to the original command and it now works as expected.
    For the sake of progeny, here is the debugging when not appending to a file.
    545990: Sep 10 15:50:27.016 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : CTL : cli_open called.
    545991: Sep 10 15:50:27.120 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    545992: Sep 10 15:50:27.120 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT : 6506>
    545993: Sep 10 15:50:27.120 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : IN  : 6506>enable
    545994: Sep 10 15:50:27.132 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    545995: Sep 10 15:50:27.132 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT : 6506#
    545996: Sep 10 15:50:27.132 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : IN  : 6506#show policy-map control-plane
    545997: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    545998: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :  Control Plane Interface
    545999: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    546000: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :   Service-policy input: copp-policy
    546001: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :
    546002: Sep 10 15:50:27.144 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : OUT :   Hardware Counters:(ouput omitted)546017: Sep 10 15:50:27.148 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : CTL : 20+ lines read from cli, debug output truncated
    546018: Sep 10 15:50:27.148 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : IN  : 6506#exit
    546019: Sep 10 15:50:27.148 KST: %HA_EM-6-LOG: controlplanelog : DEBUG(cli_lib) : : CTL : cli_close called.
    On a side note I have been pondering something unrelated to my original question but maybe you know the answer to that too. If I have NTP restricted by an access list using the "ntp access-group peer" and "ntp access-group serve" commands as well as through control plane policing, which list is processed first: Do the "ntp access-group" commands keep packets from entering the control plane that don't match the list or do they hit the control plane before being dropped by the access-list?

Maybe you are looking for

  • Not able to see recorded videos on Nokia 8mp 86

    Not able to see recorded vidoes on nokia phone 8 mp 86. Wherea as i can see them on picass or adobe . Tried all settings. Kinldy help out. Regards Pallavi

  • XML Report is generating xml output instead of pdf output

    Hi All, I have created a report using BI publisher.When I am runnng the report it is showing xml output instaead of pdf format...The report is getting completed with a warning message.I am able to see other reports (XML) outputs in pdf format.But thi

  • How to draw circle if I have two points info and radius of the circle?

    Hi, I am trying to draw circle. Inputs I have is 1. Two points of the circle and 2. Radius of the circle. Please let me know if u have solution using Shape, Graphics2D apis. Thanks in advance.. Cheers, Somasekhar

  • Why Are My Text Align Buttons Grayed Out?

    My users are unable to center text when edited pages in CS3 and CS4. The standard paragraph alignment buttons are grayed out. All the users of my site have Admin role, and I have set up the role to allow unrestricted editing. And "Allow Users to Appl

  • Windows 8 slow on MBP Retina 15

    i just got MBP retina 15 and installed windiws 7 pro on it via bootcamp and win was running smoothly. I then upgraded to windiws 8 pro and it stucks/freezes frequently like if i make a new folder or sometimes oopen ny location like c drive or my docu