You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

rMBP 2015 Wake Reason: ARPT (Network)

I can't seem to find out what is waking my Mac up so much. Battery life on standby is terrible. Snippet from running "syslog | grep -i "Wake reason"" through Terminal:


Apr 23 18:28:05 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Host (0x01)

Apr 23 18:57:08 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Apr 23 18:57:08 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Host (0x01)

Apr 23 19:02:41 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Apr 23 19:02:41 Davids-MacBook-Pro kernel[0] <Notice>: ARPT: Wake Reason: Wake on TCP Data

Apr 23 19:02:41 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Host (0x01)

Apr 23 19:05:15 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: EC.LidOpen (User)


Occasionally:

Apr 23 12:21:17 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 12:21:17 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 13:19:31 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 13:19:31 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 13:38:54 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 13:38:54 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 13:46:39 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 13:46:39 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 13:48:24 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 13:48:24 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 14:50:05 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 14:50:05 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 15:39:26 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 15:39:26 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 15:44:59 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: SPIT (User)

Apr 23 15:44:59 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Button (0x03)

Apr 23 16:05:34 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Apr 23 16:05:34 Davids-MacBook-Pro kernel[0] <Notice>: ARPT: Wake Reason: Wake on Scan offload

Apr 23 16:05:34 Davids-MacBook-Pro kernel[0] <Notice>: AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Host (0x01)

Apr 23 16:08:30 Davids-MacBook-Pro kernel[0] <Notice>: Wake reason: EC.LidOpen (User)


Can't seem to find out the issue via Google. I have extensively searched.


Appreciate any help.


P.S. this is a duplicate from rMBP 2015 10.10.3 Wake Reason: ARPT (Network). I do not know how it ended up in the OS X Mavericks section because I clearly remembered choosing Yosemite from the dropdown list. Anyhow, that one is closed and I would appreciate any help I can get from this section of the forum.


Thanks.

MacBook Pro (Retina, 13-inch,Early 2015), OS X Yosemite (10.10.3)

Posted on Apr 24, 2015 8:43 AM

Reply
229 replies

Nov 30, 2015 2:35 AM in response to kevin.de.koninck

Just like i thought, the keyword here is mDNSResponder. I've tried different network environments and found that maybe it's related to router configuration, or more specifically, firewall configuration. If your router allowed Bonjour packets to travel through your network and you've got any device that responds to it (maybe responds are not necessary, I haven't tried to turn all my apple devices off or disconnected), the mDNSResponder sends a maintenance wake request to the kernal, where the DarkWake takes place, and it sleeps again.


I've tried different methods to disable this behavior of mDNSResponder, either on my MacBook and my router, but I can't figure out the exact reason caused the regular DarkWake. The methods including:

- command: sudo defaults write /Library/Preferences/com.apple.mDNSResponder.plist NoMulticastAdvertisements -bool YES (no use)

- configuring my router's firewall disabling MacBook's connectivity to other devices in the same network (meaningless to me, disables iTunes sharing)

- kill the mDNSResponder process (which will make safari unable to connect to any website)


My workaround is to use sleepwatcher to turn Wi-Fi on and off automatically when MacBook goes into sleep mode and wakes up. If there's any method to turn off DarkWake (AFAIK only hackintosh has the ability to add kernel line before loading kernel image), I'd really like to try that.


PS: I also tried turning off all my AddressBook accounts and it turned out to be useless.

Dec 1, 2015 7:42 PM in response to jessatd75

Hi,

It's networksetup. Use


man networksetup


to learn more about this utility.


Here's my sleep script:


#! /bin/bash

echo `date` "Sleeping" >> /tmp/sleep.log
/usr/sbin/networksetup setairportpower en0 off
echo `date` `/usr/sbin/networksetup getairportpower en0` >> /tmp/sleep.log


and wakeup script:


#! /bin/bash


echo `date` "Waking up" >> /tmp/sleep.log
sleep 7
/usr/sbin/networksetup setairportpower en0 on
echo `date` `/usr/sbin/networksetup getairportpower en0` >> /tmp/sleep.log


Notice there is a ' sleep 7' line in wakeup script because I want it to wait until the system is fully waked up from a hibernate sleep. If not, there's a small chance that the system would freeze as soon as the script turned on wifi.


PS: in case you renamed or modified your Wi-Fi device name, use ifconfig to find out what device name it is. ( If your don't know what ifconfig is, just ignore this line.)


Nice day.

Dec 4, 2015 6:03 AM in response to davezachc

Newbie poster here - I had the same problem with my rMBP 2015 (May) (losing c. 75% power overnight, a looooong list of dark wakes). Went to the Genius bar three times and had one call with their help centre, nothing worked. Then started reading about this problem yesterday.


I did a combination of the following, not sure which one has helped but I only lost about 15% last night. 15%! It's like Christmas come early!

- Updated El Capitan to 10.11.1 (released end Oct) - an Apple Genius said they specifically addressed battery drain in this update.

- Cleared Library / System Extensions folder (took a back-up in case I was deleting anything important)

- Deleted Dropbox (I hate that piece of ...)

- and removed Dropbox from Users & Groups > Login Items -- this trick isn't mentioned on this post, found it on macrumors.

- ran MalwareBytes (it found two offending items)

- deleted something called Facebook Sidebar Clean-Up tool that I don't remember installing.


Only 3 dark wakes last evening, down from c. 600.

Dec 4, 2015 6:12 AM in response to bigpinya

Wow, that's a good news. At lease we now know that the problem can be fixed by removing some useless softwares. It never come to me that dropbox may cause dark wakes, I'll give it a try. Maybe not uninstalling, but turning off dropbox's 'inside lan sync' feature only. Thanks for sharing.

BTW: what do you use in place of dropbox?

Dec 4, 2015 10:58 AM in response to bigpinya

Good to see some improvements on your side!
My mac lost 20% battery at night with activity every minute (no dropbox installed). I tried almost everything I've found on the internet and HalFtaN sleep/wake script really helped me.

I installed SleepWatcher and used HalFtaN's scripts and while in sleep-mode for 18hours, I've lost 1% battery (max) which makes me smile everytime I think about it.

I really don't need WiFi to be enabled during sleep-mode so this was for me the best fix for this existing problem.


I also want to note that 10.11.1 did not fix the problem for me. I do have read that 10.11.2 will address networking, but I don't know if this problem will be adressed by Apple.

Jan 16, 2016 8:27 AM in response to stanft

I have the same problem.

interval 900 just equals to 15 mins, and remote ip is apple's ip. It's force iCloud sync?

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132850: wl0: setup_keepalive: interval 900, retry_interval 30, retry_count 10

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132861: wl0: setup_keepalive: Local IP: 10.0.1.107

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132866: wl0: setup_keepalive: Remote IP: 17.143.163.33

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132872: wl0: setup_keepalive: Local port: 49875, Remote port: 5223

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132878: wl0: setup_keepalive: Seq: 2837590768, Ack: 3688882468, Win size: 4096

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132900: wl0: MDNS: IPV4 Addr: 10.0.1.107

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132905: wl0: MDNS: IPV6 Addr: fe80:0:0:0:a299:9bff:fe1a:2f1d

16/1/17 上午12:00:24.000 kernel[0]: ARPT: 1609.132911: wl0: MDNS: 0 SRV Recs, 0 TXT Recs


And this, burning CPU!


com.apple.sbd98.946:17.74304937.6 MB0 字节0 字节004.1 MB0 字节6164 位0 字节0 字节98.9-3.7 MB396 KB9,681.70 字节

Jan 16, 2016 7:19 PM in response to truncatei

I have a Late 2013 Retina macbook pro with 10.10.5, it never wakes up. This mac is 10.11.2, 2015 early. My home router is netgear with recently dd-wrt.

com.apple.bd disappeared from top cup list after relogin to iCloud.

Update(pmset -g log):


2016-01-17 11:01:51 +0800 Notification Display is turned off

2016-01-17 11:01:51 +0800 Assertions PID 1785(AddressBookSourceSync) Summary PreventUserIdleSystemSleep "Address Book Source Sync" 00:05:11 id:0x0x1000021b3 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:01:51 +0800 Assertions PID 1892(rcd) Summary UserIsActive "com.apple.rcdevent" 00:01:03 id:0x0x900000416 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:01:51 +0800 Assertions PID 99(hidd) Summary UserIsActive "com.apple.iohideventsystem.queue.tickle" 00:08:51 id:0x0x900002046 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:01:51 +0800 Assertions Kernel Idle sleep preventers: -None-

2016-01-17 11:01:51 +0800 Assertions PID 53(powerd) Created InternalPreventSleep "com.apple.powermanagement.darkwakelinger" 00:00:00 id:0x0xd0000042e [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp]

2016-01-17 11:02:06 +0800 Assertions PID 53(powerd) TimedOut InternalPreventSleep "com.apple.powermanagement.darkwakelinger" 00:00:15 id:0x0xd0000042e [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp]

2016-01-17 11:02:06 +0800 Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 98)

2016-01-17 11:02:06 +0800 Sleep Entering Sleep state due to 'Clamshell Sleep':TCPKeepAlive=active Using Batt (Charge:98%) 62 secs

2016-01-17 11:02:09 +0800 Wake Requests [*proc=mDNSResponder request=Maintenance inDelta=7197] [proc=powerd request=TCPKATurnOff inDelta=43242]

2016-01-17 11:02:09 +0800 PM Client Acks Delays to Sleep notifications: [com.apple.apsd is slow(2944 ms)]

2016-01-17 11:03:08 +0800 Kernel Client Acks Delays to Sleep notifications: [AppleThunderboltNHIType2 driver is slow(msg: WillChangeState to 2)(361 ms)] [RP03 driver is slow(msg: SetState to 0)(1006 ms)]

2016-01-17 11:03:08 +0800 Assertions PID 91(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00000442 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:03:08 +0800 Assertions PID 91(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00000442 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:03:08 +0800 Assertions PID 53(powerd) Created InternalPreventSleep "Network wake delay proxy assertion" 00:00:00 id:0x0xd00000445 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:03:08 +0800 DarkWake DarkWake [CDN] due to ARPT/Network: Using BATT (Charge:98%) 30 secs

2016-01-17 11:03:08 +0800 WakeDetails DriverReason:WiFi.TCPData - DriverDetails:

2016-01-17 11:03:08 +0800 Kernel Client Acks Delays to Wake notifications: [SSP3 driver is slow(msg: SetState to 3)(403 ms)] [AirPort_Brcm4360 driver is slow(msg: SetState to 2)(357 ms)]

2016-01-17 11:03:38 +0800 Assertions PID 53(powerd) TimedOut InternalPreventSleep "Network wake delay proxy assertion" 00:00:30 id:0x0xd00000445 [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp]

2016-01-17 11:03:38 +0800 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:98%) 61 secs

2016-01-17 11:03:40 +0800 Wake Requests [*proc=mDNSResponder request=Maintenance inDelta=7198] [proc=powerd request=TCPKATurnOff inDelta=43151]

2016-01-17 11:03:40 +0800 PM Client Acks Delays to Sleep notifications: [com.apple.apsd is slow(1975 ms)]

2016-01-17 11:04:39 +0800 Kernel Client Acks Delays to Sleep notifications: [AppleThunderboltNHIType2 driver is slow(msg: WillChangeState to 2)(362 ms)] [RP03 driver is slow(msg: SetState to 0)(1007 ms)]

2016-01-17 11:04:39 +0800 Assertions PID 91(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00000452 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:04:39 +0800 Assertions PID 91(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00000452 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:04:39 +0800 Assertions PID 53(powerd) Created InternalPreventSleep "Network wake delay proxy assertion" 00:00:00 id:0x0xd00000455 [System: PrevIdle DeclUser kDisp]

2016-01-17 11:04:39 +0800 DarkWake DarkWake [CDN] due to ARPT/Network: Using BATT (Charge:98%) 30 secs

2016-01-17 11:04:39 +0800 WakeDetails DriverReason:WiFi.TCPData - DriverDetails:

2016-01-17 11:04:39 +0800 Kernel Client Acks Delays to Wake notifications: [SSP3 driver is slow(msg: SetState to 3)(404 ms)] [AirPort_Brcm4360 driver is slow(msg: SetState to 2)(357 ms)] [com_apple_driver_AppleUSBCardReaderDriverNub driver is slow(msg: SetState to 2)(643 ms)]

2016-01-17 11:04:42 +0800 Assertions PID 1892(rcd) TimedOut UserIsActive "com.apple.rcdevent" 00:03:53 id:0x0x900000416 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp]

2016-01-17 11:04:42 +0800 Summary- [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] Using Batt(Charge: 98)

2016-01-17 11:05:09 +0800 Assertions PID 53(powerd) TimedOut InternalPreventSleep "Network wake delay proxy assertion" 00:00:30 id:0x0xd00000455 [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp]

2016-01-17 11:05:09 +0800 Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 98)

2016-01-17 11:05:09 +0800 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:98%) 52 secs

2016-01-17 11:05:11 +0800 Wake Requests [*proc=mDNSResponder request=Maintenance inDelta=7198] [proc=powerd request=TCPKATurnOff inDelta=43060]

2016-01-17 11:05:11 +0800 PM Client Acks Delays to Sleep notifications: [com.apple.apsd is slow(1936 ms)]

2016-01-17 11:06:01 +0800 Kernel Client Acks Delays to Sleep notifications: [AppleThunderboltNHIType2 driver is slow(msg: WillChangeState to 2)(362 ms)] [RP03 driver is slow(msg: SetState to 0)(1006 ms)]

2016-01-17 11:06:01 +0800 Assertions Kernel Idle sleep preventers: IODisplayWrangler

2016-01-17 11:06:01 +0800 Notification Display is turned on

Jan 19, 2016 10:33 PM in response to truncatei

Hi all


Just to add that I have the same issue with battery drain whilst sleeping (early 2015 rMBP)

I've done a fresh install (although I did restore my settings, not apps, from the TimeMachine backup) and the problem persisted.


I didn't notice when mine began, but I *think* it's since El Capitan was installed.

One thing I've now identified is that if I use my 2.4Ghz network it doesn't occur, but definitely does on my 5Ghz network.


When it happens, this is what's shown in the syslog

Jan 20 06:14:39 MBP kernel[0] <Notice>: Wake reason: ARPT (Network)

Jan 20 06:14:39 MBP kernel[0] <Notice>: ARPT: 4713.028235: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Jan 20 06:14:39 MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService::processWakeReason Wake reason: Host (0x01)

Jan 20 06:14:39 MacBook-Pro kernel[0] <Notice>: ARPT: 4713.155826: ARPT: Wake Reason: Wake on Scan offload


And the relevant pmset output:

2016-01-20 06:14:39 +0000 Kernel Client Acks Delays to Sleep notifications: [AppleThunderboltNHIType2 driver is slow(msg: WillChangeState to 2)(363 ms)] [RP03 driver is slow(msg: SetState to 0)(1004 ms)]

2016-01-20 06:14:39 +0000 Assertions PID 90(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000003cd [System: No Assertions]

2016-01-20 06:14:39 +0000 Assertions PID 90(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000003cd [System: No Assertions]

2016-01-20 06:14:39 +0000 Assertions PID 54(powerd) Created InternalPreventSleep "Network wake delay proxy assertion" 00:00:00 id:0x0xd000003ce [System: No Assertions]

2016-01-20 06:14:39 +0000 DarkWake DarkWake [CDN] due to ARPT/Network: Using BATT (Charge:100%) 30 secs

2016-01-20 06:14:39 +0000 WakeDetails DriverReason:WiFi.ScanOffload-Unknown - DriverDetails:

2016-01-20 06:14:39 +0000 Kernel Client Acks Delays to Wake notifications: [SSP3 driver is slow(msg: SetState to 3)(406 ms)] [AirPort_Brcm4360 driver is slow(msg: SetState to 2)(354 ms)] [com_apple_driver_AppleUSBCardReaderDriverNub driver is slow(msg: SetState to 2)(643 ms)]

Jan 20, 2016 12:35 PM in response to MilesR

An update to my previous post.


After a great response from Apple support (their support team is really good!), it turns out that my Zyxel wireless access point (NWA-1123AC) had a stability issue with the latest firmware, which was subsequently pulled (but after I'd already seen and applied it).

I reverted back to the previous version of firmware for it and the constant sleep<>wake seems to have gone away.

Feb 1, 2016 7:28 AM in response to MilesR

I had the same issue since i bought the new Apple TV 4. So i tried to unplug it, and my iMac would then stay asleep as it should.

So it 's probably connected with iTunes sharing or the Apple TV trying to communicate with the mac...

Unfortunately, as i use my Apple TV daily i have to leave it on all the time so my iMac will not stay asleep...

I haven't found any other solution so far.


As a side note, the OS X system logs will not give any clue about the wake/sleep problems. pmset -g log command will give much more detailed information.


Hope this helps.

Feb 11, 2016 10:59 AM in response to davezachc

I have two early 2015 rMBP 13.3", one has this problem severely and one does not.


I've lost ~52% battery drain overnight at times while sleeping. Reinstalling the OS seemed to work for a couple days, now problem is back. Unsure what exactly is causing it. I get hundreds of wakes over the course of a night.


Here is a snip from a 1 hour period:


Feb 11 03:01:30 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:01:30 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31591.996684: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:01:30 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31592.127427: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:01:30 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:03:08 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:03:08 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31626.539126: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:03:08 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31626.658775: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:03:08 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:04:38 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:04:38 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31661.113598: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:04:38 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31661.231683: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:04:38 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:07:27 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:07:27 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31695.662684: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:07:27 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31695.795308: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:07:27 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:09:04 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:09:04 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31730.213676: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:09:04 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31730.340925: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:09:04 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:11:46 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:11:46 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31764.757033: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:11:46 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31764.889871: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:11:46 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:13:17 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:13:17 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31799.315654: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:13:17 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31799.433513: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:13:17 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:14:47 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:14:47 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31833.865603: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:14:47 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31833.989995: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:14:47 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:16:16 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:16:16 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31868.400057: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:16:16 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31868.534505: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:16:16 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:17:47 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:17:47 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31903.011374: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:17:47 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31903.131641: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:17:47 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:22:06 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:22:06 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31937.565197: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:22:06 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31937.796807: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:22:06 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:23:34 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:23:34 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31972.237627: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:23:34 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 31972.368826: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:23:34 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:26:45 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:26:45 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32005.887755: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:26:45 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32006.004994: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:26:45 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:28:26 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:28:26 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32040.483958: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:28:26 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32040.612984: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:28:26 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:29:56 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:29:56 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32075.030868: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:29:56 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32075.150065: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:29:56 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:31:26 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:31:26 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32109.578992: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:31:26 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32109.708061: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:31:26 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:32:44 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:32:44 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32144.122667: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:32:44 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32144.257089: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:32:44 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:35:45 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:35:45 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32178.005231: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:35:45 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32178.141804: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:35:45 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:37:02 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:37:02 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32212.561670: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:37:02 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32212.699308: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:37:02 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:38:39 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:38:39 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32246.344967: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:38:39 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32246.474742: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:38:39 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:40:12 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:40:12 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32280.899709: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:40:12 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32281.016547: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:40:12 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:41:20 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:41:20 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32315.456853: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:41:20 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32315.577755: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:41:20 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:43:01 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:43:01 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32350.016296: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:43:01 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32350.137016: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:43:01 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:44:36 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:44:36 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32383.963959: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:44:36 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32384.081826: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:44:36 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:46:06 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:46:06 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32418.565432: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:46:06 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32418.697614: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:46:06 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:51:30 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:51:30 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32452.496457: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:51:30 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32452.629855: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:51:30 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:52:55 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:52:55 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32487.065741: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:52:55 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32487.196218: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:52:55 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:54:25 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:54:25 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32521.612338: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:54:25 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32521.739993: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:54:25 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:55:55 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:55:55 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32556.178117: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:55:55 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32556.307494: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:55:55 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:57:28 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:57:28 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32590.003818: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:57:28 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32590.121316: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:57:28 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

Feb 11 03:59:08 Lianas-MacBook-Pro kernel[0] <Notice>: Wake reason: ARPT (Network)

Feb 11 03:59:08 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32623.627603: ARPT: Wake Reason: Wake on Scan offload; Disconnect reason: Unknown

Feb 11 03:59:08 Lianas-MacBook-Pro kernel[0] <Notice>: ARPT: 32623.754123: ARPT: Wake Reason: Wake on Scan offload

Feb 11 03:59:08 Lianas-MacBook-Pro kernel[0] <Notice>: [HID] [ATC] AppleDeviceManagementHIDEventService:User uploaded filerocessWakeReason Wake reason: Host (0x01)

rMBP 2015 Wake Reason: ARPT (Network)

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.