Ssh fails with rule matching LAN

My goal is simple: use a key pair from the WAN only but allow password auth from the LAN.
I thought my recipe had previously worked in Arch and other distros, but now I'm unsure. Here's a snippet of some relevant sections of /etc/ssh/sshd_config:
RSAAuthentication yes
PubkeyAuthentication yes
PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM yes
Match Address 192.168.1.0/24
PasswordAuthentication yes
Without the match section I'm able to login. With the match section I am not able to login from WAN or LAN hosts.
Here's an excerpt from the ssh client logging in from the localmachine itself along with a tail of the journal (using the match address section):
CLIENT SIDE
myhost% ssh -v localhost
OpenSSH_6.4, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /home/myuser/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to localhost [::1] port 22.
debug1: Connection established.
debug1: identity file /home/myuser/.ssh/id_rsa type 1
debug1: identity file /home/myuser/.ssh/id_rsa-cert type -1
debug1: identity file /home/myuser/.ssh/id_dsa type -1
debug1: identity file /home/myuser/.ssh/id_dsa-cert type -1
debug1: identity file /home/myuser/.ssh/id_ecdsa type 3
debug1: identity file /home/myuser/.ssh/id_ecdsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.4
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.4
debug1: match: OpenSSH_6.4 pat OpenSSH*
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA <ommited pub>
debug1: Host 'localhost' is known and matches the ECDSA host key.
debug1: Found key in /home/myuser/.ssh/known_hosts:6
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/myuser/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /home/myuser/.ssh/id_dsa
debug1: Offering ECDSA public key: /home/myuser/.ssh/id_ecdsa
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).
SERVER SIDE
myhost% sudo journalctl -f --full
-- Logs begin at Sat 2013-06-29 11:25:32 EDT. --
Jan 07 13:09:18 myhost systemd[1]: Started SSH Key Generation.
Jan 07 13:09:18 myhost systemd[1]: Starting OpenSSH Daemon...
Jan 07 13:09:18 myhost systemd[1]: Started OpenSSH Daemon.
Jan 07 13:09:18 myhost sudo[20291]: pam_unix(sudo:session): session closed for user root
Jan 07 13:09:18 myhost sshd[20295]: Server listening on 0.0.0.0 port 22.
Jan 07 13:09:18 myhost sshd[20295]: Server listening on :: port 22.
Jan 07 13:09:23 myhost sshd[20296]: reverse mapping checking getaddrinfo for <omitted address> [<omitted address>] failed - POSSIBLE BREAK-IN ATTEMPT!
Jan 07 13:09:34 myhost sshd[20296]: error: Received disconnect from <omitted address>: 13: Unable to authenticate [preauth]
Jan 07 13:09:39 myhost sudo[20298]: myuser : TTY=pts/2 ; PWD=/home/myuser ; USER=root ; COMMAND=/usr/bin/journalctl -f --full
Jan 07 13:09:39 myhost sudo[20298]: pam_unix(sudo:session): session opened for user root by myuser(uid=0)
Jan 07 13:10:35 myhost sshd[20308]: Connection closed by ::1 [preauth]
Last edited by badhat (2014-01-08 14:36:10)

Yes, there are one or two fields which were note mapped and were removed. However, the records which got reconciled successfully have been done with the same field mapping.
UZ

Similar Messages

  • After-Delete Resource Action Fails with "the authenticity of host  ..." Err

    I created two Resource Actions (see below for format used). Both actions are being referenced in an Shell Script resource adapter (RA) that's used to create/delete a home directory on a Sun Solaris box. The RA also performs other setup/cleanup activities. The After-Create resource action call to ssh works. The After-Delete resource action call to ssh fails with the following error:
    com.waveset.util.WavesetException: Script failed waiting for "_,)#+
    (:" in response "The authenticity of host 'localhost (127.0.0.1)' can't be
    established. RSA key fingerprint is db:98:c4:cf:84:0a:f9:52:12:14:7...A key
    fingerprint is db:98:c4:cf:84:0a:f9:52:12:14:7e:74:23:f7:8f:df. Are you sure
    you want to continue connecting (yes/no)? " com.waveset.util.WavesetException:
    Script processor timed out with nothing to read and the following unprocessed
    text: "The authenticity of host 'localhost (127.0.0.1)' can't be established.
    RSA key fingerprint is db:98:c4:cf:84:0a:f9:52:12:14:7e:74:23:f7:8f:df. Are you sure you want to continue connecting (yes/no)? The authenticity of host 'localhost (127.0.0.1)' can't be established. RSA key fingerprint is db:98:c4:cf:84:0a:f9:52:12:14:7e:74:23:f7:8f:df. Are you sure you want to continue connecting (yes/no)? ".
    By the way, we are currently using Sun Identity Manager 7.0.
    Thanks in advance for your assistance.
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE ResourceAction PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <ResourceAction name='ResAction:myProj:Resource-After-Create'>
    <ResTypeAction restype='Shell Script' timeout='20000'>
    <act>
    #!/bin/csh
    echo "Account ID" >> /myProjFolder/.$WSUSER_accountId.txt
    echo $WSUSER_accountId >> /myProjFolder/.$WSUSER_accountId.txt
    ssh -l someuser localhost /myProjFolder/exe/someExecutable $WSUSER_accountId &
    exit 0
    </act>
    </ResTypeAction>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    </ResourceAction>
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE ResourceAction PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <ResourceAction name='ResAction:myProj:Resource-After-Delete'>
    <ResTypeAction restype='Shell Script' timeout='20000'>
    <act>
    #!/bin/csh
    echo "Account ID" >> /myProjFolder/.$WSUSER_accountId.txt
    echo $WSUSER_accountId >> /myProjFolder/.$WSUSER_accountId.txt
    ssh -l someuser localhost /myProjFolder/exe/someExecutable $WSUSER_accountId &
    exit 0
    </act>
    </ResTypeAction>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    </ResourceAction>

    You've probably already fixed it...
    Just log on in the console yourself, instead of IdM. After answering yes, key fingerprint will be added to the ~/.ssh/known_hosts, and IdM will be happy.
    Milan

  • Client installation fails with error: The client version 4.00.6487.2000 does not match the MP version 2.50.4253.3000. The client wil not be installed.

    Hello World,
    I have this remote server that used to be a sms 2003 secondary site server. We uninstalled the SMS role. And used the server as an SCCM remote distribution point. We also want to install an client agent on that server machine. But no mather how i try
    to install the client i always see the same error in ccmsetup.log:
    File download 100% complete (17847296 of 17847296 bytes). ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Download complete. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Successfully downloaded client files. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Searching for available transform ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Failed to find resource file 'client.mst' ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    No transform available for this locale. Installation will proceed with no transformation. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Updated security on object C:\WINDOWS\system32\ccmsetup\. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    An MP exists on this machine. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    The client version 4.00.6487.2000 does not match the MP version 2.50.4253.3000.  The client will not be installed. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    A Fallback Status Point has not been specified.  Message with STATEID='318' will not be sent. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Deleted file C:\WINDOWS\system32\ccmsetup\WindowsServer2003-KB923845-x86-ENU.exe.download ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    I think the installer finds some remenance of the old SMS_MP. When looking i found some remains in IIS . I tried to remove the remains but still have the same error when installing the client. I uninstalled IIS completly. Can someone tell me where the client
    installer looks for the MP version? Would it help if i installed an SCCM MP on that server and the uninstalled it (Upgrade the MP)?

    Hello Kent, i ran the ccmclean.exe from the SMS2003 Toolkit. It informed me that my system was cleaned. I ran the sccm client setup manualy and found this in the ccmsetup.log
    MSI PROPERTIES are SMSSITECODE=AUTO CCMHTTPPORT="80" CCMHTTPSPORT="443" INSTALL=ALL ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    IsFileMicrosoftTrusted Verified file 'C:\WINDOWS\system32\ccmsetup\{4CD82FBB-0AFC-4864-A089-15364DF5F14B}\client.msi' is MS signed. ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    Running installation package
      Package:     C:\WINDOWS\system32\ccmsetup\{4CD82FBB-0AFC-4864-A089-15364DF5F14B}\client.msi
      Log:         C:\WINDOWS\system32\ccmsetup\client.msi.log
      Properties:  SMSSITECODE=AUTO CCMHTTPPORT="80" CCMHTTPSPORT="443" INSTALL=ALL ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: INSTALL.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: WindowsFolder.8AE6A59B_5597_4D75_9BFD_7F566BF56500.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.98C5B086_7EB0_422A_B0A8_674010F525CD.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.4C5E03E8_F8E5_47CB_8FF4_E46FE34D35A6.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: System64Folder.597B26B2_B5D6_40FF_90DA_B8E672626B1D.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: System64Folder.541D9CA5_CE53_4DCE_903A_9B9E5A6EF2C6.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SmsCheckConfig.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SMSValidateClientInstallStamp.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: LaunchConditions. Evaluating launch conditions ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsDetectWindowsEmbeddedFBWF.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsCheckNewRemoteTools.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: AppSearch. Searching for installed applications ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CCPSearch. Searching for qualifying products ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: RMCCPSearch. Searching for qualifying products ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: ValidateProductID.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetInstallDir.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: BCDSetX64Dir.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetInstallDirFromCmdLine.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetPrimaryFolder.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: FindRelatedProducts. Searching for related applications ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsDetectInvalidOrderColocUpgrade.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: An older version of the SMS Management Point is installed. Please upgrade the Management Point before attempting to upgrade the client. ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    Installation failed with error code 1603 ccmsetup 8/18/2010 10:48:23 AM 3140 (0x0C44)
    Next retry in 120 minute(s)... ccmsetup 8/18/2010 10:48:23 AM 3140 (0x0C44)
    Their must be something remaining that ccmclean can't find or can' access so i ran ccmclean /mp. This did some stuff and told me the system was clean again. I reran the client setup.
    Guess what
    It worked !
    Thanxs Kent

  • When deploy multiple updates, some updates fail with Hash does not match expected

    If I deploy a few updates (less than 5) the deployment completes without any issues.  If I have a lot of updates,  most the updates install with no issues but some, and not always the same update, fails with an error in the CAS.log on the client
    that states "Hash does not match expected"  after several reties the update will download and install.
    What could be causing this?
    I have setup a new folder that is not on the root of the drive.  This has not help with this issue but is handy in organization. 
    Ashley
    County of San Bernardino
    Assessor\Recorder\Clerk
    Automated System Analyst

    It you don't do anything and the hash calculates and downloads correctly then I would look to a network error of packet corruption or something wrong with the DP.
    http://www.sccm-tools.com http://sms-hints-tricks.blogspot.com

  • Business Rule Design Transformer fails with ORA-00001

    I'm stuck with the Business Rule Design Transformer Utility of Headstart. After running this utility over one BR it is impossible to run it over other BR's because of violation of the unique constraint HST65.QMS_MSP_PK (table QMS_MESSAGE_PROPERTIES). The problem is that the utility tries to insert a record (message, specified in the Notes property of Designer) into QMS_MESSAGE_PROPERTIES with the code "ABI-10000", that was already created by running the utility for the first time.
    Exact error message: "Activity aborted with ORACLE internal errors.
    -1 ORA-00001: unique constraint (HST65.QMS_MSP_PK) violated"
    I'm using Designer 6i (6.5.52.1.0) and Headstart 6.5.1.3
    If someone has any clue about this I would be very grateful
    Cheers,
    Dimce

    Jan,
    The name of the business rule is already in the CONSTRAINT_NAME of the QMS_MESSAGE_PROPERTIES table.
    I already tested by deleting the records in the two tables, QMS_MESSAGE_PROPERTIES and QMS_MESSAGE_TEXT, and ran the utility, but it didn't help either. I can run the utility for one rule, but when I want to run it again at some later point, it fails with this error.
    But, I managed to create rule definitions using the HSU Create Business Rule Design Definition, rule by rule. I only had to add references in the business rule to the used module.
    Dimce

  • Cluster Setup Support Rules fails with Warnings

    Hi,
    I'm in the process of installing our ECC production server in a clustered environment on windows server 2008 with SQL server 2008 as our database.
    The MSCS cluster at the OS level has been configured successfully. When I start the SQL server installation as mentioned in the installation guide, the Setup Support Rules fails with following warnings.
    1. The setup support file prompts me to set the MSDTC service as a clustered one but it was not mentioned anywhere in the installation guide that the MSDTC service needs to be clustered. Do I need to cluster that service with seperate network ip address and cluster group ?
    2. The Network binding order issues a warning even though the adapters are set up in the right order as mentioned in the installation guide.
    3. Eventhough there is a internet connectivity available in the server, the "Microsoft .Net Application Security" check issues a warning.
    NB: As per the cluster validation report, the clustering at the OS level seems to be fine.
    Please provide me your valuable suggestions to rectify these warnings. Can I ignore these warnings and proceed with the installation of SQL Server ?
    Regards,
    Varadharajan M

    Hi,
    Microsoft Distributed Transaction Coordinator
    Is is user by older versions of Mssql database.
    From a SAP perspective you don't need this service.
    You can ignore setup request for this service.
    As per the reply, I understand that the MSDTC service is not mandatory to cluster in Windows Server 2008/MS SQL Server 2008. But when i try to install the SQL DB, the Set support rule ends up with warnings saying that the MSDTC service should be clustered. Can I ignore the warnings and proceed with the installation. Can anyone confirm this please ?
    Also please confirm whether we need to have the db cluster group in the DNS before initiating the SQL Server Set up.
    Regards,
    Varadharajan M

  • Xml disassembler failing with reason start element does not match end element

    Hi,
    I'am using a WCF-WSHttp adapter to send a very simple message to a WCF service from BizTalk. The service can return a response or throw a BusinessFault or a SystemFault.
    I get the responses and faults returned and captured most part of the time . But one in a hundred message fails with the below error when a BusinessFault or a SystemFault is thrown . They are SOAP faults
    There was a failure executing the response(receive) pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Source: "XML disassembler"
    Send Port: "xy.Integration.customapplication.CustomService" URI: "https://xyz.xyz.co.xy/CustomService/CustomService.svc" Reason: Start element
    'nz/Faults/201' does not match end element 'Reason'.
    Line 1, position 677.
    I use the below Xpath for the Inbound BizTalk Message Body
    /*[local-name()='Fault']/*[local-name()='Detail' or local-name()='detail']/* | /*[not(local-name()='Fault')]
    My node encoding is Xml.
    I have enabled the Service Trace on the Biztalk server to capture the incoming message and noticed that the messages are not broken .
    Beleive this is one of the item that Microsoft has fixed for BizTalk 2009 in CU 1. But I couldnt notice a similar one for BizTalk 2010
    http://support2.microsoft.com/kb/981422
    Any tips would be very much appreciated.
    Thanks
    Suresh

    Could you post the XML message where this error occurs here please?
    Because that error usually occurs when you receive invalid XML. 
    Glenn Colpaert - MCTS BizTalk Server - Blog : http://blog.codit.eu

  • Automatic Filing With Rules - Long

    This is a long post, sorry, but I think the details might be worthwhile for someone who might be like me and wants to automate their mail processing as much as possible. I do have a question below about how I might better configure some rules, and about whether I might be able to streamline my workflow.
    I spent all day yesterday and most of the day today reorganizing my mailboxes, rules, smart mailboxes, etc., to clean up all my mail. I have messages dating back to 1999, and since I basically just color coded everything with rules, rather than filing messages in mailboxes, my inbox and sent messages were starting to approach the 2GB limit. Some of the earlier messages came straight from Claris Emailer (talk about old school), and then through all versions of OS X Mail from 10.0 to the current 10.4.9. It's easy enough to move stuff from my inbox into a new mailbox, but not quite as much so for sent messages. It made searching more difficult, and it is still a manual process.
    Because I have so many messages (about 10,000 in total), I didn't want to have to manually go through everything to move them into separate organized mailboxes. So I created a whole new set of rules to make the filing as automatic as possible, and to keep it relatively automatic in the future. Of course rules can't catch everything, but doing as much as possible automatically, then letting me sort through what's left is certainly preferable. Unfortunately, it's taken so long to figure out because of Mail's completely inadequate rules for filtering and smart mailboxes. I poured through this forum looking for solutions to the various roadblocks I hit along the way, and I thank all of you who are very knowledgeable and have posted helpful replies to other people asking questions. Below is the best solution I've been able to come up with, and I'm certainly open to any suggestions to make the rules less risky and streamlined. I realize that AppleScript could probably make a lot of these things easier, or some of the shareware programs out there, but while I consider myself a very adept power user, I can't write scripts, and I prefer to keep add-ons to a minimum.
    The first change to my account settings and such was to enable the "Automatically CC myself" option. This is the only viable way I can find to process my sent messages without having to manually apply rules after the fact. I am aware of Andreas Amann's "Filter Sent Messages" AppleScript. I tried it out, but it was constantly choking on all my sent messages. I suppose it would work ok now that I have my sent mailboxes cleaned out, but I think I prefer the CC option because it assures that I have copies of all my sent messages at both my home and work computers. I also installed MailEnhancer to make sure that Mail's dock badge counts all unread messages in any mailbox, not just the Inbox. Now the fun stuff begins.
    First of all, I want to state that since my goal here is to stay away from the mailbox size limit (and also to speed up day-to-day use of Mail), smart mailboxes aren't really an option. I need my messages sorted to "real" mailboxes for their long-term storage. Also, simply dumping mail into yearly archives can be a big hassle too, because I have several projects/mailboxes/whatever that may not have a ton of messages and shouldn't really be split up arbitrarily by year. Thus, the main focus here is on rules. I have two primary e-mail accounts, home and work, that I check regularly from both locations. I have my home mail broken down into categories like bicycling notices, family, apartment landlord, photography side business, and streetcar/railroad website. I also set up mailboxes for miscellaneous stuff that doesn't fit into those categories. For work, I have several mailboxes for project specific correspondence, office-wide e-mails and announcements, office computers, our website, and again miscellaneous.
    Here's the other big paradigm shift. All these mailboxes contain both sent and received mail. This is especially valuable for the project work, because you can quickly look at the list of messages and follow the back-and-forth conversation. I originally started out having "sent" and "received" mailboxes for each project and other category that I've already listed, but when they're open it triples the size of the directory tree. Since there doesn't appear to be any way to make a mailbox/folder display all the messages contained inside its subfolders, I don't see much point in making a whole bunch of subfolders for that since I'd constantly have to open and close folders to get at anything. Also, with a more flat structure, I can quickly and easily see what unread messages are for what projects, and that also tells me if the rules are working well.
    So how do I differentiate sent versus received easily? The first rules I set up are to color the background of all messages that come into my home account. This would apply to all messages that come in to that account, whether it's one of my sent message CC's or not. The next rule catches the sent messages by looking to see if the account and the from address match. In that case it colors the message subject text, marks the message as read, and also flags it. Flagging is necessary to create smart mailboxes down the line that can differentiate between sent and received messages, since there's no facility for using the color of a message as a condition in a rule or smart mailbox. These two rules are repeated with different colors for my work account.
    Since none of the rules have moved any messages yet, further rules are free to process them. Basically I have one rule for each mailbox with various amounts of "any" criteria. For most situations it's pretty straightforward, but I have run into some difficulties with Mail's anemic rules. For example, for my family mailbox, I set a condition where "Sender is member of Group" "Family" that I set up in Address book. So far so good, but since I want this to grab sent messages to family as well, I need an "Any Recipient is member of Group" condition, which doesn't exist. The only way I can see to do this is to manually add all my family members' individual e-mail addresses as separate "any" conditions. That would make the rule look like this:
    If "any" of the following conditions are met:
    "Sender is member of Group" "Family"
    "Any Recipient" "Contains" "[email protected]"
    "Any Recipient" "Contains" "[email protected]"
    "Any Recipient" "Contains" "[email protected]"
    "Any Recipient" "Contains" "[email protected]"
    etc.
    Perform the following actions:
    "Move Message" to mailbox: "Family"
    Of course, what it SHOULD be is this:
    If "any" of the following conditions are met:
    "Sender is member of Group" "Family"
    "Any Recipient is member of Group" "Family"
    Perform the following actions:
    "Move Message" to mailbox: "Family"
    This one is tripping me up a bit, and I'm not sure how to use address book groups effectively for sent messages. This is also an issue for some of my work project e-mails, since conceivably I'd be sending messages to and receiving messages from the same group of people. For larger projects, my list could grow enough to where I can't add anymore conditions to the rule, which I know is a well-discussed bug (or lack of good coding anyway). Nevertheless, it seems that in order to capture a message with a specific e-mail address, I need to have two conditions for each address, one "from" and one "any recipient". That kinda stinks, and I'd like to find a better way to do it. Any ideas?
    Right now my last rules are to clean up any messages left over that the other rules didn't catch. It makes the color a bit darker and moves the messages to the appropriate "other" mailbox for that account. This ensures that my inbox is always empty. It also keeps my sent mailboxes cleaned out as well. Since I will get CC's of all my sent messages, I can just change my account preferences to delete sent messages after a day or a week.
    That's it for the heavy moving and lifting. With a few of my extra accounts that don't need any special filtering and moving around, I was able to accomplish this with about 30 rules. There's 2 rules per account at the top of the list to color and flag incoming and outgoing messages, and two rules per account at the bottom of the list to file any messages that don't meet the criteria for any of the other mailboxes. All the actual filing away into specific mailboxes happens in the rules in the middle of the list. What I really need to do though is figure out a way to simplify some of the conditions in those filing rules, like the family issue I mentioned above.
    I have set up a few smart mailboxes to display all my unread messages, recent received mail, recent sent mail, all recent mail, all received mail, all sent mail, and all mail. The "All Mail" mailbox's criteria are just that the message is not in one of my junk mail folders. This is my fail-safe, since even if something is mis-categorized or even unfiltered, I will still see it here. "All Sent Mail" collects all messages that are flagged. Flagging is the only way I can find to view just sent messages without having separate "sent" subfolders in all mailboxes. A benefit to doing it this way is that if I add or change any of my hard mailboxes, I don't have to edit the smart mailbox to keep it current. I can hid the flag column and it won't reappear by itself, so I don't have to see the flag. "All Received Mail" is the tricky one. As mentioned elsewhere on the forum, you can't set up a smart mailbox to get messages that are NOT in another smart mailbox. This rule needs to include all messages that are not in the "All Sent Mail" smart mailbox or any of my junk folders. I tried the trick at first where you pick "Message is in Mailbox" and then select your smart mailbox, then go back and change the criteria to "Message is not in Mailbox". When I'd close the rule though, the smart mailbox I chose in the pull-down menu would change to a different one, and the logic would fail. I got it to work by trashing my smart mailboxes .plist file and just remaking them. That did the trick. The rest of my smart mailboxes just add a time limit to their list of criteria to keep the list shorter, and the unread smart mailbox is self-explanatory.
    So what these smart mailboxes do is they let me see anything from just my unread messages to every single message I've ever sent or received in one window. They're all colored accurately and sortable by sent versus received. If I keep my "Recent Received Mail" mailbox as the active one, it looks just like my inbox did before I changed all this stuff around. The only difference is that this particular mailbox automatically displays only messages from the last 3 months, and I don't have to manually clean it up every so often. This makes opening mail itself and navigating recent messages quicker. In the end, I can still see the messages the same way I always have been, but since they're all stored in different hard mailboxes I'll be able to avoid the 2GB limit by keeping everything well categorized. Nevertheless, the logic required to make this all work is quite cumbersome, and I worry about it not working correctly down the road as Mail is updated. I'd appreciate any thoughts you all have on making this work better, and about my family rule problem.
    Thanks all

    > As to marking sent messages versus received, if you didn't do that,
    how would you be able to tell them apart easily?
    It’s the need to tell them apart that I don’t understand...
    You'd want to be able to tell them apart for the same reasons
    you'd want to tell anything apart.
    But I can already easily tell them apart without having to tag, colorize, or store them in separate mailboxes, so why waste an attribute of a message to store redundant information? It’d be better to reserve that attribute for storing information that cannot be made readily available by other means, e.g. subjective properties such as the importance of the message that you mention.
    One instance I can site is if someone asks "did you send me such-and-such?"
    In that case, I can, for example, type the first letters of the name or address of that person in the search box, then click All Mailboxes and To in the banner that appears between the toolbar and the message list. Mail shows me what I’m looking for without me having to leave the mailbox I was looking at nor wonder on which specific mailbox are those messages actually stored. Having all those messages tagged or colorized the same way would be useless or even distracting/annoying.
    Unless you have a specific mailbox for storing only the correspondence with that person AND you can easily locate and select that mailbox amongst all the other mailboxes, I don’t see how could it be more convenient looking through a mailbox where messages can be told apart based on whether they’re sent or received but not on who sent/received them...

  • Creating Open Directory Replica fails with Server Admin Error Value 1127

    Hallo,
    I have seen a lot of similar threads here and they were helpful up to a certain point, but in the end, they did not solve my problem.
    Currently, it comes down to this. The Server Admin Error message ist really meaningless and I could not find a single for the error value on the whole wide web. As such, I switched to the command line versions of the tools involved to geht more meaningful results. It worked. Specifically, creating a replica of an openldap master means using slapconfig.
    When executing
    slapconfig -createreplica master.ourdomain.com diradmin
    as root on the prospective replica machine, I get the following error message:
    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    That makes perfect sense to me, but how is it meant to work then?
    Executing slapconfig as admin tells me that this tool is to be executed as root. On the other hand, root login via ssh is not allowed in Mac OS X by default, which seems fine to me. I even changed /etc/sshd_config on the Open Directory Master machine to "PermitRootLogin yes". However, neither reloading ssh using launchctl nor restarting the whole server made this setting operational. Trying to login from command line as root still tells me:
    root login is not permitted to this machine via public key authentication.
    While this is the current state where I need help urgently, I changed some other things before. I tell about to exclude these issues as possible reason of failure. I got this message for quite a while:
    Replica Setup failed : This machine does not have a valid computer name
    I was sure, this machine meant the target machine, the open directory master, because the domain had changed there once before I had taken over responsibility as an admin in this environment. And in fact, changeip disguised an issue there. The command proposed by changeip to fix the situation did not seem appropriate because this machine is multihomed with a public and a private IP adress. Proper name resolution is available for both interfaces including reverse lookup. I dont like this setup, but it was the only way to get mail service running smoothly. Running changeip on the machine itself using these arguments
    changeip /LDAPv3/127.0.0.1 internalIP internalIP old.ours.com current.ours.com
    reported success in updating password server, open directory, both interfaces, hostconfig (which in fact did not change) and samba. It reported an issue with kadmin which is related to Kerberos (we dont use Kerberos yet).
    Changing the hostname of the server using changeip did not solve the issue. I then found the hint to check with scutil. This showed that the Hostname was not set on the prospective replica machine. (A question aside: in how many place is the hostname stored? The traditional /etc/hostname has gone, but seems to be replaces with several other configuration files and databases. I cant see this as an advantage). Setting the hostname using scutil worked fine. However, it did not solve the problem either. At least, slapconfig now started to complain about not being able to log in as root instead of failing from the start.
    I also checked all log files on bboth machines that might have to do with openldap, as there are /var/log/slapd.log, /var/log/system.log and /Library/Log/slapconfig.log. I also checked the log of th layer on top of openldap which is /Library/Log/DirectoryService.server.log. None of them revealed anything noticeable beside a lot of of entries that I have googled in the last few hours and which all dont seem to be associated with the problem in question.
    I will take a break now, but I have to fix this until tomorrow and I hope to get the ultimate hint from you, dear reader.
    Thanks and bye, Christian Völker

    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    Initial OD replication takes place via 'ssh'. If you have 'sshd' configured on the OD Master to authenticate with public keys then the OD replica will not be able to communicate with the OD Master via 'ssh'. You must configure the OD Master to use 'ssh' with password authentication and root login enabled.
    Demote the replica back to standalone. Stop any services that you may have running on the primary network interface. Then stop any services that you may have running on the secondary network interface. In the 'Network' System Prefpane remove the IP number from the secondary interface then deactivate the secondary network interface.
    Assign the private IP address and hostname that you wish to use for the replica to the primary network interface. Assign the 'public' IP number to the secondary interface. Check the DNS to see that the IP address and hostname for the primary network interface resolve both forward and reverse for the hostname of the replica that you have chosen. If it does not, fix your DNS before proceeding.
    In the 'Sharing' System Prefpane, change the name of the machine to the hostname (server.domain.tld) of the replica that you have chosen. Then use 'changeip -checkhostname' to see if the IP/hostname matches. Fix it if it doesn't.
    Then configure the /etc/sshd_config file on the OD master like this:
    \# Authentication:
    PermitRootLogin yes
    PasswordAuthentication yes
    PubkeyAuthentication no
    and the /etc/ssh_config file on the OD replica like this:
    PasswordAuthentication yes
    PubkeyAuthentication no
    Then from the OD replica as the 'root' user issue:
    slapconfig -createreplica <ODMasterIPorFQDN> <diradmin user>
    Make sure that the 'diradmin' user's password contains only alpha-numeric characters -no 'option-characters' or symbols, change it first if it does. Once the process completes, reactivate the secondary interface for the 'public' IP and check the configuration of services that will be using that IP, then start your other services. Secure the 'ssh' service on both machines to disable password authentication and 'root' logins.

  • Check_ntlm_password:  Authentication for user ['name'] - ['name'] FAILED with error NT_STATUS_LOGON_FAILURE

    Hi,
    We are running a Mountain Lion Server with Open Directory / LDAPv3, as far as I can tell.  My responsibility is to get my CentOS 6.3 box running Samba v. 3.5.10-125.el6 to authenticate users against the ML / OD box.  I can ssh to the CentOS box OK and I can get Guest access to the Samba share to go OK too.  Also, the OD passwords on the LDAP server are set to 'Open Directory' so I guess that means that they are encrypted and the Samba server is set to send encrypted passwords.  But when a user tries to properly authenticate using either say via a Mac client Finder [Command-K], or smbclient, the Samba server will generate this message:
    check_ntlm_password:  Authentication for user ['name'] -> ['name'] FAILED with error NT_STATUS_LOGON_FAILURE
    (I am blanking out the user name on purpose).
    Of course there is more to the story, but those are the basics.
    Here are the relevant parts of my smb.conf.  FWIW, the CentOS / Samba box is called Jupiter.
    Thank you,
    NickZ
    [smb.conf]
    [global]
              display charset = UTF-8
              realm = SATURN.MCLEAN.HARVARD.EDU
              netbios aliases = ANL
              server string = Welcome To The Jupiter Samba Server Version 3.5.10-125.el6
              interfaces = lo, em1
              security = SERVER
              update encrypted = Yes
              password server = saturn.mclean.harvard.edu
              smb passwd file = /var/lib/samba/private/secrets.tdb
              passdb backend = ldapsam:ldap://saturn.mclean.harvard.edu
              passwd program = /usr/bin/passwd %u
              unix password sync = Yes
              lanman auth = Yes
              client NTLMv2 auth = Yes
              client use spnego principal = Yes
              kerberos method = system keytab
              log level = 2
              syslog = 3
              log file = /var/log/samba/log.%m
              max log size = 50
              name resolve order = host lmhosts wins bcast
              server signing = auto
              preferred master = Auto
              ldap admin dn = uid=DirAdmin,cn=users,dc=saturn,dc=mclean,dc=harvard,dc=edu
              ldap group suffix = cn=groups
              ldap passwd sync = yes
              ldap suffix = dc=saturn,dc=mclean,dc=harvard,dc=edu
              ldap ssl = no
              ldap user suffix = cn=users
              usershare allow guests = Yes
              idmap backend = ldap:ldap://saturn.mclean.harvard.edu
              idmap uid = 10000-20000
              idmap gid = 30000-40000
              cups options = raw
    [homes]
              comment = Home Directories
              read only = No
    [printers]
              comment = All Printers
              path = /var/spool/samba
              printable = Yes
              browseable = No
    [anl]
              comment = Main ANL Share
              path = /anl
              read only = No
              guest ok = Yes
              hide dot files = No

    Turns out a printer driver installed on an XP (even W2K(?)) was (apparently?) flooding the OS X SMB server to the point of collapse. Uninstalling the "HP Tools" part of the driver cleared it up. The printer is an HP LJ1300. I had downloaded the full driver from HP.com. I don't know if any/all these conditions need to be matched, but: the printer was on the network using an HP print server JetDirect EX Plus, and the computer(s) in question were connecting directly to it (not via a print server). It's been too long ago, but there were always several errors in the System Log (Win XP Event Viewer) that correlated with the errors on the OS X server.
    Proud to say that since that day (10+ months ago) I've not seen it happen again. whew.

  • Ldapcompare command fails with ExternalEntry Exception: Can't get ext DN

    Hi All,
    I have integrated 11.1.1.6 OID with Active Directory 2008 and OAM 11.1.2
    I have configured synchronization profile using EM interface.
    Both domain rules and mapping rules look all good and status ok.
    Bootstrap of users from AD to OID worked fine.
    For password authentication, I have configured the plugin using ODSM interface.
    While running the ldapcompare command to invoke the plugin, it is failing with :
    [oracle1@training3 Middleware1]$ ldapcompare -h training3.subhajit.com -p 3060 -D "cn=orcladmin" -w welcome1 -b "[email protected],cn=users,dc=subhajit,dc=com" -a userPassword -v Welcome12345
    The value Welcome12345 is not contained in the attribute userPassword in DN [email protected],cn=users,dc=subhajit,dc=com.
    [oracle1@training3 Middleware1]$
    On enabling debug, the $ORACLE_INSTANCE/diagnostics/logs/OID/oid1/oidldap***.log shows the following error:
    BEGIN
    ConnID:816 mesgID:2 OpID:1 OpName:compare ConnIP:::ffff:192.168.137.130 ConnDN:cn=orcladmin
    SUCCESS * sgslpvm_getJvmEnv * Attach to JVM succeeded
    2013-03-25T01:13:32 * Server Java Plug-in * Entering oidexplg when_compare_replace
    2013-03-25T01:13:32 * Server Java Plug-in * Entering ExternalEntry with compare request
    2013-03-25T01:13:32 * Server Java Plug-in * ban: userpassword
    2013-03-25T01:13:32 * Server Java Plug-in * User DN: cn=sraj,cn=users,dc=subhajit,dc=com
    2013-03-25T01:13:32 * Server Java Plug-in * ExternalEntry Exception: java.lang.NullPointerException
    2013-03-25T01:13:32 * Server Java Plug-in * ExternalEntry Exception: Can't get ext DN
    2013-03-25T01:13:32 * Server Java Plug-in * when_compare_replace Exception: oracle.ldap.ospf.PluginException: Can't get ext DN
    2013-03-25T01:13:32 * SUCCESS * gslbpiWhenReplCompPlg * Successfully Executed Java Plug-in oidexplg.jar
    2013-03-25T01:13:32 * INFO * gslbpiWhenReplCompPlg * Operation Result Code returned from the when_compare_replace Java plug-in : 5
    END
    user DN in OID: [email protected],cn=users,dc=subhajit,dc=com
    I can see the orcladobject objectclass exist for the user sraj. Also the orclsouceobjectdn matches with that in AD. checked this using dsquery.
    Telnet to AD port 389 works from OID server
    I have checked on note 395186.1 and the error matches but all solution did not work.
    Any help will be appreciated to get the plugin working.
    Thanks
    Subhajit

    This issue is resolved now. I was using the wrong DN for the user while running the ldapcompare command.
    In the ldapcompare command, I changed -b "cn=Sudeep Raj,cn=users,dc=subhajit,dc=com" and then it worked fine.
    $ ldapcompare -h training3.subhajit.com -p 3060 -D "cn=orcladmin" -w **** -b "cn=Sudeep Raj,cn=users,dc=subhajit,dc=com" -a userPassword -v ******
    The value ***** is contained in the attribute userPassword in DN cn=Sudeep Raj,cn=users,dc=subhajit,dc=com.
    $
    Log file when plugin got invoked:
    BEGIN
    ConnID:7288 mesgID:2 OpID:1 OpName:compare ConnIP:::ffff:192.168.137.130 ConnDN:cn=orcladmin
    SUCCESS * sgslpvm_getJvmEnv * Attach to JVM succeeded
    2013-03-26T09:32:55 * Server Java Plug-in * Entering oidexplg when_compare_replace
    2013-03-26T09:32:55 * Server Java Plug-in * Entering ExternalEntry with compare request
    2013-03-26T09:32:55 * Server Java Plug-in * ban: userpassword
    2013-03-26T09:32:55 * Server Java Plug-in * User DN: cn=sudeep raj,cn=users,dc=subhajit,dc=com
    2013-03-26T09:32:55 * Server Java Plug-in * eDN: CN=Sudeep Raj,CN=Users,DC=subhajitpc,DC=com
    2013-03-26T09:32:55 * Server Java Plug-in * Entering ExternalConnectivity
    2013-03-26T09:32:55 * SUCCESS * gslbpiWhenReplCompPlg * Successfully Executed Java Plug-in oidexplg.jar
    2013-03-26T09:32:55 * INFO * gslbpiWhenReplCompPlg * Operation Result Code returned from the when_compare_replace Java plug-in : 6
    END
    Also ldapbind worked :
    [oracle1@training3 Middleware1]$ ldapbind -h training3.subhajit.com -p 3060 -D "cn=Sudeep Raj,cn=users,dc=subhajit,dc=com" -w "**********"
    bind successful
    Log file when plugin got invoked:
    BEGIN
    ConnID:7323 mesgID:1 OpID:0 OpName:bind ConnIP:::ffff:192.168.137.130 ConnDN:Anonymous
    SUCCESS * sgslpvm_getJvmEnv * Attach to JVM succeeded
    2013-03-26T09:37:11 * SUCCESS * gslsbbExecWhenReplacePlugin * Successfully Executed Java Plug-in oidexplg.jar
    2013-03-26T09:37:11 * INFO * gslsbbExecWhenReplacePlugin * Operation Result Code returned from the when_replace_bind Java plug-in : 0
    END

  • Asymmetric NAT rules matched for forward and reverse flows - NAT Issue

    Having a problem with a VPN site trying to communicate to a subnet off my ASA 5505.   The network is simple, VPN IPSEC remote site is 192.168.6.0/24 and I can ping and access hosts on 192.168.10.0/24 (called InfraNet).   I am now trying to allow communications between 192.168.6.0/24 (called FD_net) to 192.168.9.0/24 (called Inside)
    The Error:
    5          Nov 12 2012          13:52:50                    192.168.9.19                                        Asymmetric NAT rules matched for forward and reverse flows; Connection for icmp src outside:192.168.6.11 dst inside:192.168.9.19 (type 8, code 0) denied due to NAT reverse path failure
    I understand this is a NAT issue; but I not seeing the error and could use a second set of eyes.   Here's my current running configuration.
    : Saved
    ASA Version 8.3(2)
    hostname fw1
    domain-name xxxxxxxx.xxx
    enable password <removed>
    passwd <removed>
    names
    interface Vlan1
    description Town Internal Network
    nameif inside
    security-level 100
    ip address 192.168.9.1 255.255.255.0
    interface Vlan2
    description Public Internet
    nameif outside
    security-level 0
    ip address 173.xxx.xxx.xxx 255.255.255.248
    interface Vlan3
    description DMZ (CaTV)
    nameif dmz
    security-level 50
    ip address 192.168.2.1 255.255.255.0
    interface Vlan10
    description Infrastructure Network
    nameif InfraNet
    security-level 100
    ip address 192.168.10.1 255.255.255.0
    interface Vlan13
    description Guest Wireless
    nameif Wireless-Guest
    security-level 25
    ip address 192.168.1.1 255.255.255.0
    interface Vlan23
    nameif StateNet
    security-level 75
    ip address 10.63.198.2 255.255.255.0
    interface Vlan33
    description Police Subnet
    shutdown
    nameif PDNet
    security-level 90
    ip address 192.168.0.1 255.255.255.0
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    switchport trunk allowed vlan 1,5,10,13
    switchport trunk native vlan 1
    switchport mode trunk
    speed 100
    duplex full
    interface Ethernet0/2
    switchport access vlan 3
    interface Ethernet0/3
    interface Ethernet0/4
    switchport trunk allowed vlan 1,10,13
    switchport trunk native vlan 1
    switchport mode trunk
    interface Ethernet0/5
    switchport access vlan 23
    interface Ethernet0/6
    shutdown
    interface Ethernet0/7
    switchport trunk allowed vlan 1
    switchport trunk native vlan 1
    switchport mode trunk
    shutdown
    banner exec                     Access Restricted to Personnel Only
    banner login                     Access Restricted to Personnel Only
    ftp mode passive
    clock timezone EST -5
    clock summer-time EDT recurring
    dns server-group DefaultDNS
    domain-name xxxxxxx.xxx
    same-security-traffic permit inter-interface
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object service IMAPoverSSL
    service tcp destination eq 993
    description IMAP over SSL     
    object service POPoverSSL
    service tcp destination eq 995
    description POP3 over SSL     
    object service SMTPwTLS
    service tcp destination eq 465
    description SMTP with TLS     
    object network obj-192.168.9.20
    host 192.168.9.20
    object network obj-claggett-https
    host 192.168.9.20
    object network obj-claggett-imap4
    host 192.168.9.20
    object network obj-claggett-pop3
    host 192.168.9.20
    object network obj-claggett-smtp
    host 192.168.9.20
    object network obj-claggett-imapoverssl
    host 192.168.9.20
    object network obj-claggett-popoverssl
    host 192.168.9.20
    object network obj-claggett-smtpwTLS
    host 192.168.9.20
    object network obj-192.168.9.120
    host 192.168.9.120
    object network obj-192.168.9.119
    host 192.168.9.119
    object network obj-192.168.9.121
    host 192.168.9.121
    object network obj-wirelessnet
    subnet 192.168.1.0 255.255.255.0
    object network WirelessClients
    subnet 192.168.1.0 255.255.255.0
    object network obj-dmznetwork
    subnet 192.168.2.0 255.255.255.0
    object network FD_Firewall
    host 74.94.142.229
    object network FD_Net
    subnet 192.168.6.0 255.255.255.0
    object network NETWORK_OBJ_192.168.10.0_24
    subnet 192.168.10.0 255.255.255.0
    object network obj-TownHallNet
    subnet 192.168.9.0 255.255.255.0
    object network obj_InfraNet
    subnet 192.168.10.0 255.255.255.0
    object-group service EmailServices
    description Normal Email/Exchange Services
    service-object object IMAPoverSSL
    service-object object POPoverSSL
    service-object object SMTPwTLS
    service-object tcp destination eq https
    service-object tcp destination eq imap4
    service-object tcp destination eq pop3
    service-object tcp destination eq smtp
    object-group service DM_INLINE_SERVICE_1
    service-object object IMAPoverSSL
    service-object object POPoverSSL
    service-object object SMTPwTLS
    service-object tcp destination eq pop3
    service-object tcp destination eq https
    service-object tcp destination eq smtp
    object-group service DM_INLINE_SERVICE_2
    service-object object IMAPoverSSL
    service-object object POPoverSSL
    service-object object SMTPwTLS
    service-object tcp destination eq https
    service-object tcp destination eq pop3
    service-object tcp destination eq smtp
    object-group network obj_clerkpc
    description Clerk's PCs
    network-object object obj-192.168.9.119
    network-object object obj-192.168.9.120
    network-object object obj-192.168.9.121
    object-group network TownHall_Nets
    network-object 192.168.10.0 255.255.255.0
    network-object object obj-TownHallNet
    object-group network DM_INLINE_NETWORK_1
    network-object 192.168.10.0 255.255.255.0
    network-object 192.168.9.0 255.255.255.0
    access-list outside_access_in extended permit object-group DM_INLINE_SERVICE_2 any interface outside
    access-list outside_access_in extended permit object-group DM_INLINE_SERVICE_1 any host 192.168.9.20
    access-list StateNet_access_in extended permit ip object-group obj_clerkpc any
    access-list outside_2_cryptomap extended permit ip object-group DM_INLINE_NETWORK_1 object FD_Net
    pager lines 24
    logging enable
    logging asdm debugging
    logging mail errors
    logging from-address hostmaster@xxxxxxxxx
    logging recipient-address john@xxxxxxxxx level errors
    mtu inside 1500
    mtu outside 1500
    mtu dmz 1500
    mtu Wireless-Guest 1500
    mtu StateNet 1500
    mtu InfraNet 1500
    mtu PDNet 1500
    no failover
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-635.bin
    no asdm history enable
    arp timeout 14400
    nat (InfraNet,outside) source static TownHall_Nets TownHall_Nets destination static FD_Net FD_Net
    nat (inside,outside) source static TownHall_Nets TownHall_Nets destination static FD_Net FD_Net
    object network obj_any
    nat (inside,outside) static interface
    object network obj-claggett-https
    nat (inside,outside) static interface service tcp https https
    object network obj-claggett-imap4
    nat (inside,outside) static interface service tcp imap4 imap4
    object network obj-claggett-pop3
    nat (inside,outside) static interface service tcp pop3 pop3
    object network obj-claggett-smtp
    nat (inside,outside) static interface service tcp smtp smtp
    object network obj-claggett-imapoverssl
    nat (inside,outside) static interface service tcp 993 993
    object network obj-claggett-popoverssl
    nat (inside,outside) static interface service tcp 995 995
    object network obj-claggett-smtpwTLS
    nat (inside,outside) static interface service tcp 465 465
    object network obj-192.168.9.120
    nat (inside,StateNet) static 10.63.198.12
    object network obj-192.168.9.119
    nat (any,StateNet) static 10.63.198.10
    object network obj-192.168.9.121
    nat (any,StateNet) static 10.63.198.11
    object network obj-wirelessnet
    nat (Wireless-Guest,outside) static interface
    object network obj-dmznetwork
    nat (any,outside) static interface
    object network obj_InfraNet
    nat (InfraNet,outside) static interface
    access-group outside_access_in in interface outside
    access-group StateNet_access_in in interface StateNet
    route outside 0.0.0.0 0.0.0.0 173.166.117.190 1
    route StateNet 10.0.0.0 255.0.0.0 10.63.198.1 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    dynamic-access-policy-record DfltAccessPolicy
    http server enable 5443
    http 192.168.9.0 255.255.255.0 inside
    http 74.xxx.xxx.xxx 255.255.255.255 outside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto map outside_map 2 match address outside_2_cryptomap
    crypto map outside_map 2 set pfs
    crypto map outside_map 2 set peer 173.xxx.xxx.xxx
    crypto map outside_map 2 set transform-set ESP-3DES-SHA
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet 192.168.9.0 255.255.255.0 inside
    telnet timeout 5
    ssh 192.168.9.0 255.255.255.0 inside
    ssh timeout 5
    console timeout 0
    dhcpd dns 208.67.222.222 208.67.220.220
    dhcpd lease 10800
    dhcpd auto_config outside
    dhcpd address 192.168.2.100-192.168.2.254 dmz
    dhcpd dns 8.8.8.8 8.8.4.4 interface dmz
    dhcpd enable dmz
    dhcpd address 192.168.1.100-192.168.1.254 Wireless-Guest
    dhcpd enable Wireless-Guest
    threat-detection basic-threat
    threat-detection statistics host number-of-rate 2
    threat-detection statistics port
    threat-detection statistics protocol
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    ntp server 63.240.161.99 source outside prefer
    ntp server 207.171.30.106 source outside prefer
    ntp server 70.86.250.6 source outside prefer
    webvpn
    group-policy FDIPSECTunnel internal
    group-policy FDIPSECTunnel attributes
    vpn-idle-timeout none
    vpn-tunnel-protocol IPSec l2tp-ipsec
    username support password <removed> privilege 15
    tunnel-group 173.xxx.xxx.xxx type ipsec-l2l
    tunnel-group 173.xxx.xxx.xxx general-attributes
    default-group-policy FDIPSECTunnel
    tunnel-group 173.xxx.xxx.xxx ipsec-attributes
    pre-shared-key *****
    smtp-server 192.168.9.20
    prompt hostname context
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:e4dc3cef0de15123f11439822880a2c7
    : end
    Any ideas would be appreciated.
    John

    I don't see any inspection-commands in your config. Is there a reason for not using any of them?
    If your problem is only with ICMP, then you should enable at least icmp-inspection. You can do that easiely with the legacy command " fixup protocol icmp"
    Sent from Cisco Technical Support iPad App

  • Super Slow Internet Browsing with Airport or LAN and networking activities.

    The people at AppleCare are awesome and way polite. But I am a new Mac user and still in my 90 day apple care plan and have not been able to convince anyone that my internet connection on my MacBook is Super Slow. I have quantified it (350k - 550k download and 150k - 250k upload depending on my location), whereas at work right next to my older PC (which I am still using to go on line with since it is more like 3-5mb download) and my Desk Top PC and My Laptop PC are both more than three times faster for internet browsing and network transfers. The Airport on my MacBook seems to be faster than using the Ethernet cable (which I find weird), but they are both more than three times slower than my PC's no matter where I am working.
    Which brings me to my next issue, simply changing channels on the router is not the solution because while I can do that on my router at home or at my office. I can not walk into Starbucks or into the school library or my friends houses and ask them all to "fix" their routers for me. These MacBooks need to get fixed.
    This is frustrating and I am still waiting for a real solution.
    ~~Eddie Pankow~~ Please contact me: Eddie at Pankow3 dot net
    P.S. - I'm beginning to resent buying my MacBook Pro

    I can post the info you request below, but as I said before, my connection is not dropping, and the problem is not only with Airport. I have an old PC running a 56K modem at home that is faster than my MBP whether I am using Airport or if I connect through my LAN...
    Sep 21 13:31:25 EddieMac configd[34]: setting hostname to "EddieMac.local"
    Sep 21 13:31:26 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 13:31:26 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 13:31:26 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 13:31:26 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 13:31:26 EddieMac kernel[0]: en1: 802.11d country code set to 'X0'.
    Sep 21 13:31:26 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 13:31:26 EddieMac bootlog[74]: BOOT_TIME: 1222029054 0
    Sep 21 13:31:26 EddieMac rpc.statd[58]: statd.notify - no notifications needed
    Sep 21 13:31:27 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:27 EddieMac fseventsd[67]: bumping event counter to: 0x1516c82 (current 0x0) from log file '0000000001513f9f'
    Sep 21 13:31:28 EddieMac blued[75]: Apple Bluetooth daemon started.
    Sep 21 13:31:29 EddieMac /usr/sbin/ocspd[88]: starting
    Sep 21 13:31:29 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 13:31:29 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:29 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[62]: Login Window Application Started
    Sep 21 13:31:31 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 13:31:31 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 13:31:32 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 13:31:32 EddieMac configd[34]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 13:31:32 EddieMac configd[34]: DHCP en2: INIT transmit failed
    Sep 21 13:31:34 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 13:31:35 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: 2008-09-21 20:31:35.172 krb5kdc[93:10b] Error loading /System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle/Conten ts/MacOS/ODLocate: dlopen(/System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle /Contents/MacOS/ODLocate, 262): Library not loaded: /usr/lib/libxml2.2.dylib
    Sep 21 13:31:35 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Reason: image not found
    Sep 21 13:31:35 EddieMac krb5kdc[93]: Error loading /System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle/Conten ts/MacOS/ODLocate: dlopen(/System/Library/KerberosPlugins/KerberosFrameworkPlugins/ODLocate.bundle /Contents/MacOS/ODLocate, 262): Library not loaded: /usr/lib/libxml2.2.dylib\n Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation\n Reason: image not found
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: 2008-09-21 20:31:35.357 krb5kdc[93:10b] Error loading /System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Contents/M acOS/odpac: dlopen(/System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Con tents/MacOS/odpac, 262): Library not loaded: /usr/lib/libxml2.2.dylib
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Sep 21 13:31:35 EddieMac com.apple.kdcmond[64]: Reason: image not found
    Sep 21 13:31:36 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/share/icu/icudt36l.dat 13 (seatbelt)
    Sep 21 13:31:37: --- last message repeated 1 time ---
    Sep 21 13:31:35 EddieMac krb5kdc[93]: Error loading /System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Contents/M acOS/odpac: dlopen(/System/Library/KerberosPlugins/KerberosAuthDataPlugins/odpac.bundle/Con tents/MacOS/odpac, 262): Library not loaded: /usr/lib/libxml2.2.dylib\n Referenced from: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation\n Reason: image not found
    Sep 21 13:31:37 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/share/icu/icudt36l.dat 13 (seatbelt)
    Sep 21 13:31:37: --- last message repeated 2 times ---
    Sep 21 13:31:37 EddieMac kernel[0]: krb5kdc 93 FSREADDATA SBF /usr/lib/libxml2.2.dylib 13 (seatbelt)
    Sep 21 13:31:44: --- last message repeated 1 time ---
    Sep 21 13:31:44 EddieMac ntpdate[81]: can't find host time.apple.com
    Sep 21 13:31:44 EddieMac org.ntp.ntpd[55]: Error : nodename nor servname provided, or not known
    Sep 21 13:31:44 EddieMac ntpdate[81]: no servers can be used, exiting
    Sep 21 13:31:52 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 13:31:52 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 13:31:59 EddieMac loginwindow[62]: Login Window Started Security Agent
    Sep 21 13:32:04 EddieMac com.apple.dyld[12]: updatedyld_sharedcache: deleting old temp cache file: /var/db/dyld//dyldshared_cachei386.tmp1285
    Sep 21 13:32:04 EddieMac com.apple.dyld[12]: updatedyld_sharedcache[12] regenerated cache for arch=i386
    Sep 21 13:32:35 EddieMac authorizationhost[107]: MechanismInvoke 0x1d2a990 retainCount 2
    Sep 21 13:32:35 EddieMac SecurityAgent[108]: MechanismInvoke 0x5a01650 retainCount 1
    Sep 21 13:32:35 EddieMac SecurityAgent[108]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 13:32:36 EddieMac SecurityAgent[108]: MechanismDestroy 0x5a01650 retainCount 1
    Sep 21 13:32:36 EddieMac loginwindow[62]: Login Window - Returned from Security Agent
    Sep 21 13:32:36 EddieMac authorizationhost[107]: MechanismDestroy 0x1d2a990 retainCount 2
    Sep 21 13:32:36 EddieMac loginwindow[62]: USER_PROCESS: 62 console
    Sep 21 13:32:36 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[103]): Exited: Terminated
    Sep 21 13:32:36 EddieMac com.apple.launchctl.Aqua[180]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 13:32:39 EddieMac Dock[188]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 13:32:40 EddieMac /System/Library/CoreServices/coreservicesd[87]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 13:32:47 EddieMac com.apple.launchd[112] (0x101080.VersionCueCS3monitor): Failed to check-in!
    Sep 21 13:32:57 EddieMac com.apple.dyld[206]: updatedyld_sharedcache[206] current cache invalid because /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate has changed
    Sep 21 13:33:02 EddieMac hdiejectd[212]: running
    Sep 21 13:33:03 EddieMac KernelEventAgent[63]: tid 00000000 received unknown event (12)
    Sep 21 13:33:31 EddieMac com.apple.dyld[206]: updatedyld_sharedcache[206] regenerated cache for arch=ppc
    Sep 21 13:35:56 EddieMac /System/Library/PrivateFrameworks/ISSupport.framework/Resources/AOSHelper[227]: Folder Manager is being asked to create a folder (flnt) while running as uid 0
    Sep 21 13:36:53 EddieMac Software Update[266]: arguments=(null)
    Sep 21 13:37:09 EddieMac ntpd[55]: time reset +0.618692 s
    Sep 21 13:40:41 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 14:02:39 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 14:17:06 EddieMac authexec[326]: executing /System/Library/CoreServices/Software Update.app/Contents/Resources/suapphelper
    Sep 21 14:49:36 EddieMac /usr/libexec/hidd[66]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 17:59:46 EddieMac /usr/libexec/hidd[66]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 17:59:53 EddieMac loginwindow[62]: DEAD_PROCESS: 0 console
    Sep 21 17:59:54 EddieMac com.apple.launchd[112] (com.apple.pboard[190]): Exited: Terminated
    Sep 21 17:59:54 EddieMac com.apple.launchd[112] (com.apple.UserEventAgent-Aqua[186]): Exited: Terminated
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[625]: Login Window Application Started
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: SessionGetInfo(0x59a8b0) -> -2147417855
    Sep 21 17:59:54: --- last message repeated 1 time ---
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: FindBestLSSession(), SessionGetInfo() returned error -2147417855 for sessionID=5875888 or 0 uid=0 euid=88; cf <rdar://problem/5123589>
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: SessionGetInfo(0x59a8b0) -> -2147417855
    Sep 21 17:59:54: --- last message repeated 1 time ---
    Sep 21 17:59:54 EddieMac /System/Library/CoreServices/coreservicesd[87]: FindBestLSSession(), SessionGetInfo() returned error -2147417855 for sessionID=5875888 or 0 uid=0 euid=88; cf <rdar://problem/5123589>
    Sep 21 17:59:54 EddieMac loginwindow[625]: USER_PROCESS: 625 console
    Sep 21 17:59:54 EddieMac Software Update[636]: arguments={\n RootInstallMode = YES;\n SkipConfirm = YES;\n}
    Sep 21 17:59:55 EddieMac Software Update[636]: cookie=""
    Sep 21 17:59:55 EddieMac Software Update[636]: Looking for products to install
    Sep 21 17:59:56 EddieMac Software Update[636]: Performing preflight
    Sep 21 17:59:56 EddieMac Software Update[636]: Preparing session
    Sep 21 17:59:57 EddieMac Software Update[636]: Starting session
    Sep 21 18:01:29 EddieMac defaults[1202]: \nThe domain/default pair of (//Contents/Info, CFBundleIdentifier) does not exist
    Sep 21 18:01:44 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 18:01:44 EddieMac kextd[10]: 0 cached, 407 uncached personalities to catalog
    Sep 21 18:01:46 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:01:58 EddieMac [0x0-0x48048].com.apple.SoftwareUpdate[636]: kextcache: / locked; waiting for lock
    Sep 21 18:01:59 EddieMac com.apple.dyld[1351]: updatedyld_sharedcache[1351] regenerated cache for arch=i386
    Sep 21 18:02:03 EddieMac [0x0-0x48048].com.apple.SoftwareUpdate[636]: kextcache: proceeding
    Sep 21 18:02:03 EddieMac Software Update[636]: kextcache returned 0
    Sep 21 18:02:03 EddieMac Software Update[636]: Running /sbin/reboot
    Sep 21 18:02:03 EddieMac reboot[1363]: rebooted by nobody
    Sep 21 18:02:03 EddieMac reboot[1363]: SHUTDOWN_TIME: 1222045323 308054
    Sep 21 18:02:03 EddieMac mDNSResponder mDNSResponder-171.4 (Apr 20 2008 11:59:52)[45]: stopping
    Sep 21 18:02:03 EddieMac Software Update[636]: Terminating
    Sep 21 18:02:03 EddieMac ManagedClient[633]: CGSShutdownServerConnections: Detaching application from window server
    Sep 21 18:02:03 EddieMac ManagedClient[633]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Sep 21 18:02:03 EddieMac com.apple.loginwindow[625]: Sun Sep 21 18:02:03 EddieMac.local ManagedClient[633] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Sep 21 18:02:03 EddieMac com.apple.loginwindow[625]: Sun Sep 21 18:02:03 EddieMac.local ManagedClient[633] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Sep 21 18:02:03 EddieMac /usr/sbin/kdcmond[64]: dnssd_clientstub read_all(3) failed 0/28 0
    Sep 21 18:04:06 localhost kernel[0]: npvhash=4095
    Sep 21 18:04:04 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 21 18:04:04 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 21 18:04:04 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 21 18:04:04 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 21 18:04:04 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 21 18:04:06 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 21 18:04:07 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 21 18:04:07 localhost kernel[0]: PAE enabled
    Sep 21 18:04:07 localhost kernel[0]: 64 bit mode enabled
    Sep 21 18:04:07 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 21 18:04:07 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 21 18:04:07 localhost kernel[0]: vmpagebootstrap: 970440 free pages and 78136 wired pages
    Sep 21 18:04:07 localhost kernel[0]: migtable_maxdispl = 79
    Sep 21 18:04:08 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 localhost kernel[0]: Extension "com.apple.driver.AppleIntelCPUPowerManagement" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 21 18:04:08 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 21 18:04:08 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 21 18:04:08 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 21 18:04:08 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 21 18:04:08 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 21 18:04:08 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 21 18:04:08 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 21 18:04:08 EddieMac kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 21 18:04:08 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: starting
    Sep 21 18:04:08 EddieMac kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 21 18:04:08 EddieMac kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 21 18:04:08 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 21 18:04:08 EddieMac kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 21 18:04:08 EddieMac kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 21 18:04:08 EddieMac kernel[0]: MAC Framework successfully initialized
    Sep 21 18:04:08 EddieMac kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 21 18:04:08 EddieMac kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 EddieMac kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08: --- last message repeated 1 time ---
    Sep 21 18:04:08 EddieMac kernel[0]: mbinit: done
    Sep 21 18:04:08 EddieMac kernel[0]: Security auditing service present
    Sep 21 18:04:08 EddieMac kernel[0]: BSM auditing present
    Sep 21 18:04:08 EddieMac kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 21 18:04:08 EddieMac kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 21 18:04:08 EddieMac kernel[0]: Extension "com.apple.iokit.AppleYukon2" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Sep 21 18:04:08 EddieMac kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 21 18:04:08 EddieMac kernel[0]: BTCOEXIST on
    Sep 21 18:04:08 EddieMac kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 21 18:04:08 EddieMac kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 21 18:04:08 EddieMac kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 21 18:04:08 EddieMac kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 21 18:04:08 EddieMac kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 21 18:04:08 EddieMac kernel[0]: Jettisoning kernel linker.
    Sep 21 18:04:08 EddieMac kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 21 18:04:09 EddieMac kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 21 18:04:09 EddieMac kernel[0]: AirPort: Link Down on en1
    Sep 21 18:04:09 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:04:09 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 18:04:09 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 18:04:09 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:04:09 EddieMac kernel[0]: en1: 802.11d country code set to 'X0'.
    Sep 21 18:04:09 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 18:04:10 EddieMac mDNSResponder[15]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 21 18:04:11 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 18:04:13 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 18:04:15: --- last message repeated 1 time ---
    Sep 21 18:04:15 EddieMac fseventsd[38]: event logs in /.fseventsd out of sync with volume. destroying old logs. (86 24 132)
    Sep 21 18:04:18 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 18:04:18 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 18:04:18 EddieMac blued[46]: Apple Bluetooth daemon started.
    Sep 21 18:04:21 EddieMac rpc.statd[29]: statd.notify - no notifications needed
    Sep 21 18:04:21 EddieMac fseventsd[38]: log dir: /.fseventsd getting new uuid: D835A075-6080-4201-A2AF-664F24FB75B8
    Sep 21 18:04:22 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 18:04:22 EddieMac org.ntp.ntpd[26]: Error : nodename nor servname provided, or not known
    Sep 21 18:04:22 EddieMac ntpdate[55]: can't find host time.apple.com
    Sep 21 18:04:22 EddieMac ntpdate[55]: no servers can be used, exiting
    Sep 21 18:04:22 EddieMac bootlog[45]: BOOT_TIME: 1222045431 0
    Sep 21 18:04:22 EddieMac /usr/sbin/ocspd[59]: starting
    Sep 21 18:04:28 EddieMac kernel[0]: BootCache: hit rate below threshold (2180 hits on 4361 lookups)
    Sep 21 18:04:28 EddieMac kextd[10]: 0 cached, 407 uncached personalities to catalog
    Sep 21 18:04:28 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 18:04:30 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:04:30 EddieMac kernel[0]: Matching service count = 1
    Sep 21 18:04:30 EddieMac kernel[0]: Matching service count = 2
    Sep 21 18:04:31: --- last message repeated 4 times ---
    Sep 21 18:04:31 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 21 18:04:31 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 18:04:31 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 18:04:31 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 18:04:31 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 21 18:04:32 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 21 18:04:32 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 18:04:32: --- last message repeated 1 time ---
    Sep 21 18:04:32 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[33]: Login Window Application Started
    Sep 21 18:04:45 EddieMac loginwindow[33]: Login Window Started Security Agent
    Sep 21 18:04:46 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 18:10:17 EddieMac ntpd[26]: time reset +0.686169 s
    Sep 21 18:34:30 EddieMac /usr/libexec/hidd[37]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 21 18:34:36 EddieMac authorizationhost[96]: MechanismInvoke 0x128b20 retainCount 2
    Sep 21 18:34:36 EddieMac SecurityAgent[97]: MechanismInvoke 0x101660 retainCount 1
    Sep 21 18:34:36 EddieMac SecurityAgent[97]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 18:34:37 EddieMac loginwindow[33]: Login Window - Returned from Security Agent
    Sep 21 18:34:37 EddieMac SecurityAgent[97]: MechanismDestroy 0x101660 retainCount 1
    Sep 21 18:34:37 EddieMac authorizationhost[96]: MechanismDestroy 0x128b20 retainCount 2
    Sep 21 18:34:37 EddieMac loginwindow[33]: USER_PROCESS: 33 console
    Sep 21 18:34:37 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[93]): Exited: Terminated
    Sep 21 18:34:37 EddieMac com.apple.launchctl.Aqua[181]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 18:34:43 EddieMac Dock[196]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 18:34:45 EddieMac /System/Library/CoreServices/coreservicesd[52]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 18:34:48 EddieMac com.apple.launchd[179] (0x100f70.VersionCueCS3monitor): Failed to check-in!
    Sep 21 18:35:09 EddieMac SyncServer[215]: SyncServer: Reaping records for inactive clients. Next reap on 2551-11-05 17:35:09 -0800
    Sep 21 18:35:20 EddieMac SyncServer[215]: SyncServer: Truth vacuumed. Next vacuum date 2551-10-05 18:35:09 -0700
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicJSWindowExternalHandler is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicWizardController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicPanel is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adoberegistration.framework/Versions/A/adoberegistration and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicJSWindowExternalHandler is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicWizardController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicPanel is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:28 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: objc[229]: Class EpicController is implemented in both /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobepersonalization.framework/Versions/A/adobepersonalization and /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula. Using implementation from /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/../Frameworks/adobeeula.framework/Versions/A/adobeeula.
    Sep 21 18:45:30 EddieMac hdiejectd[235]: running
    Sep 21 18:45:31 EddieMac KernelEventAgent[34]: tid 00000000 received unknown event (12)
    Sep 21 18:45:50 EddieMac /Library/Application Support/FLEXnet Publisher/Service/11.03.005/FNPLicensingService[246]: Started
    Sep 21 18:45:50 EddieMac /Library/Application Support/FLEXnet Publisher/Service/11.03.005/FNPLicensingService[246]: This service performs licensing functions on behalf of FLEXnet enabled products.
    Sep 21 18:54:28 EddieMac kernel[0]: WLCE_COUNTRY_CODECHANGED
    Sep 21 18:54:28 EddieMac kernel[0]: en1: 802.11d country code set to 'US'.
    Sep 21 18:54:28 EddieMac kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 5 6 7 8 9 10 11 1 2 3 4 5 6 7 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165 40 48 56 64 104 112 120 128 136 153 161 36 44 52 60
    Sep 21 19:09:14 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `Time-Machine-Update.pkg': 30
    Sep 21 19:09:22 EddieMac Installer[472]: <ZeroSliderSplitView: 0x3aa272c0>: the delegate <TargetSelectPage: 0x3aa27e60> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    Sep 21 19:09:22 EddieMac Installer[472]: Split view bounds: {{0, 0}, {402, 104}}
    Sep 21 19:09:22 EddieMac Installer[472]: Subview frame: {{0, 0}, {0, 32}}
    Sep 21 19:09:22 EddieMac Installer[472]: Subview frame: {{0, 0}, {402, 104}}
    Sep 21 19:09:22 EddieMac Installer[472]: The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    Sep 21 19:14:05 EddieMac Software Update[510]: arguments=(null)
    Sep 21 19:49:29 EddieMac SCHelper[663]: no command
    Sep 21 19:49:29 EddieMac com.apple.launchd[179] ([0x0-0x1a01a].com.apple.systempreferences[331]): Stray process with PGID equal to this dead job: PID 663 PPID 1 SCHelper
    Sep 21 19:56:29 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `Time-Machine-Update.pkg': 30
    Sep 21 19:56:35 EddieMac Installer[857]: <ZeroSliderSplitView: 0x39922150>: the delegate <TargetSelectPage: 0x39936be0> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    Sep 21 19:56:35 EddieMac Installer[857]: Split view bounds: {{0, 0}, {402, 104}}
    Sep 21 19:56:35 EddieMac Installer[857]: Subview frame: {{0, 0}, {0, 32}}
    Sep 21 19:56:35 EddieMac Installer[857]: Subview frame: {{0, 0}, {402, 104}}
    Sep 21 19:56:35 EddieMac Installer[857]: The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    Sep 21 19:57:05 EddieMac kernel[0]: Finder[199] Unable to clear quarantine `.DS_Store': 30
    Sep 21 20:17:34 EddieMac Dreamweaver[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1f403b48: Non-aligned pointer being freed\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 20:17:11 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:18:11: --- last message repeated 3 times ---
    Sep 21 20:17:34 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1f403b48: Non-aligned pointer being freed
    Sep 21 20:17:34 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 20:24:20 EddieMac kernel[0]: AirPort: Roam (Beacons Lost)
    Sep 21 20:26:26 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:27:22: --- last message repeated 19 times ---
    Sep 21 20:26:54 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:27:57: --- last message repeated 55 times ---
    Sep 21 20:27:36 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:28:45: --- last message repeated 79 times ---
    Sep 21 20:28:05 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:31:42: --- last message repeated 51 times ---
    Sep 21 20:31:41 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:32:16: --- last message repeated 15 times ---
    Sep 21 20:31:59 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:32:55: --- last message repeated 31 times ---
    Sep 21 20:32:35 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:34:35: --- last message repeated 79 times ---
    Sep 21 20:33:39 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:35:51: --- last message repeated 39 times ---
    Sep 21 20:34:51 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 20:35:51: --- last message repeated 27 times ---
    Sep 21 20:35:51 EddieMac helpdatad[1194]: port 'com.apple.helpdata' created
    Sep 21 20:37:15 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Ignoring Quickdraw drawing between QDBeginCGContext and QDEndCGContext
    Sep 21 21:09:07: --- last message repeated 3 times ---
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSConditionLock dealloc]: lock (<NSConditionLock: 0x1993abe0> '(null)') deallocated while still in use
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993a9c0> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993b230> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * -[NSLock unlock]: lock (<NSLock: 0x1993b1f0> '(null)') unlocked when not locked
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: * Break on _NSLockError() to debug.
    Sep 21 21:23:49 EddieMac Dreamweaver[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1c229b90: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 21:23:49 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: Dreamweaver(229,0xa047efa0) malloc: * error for object 0x1c229b90: Non-aligned pointer being freed (2)
    Sep 21 21:23:49 EddieMac [0x0-0x17017].com.adobe.dreamweaver-9.0[229]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 21:24:02 EddieMac loginwindow[33]: DEAD_PROCESS: 0 console
    Sep 21 21:24:03 EddieMac com.apple.loginwindow[33]: Shutdown NOW!
    Sep 21 21:24:03 EddieMac shutdown[1635]: halt by eddiepankow:
    Sep 21 21:24:03 EddieMac com.apple.loginwindow[33]: System shutdown time has arrived^G^G
    Sep 21 21:24:03 EddieMac shutdown[1635]: SHUTDOWN_TIME: 1222057443 186031
    Sep 21 21:24:03 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: stopping
    Sep 21 21:58:09 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 21 21:58:09 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 21 21:58:09 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 21 21:58:09 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 21 21:58:09 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 21 21:58:10 localhost kernel[0]: npvhash=4095
    Sep 21 21:58:10 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 21 21:58:10 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 21 21:58:10 localhost kernel[0]: PAE enabled
    Sep 21 21:58:10 localhost kernel[0]: 64 bit mode enabled
    Sep 21 21:58:10 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 21 21:58:10 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 21 21:58:10 localhost kernel[0]: vmpagebootstrap: 972053 free pages and 76523 wired pages
    Sep 21 21:58:10 localhost kernel[0]: migtable_maxdispl = 79
    Sep 21 21:58:10 localhost kernel[0]: 95 prelinked modules
    Sep 21 21:58:10 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 21 21:58:10 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 21 21:58:10 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 21 21:58:10 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 21 21:58:10 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 21 21:58:10 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 21 21:58:11 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 21 21:58:11 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 21 21:58:10 localhost mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[16]: starting
    Sep 21 21:58:11 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 21 21:58:11 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 21 21:58:11 localhost kernel[0]: MAC Framework successfully initialized
    Sep 21 21:58:11 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 21 21:58:11 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 21 21:58:11 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 21 21:58:11 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 21 21:58:11 localhost kernel[0]: mbinit: done
    Sep 21 21:58:11 localhost kernel[0]: Security auditing service present
    Sep 21 21:58:11 localhost kernel[0]: BSM auditing present
    Sep 21 21:58:11 localhost kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 21 21:58:11 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 21 21:58:11 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 21 21:58:11 localhost kernel[0]: BTCOEXIST on
    Sep 21 21:58:11 localhost kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 21 21:58:11 localhost kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 21 21:58:11 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 21 21:58:11 localhost kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 21 21:58:11 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 21 21:58:11 localhost kernel[0]: Jettisoning kernel linker.
    Sep 21 21:58:11 localhost kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 21 21:58:11 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 21 21:58:11 localhost kernel[0]: AirPort: Link Down on en1
    Sep 21 21:58:11 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 21 21:58:12 EddieMac mDNSResponder[16]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 21 21:58:14 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 21:58:15 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 21:58:15 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 21 21:58:15 EddieMac kernel[0]: AirPort: Roam (DeAuth/DisAssoc)
    Sep 21 21:58:15 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 21 21:58:18: --- last message repeated 1 time ---
    Sep 21 21:58:18 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 21 21:58:20 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 21 21:58:20 EddieMac fseventsd[38]: bumping event counter to: 0x5d7c (current 0x0) from log file '00000000000000ce'
    Sep 21 21:58:20 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 21:58:20 EddieMac rpc.statd[29]: statd.notify - no notifications needed
    Sep 21 21:58:20 EddieMac kernel[0]: Matching service count = 1
    Sep 21 21:58:20 EddieMac kernel[0]: Matching service count = 2
    Sep 21 21:58:20: --- last message repeated 4 times ---
    Sep 21 21:58:20 EddieMac kextd[10]: 407 cached, 0 uncached personalities to catalog
    Sep 21 21:58:21 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 21 21:58:21 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 21 21:58:21 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 21 21:58:21 EddieMac bootlog[45]: BOOT_TIME: 1222059484 0
    Sep 21 21:58:24 EddieMac /usr/sbin/ocspd[60]: starting
    Sep 21 21:58:24 EddieMac blued[46]: Apple Bluetooth daemon started.
    Sep 21 21:58:24 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[33]: Login Window Application Started
    Sep 21 21:58:24 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 21 21:58:24 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 21 21:58:25 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 21 21:58:24 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 21 21:58:25 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 21 21:58:27 EddieMac loginwindow[33]: Login Window Started Security Agent
    Sep 21 21:58:28 EddieMac org.ntp.ntpd[26]: Error : nodename nor servname provided, or not known
    Sep 21 21:58:28 EddieMac ntpdate[77]: can't find host time.apple.com
    Sep 21 21:58:28 EddieMac ntpdate[77]: no servers can be used, exiting
    Sep 21 21:58:32 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 21:58:34 EddieMac kernel[0]: BlackberryUSBDev: 0 0 start - initDevice failed
    Sep 21 21:58:35 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 21:58:35 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 21 21:58:36 EddieMac kernel[0]: BlackberryUSB: - Version number 3.0.9
    Sep 21 21:58:36 EddieMac authorizationhost[75]: MechanismInvoke 0x1258c0 retainCount 2
    Sep 21 21:58:36 EddieMac SecurityAgent[76]: MechanismInvoke 0x101660 retainCount 1
    Sep 21 21:58:36 EddieMac SecurityAgent[76]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 21 21:58:37 EddieMac loginwindow[33]: Login Window - Returned from Security Agent
    Sep 21 21:58:37 EddieMac SecurityAgent[76]: MechanismDestroy 0x101660 retainCount 1
    Sep 21 21:58:37 EddieMac authorizationhost[75]: MechanismDestroy 0x1258c0 retainCount 2
    Sep 21 21:58:37 EddieMac loginwindow[33]: USER_PROCESS: 33 console
    Sep 21 21:58:37 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[72]): Exited: Terminated
    Sep 21 21:58:37 EddieMac com.apple.launchctl.Aqua[87]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 21 21:58:41 EddieMac Dock[96]: _DESCRegisterDockExtraClient failed 268435459
    Sep 21 21:58:46 EddieMac /System/Library/CoreServices/coreservicesd[58]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 21 21:58:49 EddieMac com.apple.launchd[66] (0x101080.VersionCueCS3monitor): Failed to check-in!
    Sep 21 21:59:49 EddieMac /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[101]: StatusMonitor::volumesChangedCallBack returned -47
    Sep 21 22:00:21 EddieMac DVD Player[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x14127000: pointer being freed was not allocated\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:00:21 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x14127000: pointer being freed was not allocated
    Sep 21 22:00:21 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:02:50 EddieMac ntpd[26]: time reset +0.978829 s
    Sep 21 22:09:43 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 22:09:45 EddieMac kernel[0]: BlackberryUSBDev: 0 0 start - initDevice failed
    Sep 21 22:09:46 EddieMac kernel[0]: BlackberryUSBDev: Vendor ID = fca, Product ID = 1, Device Release = 104
    Sep 21 22:09:48 EddieMac kernel[0]: BlackberryUSB: - Version number 3.0.9
    Sep 21 22:39:26 EddieMac DVD Player[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x13ff2000: pointer being freed was not allocated\n* set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:39:26 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: DVD Player(201,0xa047efa0) malloc: * error for object 0x13ff2000: pointer being freed was not allocated
    Sep 21 22:39:26 EddieMac [0x0-0x14014].com.apple.DVDPlayer[201]: * set a breakpoint in mallocerrorbreak to debug
    Sep 21 22:40:05 EddieMac loginwindow[33]: DEAD_PROCESS: 0 console
    Sep 21 22:40:06 EddieMac shutdown[275]: halt by eddiepankow:
    Sep 21 22:40:06 EddieMac shutdown[275]: SHUTDOWN_TIME: 1222062006 67975
    Sep 21 22:40:06 EddieMac com.apple.loginwindow[33]: Shutdown NOW!
    Sep 21 22:40:06 EddieMac mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[16]: stopping
    Sep 21 22:40:06 EddieMac com.apple.loginwindow[33]: System shutdown time has arrived^G^G
    Sep 21 22:40:06 EddieMac /usr/sbin/kdcmond[35]: dnssd_clientstub read_all(3) failed 0/28 0
    Sep 23 07:32:38 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Sep 23 07:32:38 localhost com.apple.launchd[1] (com.adobe.versioncueCS3): Unknown key: ServiceDescription
    Sep 23 07:32:38 localhost com.apple.launchd[1] (com.apple.ODSAgent): Unknown key: SHAuthorizationRight
    Sep 23 07:32:38 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Sep 23 07:32:38 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Sep 23 07:32:40 localhost kernel[0]: npvhash=4095
    Sep 23 07:32:40 localhost DirectoryService[11]: Launched version 5.5 (v514.23)
    Sep 23 07:32:40 localhost kernel[0]: hi mem tramps at 0xffe00000
    Sep 23 07:32:40 localhost kernel[0]: PAE enabled
    Sep 23 07:32:40 localhost kernel[0]: 64 bit mode enabled
    Sep 23 07:32:40 localhost kernel[0]: Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    Sep 23 07:32:40 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Sep 23 07:32:40 localhost kernel[0]: vmpagebootstrap: 971983 free pages and 76593 wired pages
    Sep 23 07:32:40 localhost kernel[0]: migtable_maxdispl = 79
    Sep 23 07:32:40 localhost kernel[0]: 98 prelinked modules
    Sep 23 07:32:40 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Sep 23 07:32:40 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Sep 23 07:32:40 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Sep 23 07:32:40 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Sep 23 07:32:40 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Sep 23 07:32:40 localhost kernel[0]: calling mpopolicyinit for mb
    Sep 23 07:32:40 localhost kernel[0]: Seatbelt MACF policy initialized
    Sep 23 07:32:40 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Sep 23 07:32:40 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Sep 23 07:32:40 localhost mDNSResponder mDNSResponder-176.2 (Aug 15 2008 14:58:54)[15]: starting
    Sep 23 07:32:40 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Sep 23 07:32:40 localhost kernel[0]: MAC Framework successfully initialized
    Sep 23 07:32:40 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Sep 23 07:32:40 localhost kernel[0]: devfsmakenode: not ready for devices!
    Sep 23 07:32:40 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Sep 23 07:32:40 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Sep 23 07:32:40 localhost kernel[0]: mbinit: done
    Sep 23 07:32:40 localhost kernel[0]: Security auditing service present
    Sep 23 07:32:40 localhost kernel[0]: BSM auditing present
    Sep 23 07:32:40 localhost kernel[0]: rooting via boot-uuid from /chosen: 5CB3E138-E0AA-37C1-912F-D59B191679E3
    Sep 23 07:32:40 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Sep 23 07:32:40 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001f5bfffe2b634a; max speed s800.
    Sep 23 07:32:40 localhost kernel[0]: BTCOEXIST on
    Sep 23 07:32:40 localhost kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    Sep 23 07:32:40 localhost kernel[0]: 4.170.46.11Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS542525K9SA00 Media/IOGUIDPartitionScheme/Customer@2
    Sep 23 07:32:40 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Sep 23 07:32:40 localhost kernel[0]: in6_ifattach: lo0 failed to attach a linklocal address.
    Sep 23 07:32:40 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Sep 23 07:32:40 localhost kernel[0]: AppleUSBMultitouchDriver: starting
    Sep 23 07:32:40 localhost kernel[0]: Jettisoning kernel linker.
    Sep 23 07:32:40 localhost kernel[0]: yukon: Ethernet address 00:1f:5b:e6:db:fa
    Sep 23 07:32:40 localhost kernel[0]: AirPort_Brcm43xx: Ethernet address 00:1e:c2:bb:a4:70
    Sep 23 07:32:40 EddieMac kernel[0]: AirPort: Link Down on en1
    Sep 23 07:32:40 EddieMac configd[14]: setting hostname to "EddieMac.local"
    Sep 23 07:32:41 EddieMac airportd[21]: No networks found on channels remembered for NETGEAR
    Sep 23 07:32:41 EddieMac airportd[21]: Could not find "NETGEAR"
    Sep 23 07:32:41 EddieMac mDNSResponder[15]: WARNING: sandbox_init error Could not set Mach lookup policy for service com.apple.bsd.dirhelper err=1100Could not set Mach lookup policy for service com.apple.distributed_notifications.2 err=1100Could not set Mach lookup policy for service com.apple.ocspd err=1100Could not set Mach lookup policy for service com.apple.mDNSResponderHelper err=1100Could not set Mach lookup policy for service com.apple.SecurityServer err=1100Could not set Mach lookup policy for service com.apple.SystemConfiguration.configd er
    Sep 23 07:32:42 EddieMac kernel[0]: AppleYukon2 - en0 link active, 100-Mbit, full duplex, symmetric flow control enabled port 0
    Sep 23 07:32:42 EddieMac configd[14]: AppleTalk startup
    Sep 23 07:32:45 EddieMac kernel[0]: MAC AUTH succeeded
    Sep 23 07:32:45 EddieMac kernel[0]: AirPort: Link Up on en1
    Sep 23 07:32:46 EddieMac kernel[0]: Resetting IOCatalogue.
    Sep 23 07:32:46 EddieMac kextd[10]: 407 cached, 0 uncached personalities to catalog
    Sep 23 07:32:46 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 23 07:32:46 EddieMac kernel[0]: Matching service count = 1
    Sep 23 07:32:46 EddieMac kernel[0]: Matching service count = 2
    Sep 23 07:32:47: --- last message repeated 4 times ---
    Sep 23 07:32:47 EddieMac kernel[0]: Previous Shutdown Cause: 5
    Sep 23 07:32:47 EddieMac kernel[0]: NVDANV50HAL loaded and registered.
    Sep 23 07:32:47 EddieMac kernel[0]: GFX0: family specific matching fails
    Sep 23 07:32:47 EddieMac bootlog[46]: BOOT_TIME: 1222180354 0
    Sep 23 07:32:47 EddieMac fseventsd[39]: bumping event counter to: 0x6c7a (current 0x0) from log file '0000000000006091'
    Sep 23 07:32:47 EddieMac rpc.statd[30]: statd.notify - no notifications needed
    Sep 23 07:32:47 EddieMac blued[47]: Apple Bluetooth daemon started.
    Sep 23 07:32:47 EddieMac /usr/sbin/ocspd[59]: starting
    Sep 23 07:32:47 EddieMac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[34]: Login Window Application Started
    Sep 23 07:32:48 EddieMac kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Sep 23 07:32:48 EddieMac kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:1e:c2:8a:ef:50
    Sep 23 07:32:48 EddieMac configd[14]: bootpsessiontransmit: bpf_write(en2) failed: Operation not permitted (1)
    Sep 23 07:32:48 EddieMac kernel[0]: dlil_output: output error retval = 1
    Sep 23 07:32:48 EddieMac configd[14]: DHCP en2: INIT transmit failed
    Sep 23 07:32:57 EddieMac configd[14]: AppleTalk startup complete
    Sep 23 07:33:00 EddieMac kextd[10]: writing kernel link data to /var/run/mach.sym
    Sep 23 07:33:00 EddieMac loginwindow[34]: Login Window Started Security Agent
    Sep 23 07:33:53 EddieMac authorizationhost[79]: MechanismInvoke 0x1258a0 retainCount 2
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: MechanismInvoke 0x101660 retainCount 1
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Sep 23 07:33:53 EddieMac loginwindow[34]: Login Window - Returned from Security Agent
    Sep 23 07:33:53 EddieMac SecurityAgent[80]: MechanismDestroy 0x101660 retainCount 1
    Sep 23 07:33:53 EddieMac authorizationhost[79]: MechanismDestroy 0x1258a0 retainCount 2
    Sep 23 07:33:53 EddieMac loginwindow[34]: USER_PROCESS: 34 console
    Sep 23 07:33:53 EddieMac com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[76]): Exited: Terminated
    Sep 23 07:33:53 EddieMac com.apple.launchctl.Aqua[87]: launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    Sep 23 07:33:57 EddieMac Dock[95]: _DESCRegisterDockExtraClient failed 268435459
    Sep 23 07:34:01 EddieMac /System/Library/CoreServices/coreservicesd[58]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Eddie Pankow's Public Folder) returned -14135
    Sep 23 07:34:04 EddieMac com.apple.launchd[85] (0x100f70.VersionCueCS3monitor): Failed to check-in!
    Sep 23 07:39:35 EddieMac hdiejectd[131]: running
    Sep 23 07:39:36 EddieMac KernelEventAgent[35]: tid 00000000 received unknown event (12)
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: Backup requested by user
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: Starting standard backup
    Sep 23 07:39:49 EddieMac /System/Library/CoreServices/backupd[143]: FSMatchAliasBulk returned -35 while resolving alias to backup target
    Sep 23 07:39:55 EddieMac /System/Library/CoreServices/backupd[143]: Backup failed with error: 19
    Sep 23 07:43:07 EddieMac kernel[0]: AppleYukon2 - en0 link down
    Sep 23 07:43:07 EddieMac configd[14]: AppleTalk shutdown
    Sep 23 07:43:07 EddieMac configd[14]: AppleTalk shutdown complete
    Sep 23 07:43:15 EddieMac kernel[0]: AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    Sep 23 08:52:42 EddieMac /usr/libexec/hidd[38]: IOHIDEventQueueEnqueue: Error enqueuing memory. (0xe00002e8)
    Sep 23 08:53:12: --- last message repeated 10 times ---

  • ITunes 6.0.1.3 downloads a video 100%, then fails with "An Unknown Error"

    I've downloaded several videos from ITMS but the most recent one I've purchased will complete the download process and then fail. I've tried "check for purchases" several times and always get the same result - download the ~200 MB file, then fail when the progress bar is full.
    I've tried disabling Grisoft AntiVirus, defragmenting the hard drive, chkdsk for errors (no errors), but I keep getting the same thing every time - about 8 tries):
    [Red X graphic]
    There was an error downloading your purchased music.
    An unknown error occurred (0xFFFE7958).
    Use the Check for Purchased Music command in the Advanced menu to try again later.
    [OK]
    I don't use iTunes for music - just for video downloads.
    Any ideas?
    dcs

    Same problem here!!!
    Three times I tried to download the D.Housewives and three times it failed. I did the check the purchased and was able to start again but everytime it got to either 99% or 100% it failed with a error but on the third time it failed I guess it triggered something and it no longer shows as Purchased Music. I contacted Apple and they told me I am out of luck!
    Good thing my Ipod is less then 30 days old as it is going back to the store.
    Here is their response after taking my $1.99 but no delivering the product!!!
    Dear Steve,
    Thank you for contacting the iTunes Music Store.
    Per our terms of sale, all music/videos purchased from the iTunes Music Store is ineligible for refund. This policy matches our refund policies on open or downloaded software and provides protection for copy written materials.
    For more information, please review all the Terms of Sale for the iTunes Music Store at http://www.apple.com/support/itunes/legal/policies.html.

  • SSIS package fails with the error as given below. But its warning messages are incorrect.

    My SSIS package loads data from access database to SQL Server database.
    It's a straight copy. It fails with the below warnings and error message as shown below:
    Error messages:
    [OLE DB Source [113]] Error: There was an error with OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID] on OLE DB Source.Outputs[OLE DB Source Output]. The column status returned was: "Text was truncated or one or more characters had no
    match in the target code page.".
    [OLE DB Source [113]] Error: The "OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID]" failed because truncation occurred, and the truncation row disposition on "OLE DB Source.Outputs[OLE DB Source Output].Columns[RetentionID]"
    specifies failure on truncation. A truncation error occurred on the specified object of the specified component.
    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on OLE DB Source returned error code 0xC020902A.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure
    code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
    There are 3 warning messages even before I run the package. Warnings are all about the mismatch between the source and destination column sizes.
    I cross checked the source and destination column sizes. The destination column sizes are fairly high than the source column sizes.
    It worked well all the while and when we are going to pre-prod it is throwing errors. Any help is highly appreciated.
    Thank you.

    It worked well all the while and when we are going to pre-prod it is throwing errors. Any help is highly appreciated.
    Please check if the dev destination table has same column data types and size as compared with pre prod table
    Thanks, hsbal

Maybe you are looking for

  • How do I install Windows onto my MacBook Pro?

    Hi guys, newbie to the forum here Anyway, I'm a bit of a gamer, and what annoys me most is that loads of games are Windows only. I love my Mac, and I make good use of it a lot of the time, but I want to play games! I realise it's not exactly a gaming

  • How do I resolve this issue in FI?

    This is the error msg I get "Rules for posting key 40 and acct 476900 set incorrectly for "XREF1" field", Please tell me how can I resolve this issue. Thank You.

  • How to use nvl with to_char on varchar data type

    Hi, I have the datatype as varchar in which i enter date format with timestamp. I am using the quey select nvl(:p_date,pei_attribute8) from per_people_extra_info . Now i need to trucate in date format as Mar,12,2011. I tried using select tochar(nvl(:

  • Retina Display is making my new Monitor Pixilated.

    Recently, I have bought a new MacBook Pro Retina Display and an Hp Pavilion 27xi Monitor. I just hooked up my monitor to my laptop last night and I noticed the picture on my monitor is Pixilated. I've been told by a friend that it's because of my Ret

  • How to change date format for prentation variable in Formula

    Hi experts.._ I need to change date format for presentation variable in formula.. my dashbord date prompt format: mm/dd/yyyy(i have created one presentation variable for this prompt: pv_date) now i need to show it as : month-dd-yyyy Thanks in advance