docker / for-win

Bug reports for Docker Desktop for Windows
https://www.docker.com/products/docker#/windows
1.86k stars 288 forks source link

Error: A firewall is blocking file Sharing between Windows and the containers #355

Closed medhatelmasry closed 6 years ago

medhatelmasry commented 7 years ago

Expected behavior

I am using Docker for windows 10 with a Linux container. I am unable to share a drive. I get a firewall error when I do so similar to case https://github.com/docker/for-win/issues/345. This was working OK until I reset my credentials and it stopped working.

Actual behavior

When I try to share any drive I get error: A firewall is blocking file Sharing between Windows and the containers. See documentation for more info.

Information

Diagnostic ID is 1ED2444F-86D2-400A-A2AC-165C6FA6599A/2016-12-24_21-28-25

Steps to reproduce the behavior

  1. Right-click on the docker icon in the Windows 10 tray and select Settings
  2. Click on Shared Drives tab
  3. Enable C, D, and E drives then click on Apply button
  4. Following error is displayed: A firewall is blocking file Sharing between Windows and the containers. See documentation for more info.
sugun999 commented 7 years ago

Do you have any 3rd party security software(example, f-secure) installed on your system? If so, you need to open firewall with security software

johnrb2 commented 7 years ago

I got this issue and it was coming from my cisco vpn. Once I disabled the VPN I could share just fine but now I don't have access to the databases I need....

medhatelmasry commented 7 years ago

The only firewall on my computer is the generic Windows Firewall for Windows 10. I see only one inbound rule in allowing port 445 from local address 10.0.75.1 to remote address 10.0.75.2.

I still get the same error when I disable windows firewall. I am not sure what else to do.

On Wed, Dec 28, 2016 at 12:11 PM, John Bench notifications@github.com wrote:

I got this issue and it was coming from my cisco vpn. Once I disabled the VPN I could share just fine but now I don't have access to the databases I need....

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/docker/for-win/issues/355#issuecomment-269533695, or mute the thread https://github.com/notifications/unsubscribe-auth/ABvKQkNtffSDHwL-GQYrn8Ttw8CAAyQLks5rMsKKgaJpZM4LVWKk .

friism commented 7 years ago

@simonferquel do you have time to look at @medhatelmasry dump?

simonferquel commented 7 years ago

@medhatelmasry I see that you are using an insider preview of Windows. Unfortunately in latest build there seem to have a bug with Samba sharing preventing drive sharing with the linux VM to work.

We don't have any workaround for now (except reverting to Windows 14393)

medhatelmasry commented 7 years ago

Simon,

Thanks for finding out the root of the problem. I will need to wait until this is fixed with subsequent windows insider releases.

Medhat

On Jan 5, 2017 5:00 AM, "Simon Ferquel" notifications@github.com wrote:

@medhatelmasry https://github.com/medhatelmasry I see that you are using an insider preview of Windows. Unfortunately in latest build there seem to have a bug with Samba sharing preventing drive sharing with the linux VM to work.

We don't have any workaround for now (except reverting to Windows 14393)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/docker/for-win/issues/355#issuecomment-270638581, or mute the thread https://github.com/notifications/unsubscribe-auth/ABvKQrWhBXuJHpR_XVfmBNjADaa-uqM0ks5rPOlggaJpZM4LVWKk .

denisvmedia commented 7 years ago

@simonferquel, I don't think there is a bug in Windows. It used to work for me (and still works on another PC with the most recent insider release), but then I had to reset the settings of Docker, after that it stopped working.

simonferquel commented 7 years ago

@denisvmedia there was a bug before 15002 with remote access in general (not only Samba File sharing, but also with RDP). I don't know if it did hit everyone though and I suppose Microsoft fixed that in 15002.

denisvmedia commented 7 years ago

@simonferquel unfortunately, I don't know, but what really surprises me that this stopped working only after I did the reset in Docker. So even if there is a bug in Windows, there must be a workaround - otherwise how could it work before? (and still works on another PC) I'd be happy to find it... If I can help anyhow, I'm open for that, because currently my work is completely stopped due to this issue :(

Update: As of RDP - it works for me right now - I'm writing this from an external network on my Desktop through RDP.

denisvmedia commented 7 years ago

I solved it! Now it works again. I found a comment of @gorbunovav in #114, it worked for me:

Try to share the drive manually in Windows and check, that you can access

\10.0.75.1[Drive Letter]

If it doesn't work - check, that file sharing is enabled for the docker interface location (Public network by default) and try to remove, then add back 'File and Printer Sharing for MS Networks' in 'vEthernet (DockerNAT)' network adapter's properties.

(I've also moved interface to the 'Private network' segment:

Set-NetConnectionProfile -InterfaceAlias "vEthernet (DockerNAT)" -NetworkCategory Private

in the PowerShell)

cmurczek commented 7 years ago

I see this issue in Win10 Insider build 15007. Just submitted feedback to MS about this since it had been fixed in a prev. (way older, might have been 14393) Insider build. Currently updating to 15014.

cmurczek commented 7 years ago

Volume mapping is working again in Win10 Insider build 15014.

phillipsharring commented 7 years ago

@johnrb2 - did you ever figure this out with Cisco VPN? My team are all using a docker container for development and it's made WFH really annoying. Thoughts? Thanks, Phillip

phillipsharring commented 7 years ago

Markdown seems to have eaten the solution @denisvmedia posted. In a file explorer, go to: \\10.0.75.1\C

johnrb2 commented 7 years ago

@philsown yeah I just had to change the address in network settings to 192.168.x.x since the VPN was already using the 10.0 ones.

johnrb2 commented 7 years ago

@philsown there is another thread regarding the Cisco VPN that my solution didn't work for @sugun999 he or she could use some help.

johnrb2 commented 7 years ago

On issue #360

absalan commented 7 years ago

I had same issue and I just solved it. My internet security software was blocking file and printer sharing. If you do too, Just right click on the drive that you want to share with docker in file explorer and click on Sharing tap. Than click on advanced sharing. On that popup check the "Share this folder" checkbox and click ok. If your security software warned you just click on it and enable file sharing on it and click ok. Now if you go to docker settings and share the drive, it will work.

sthuber90 commented 7 years ago

@absalan When I share my C: drive manually thorugh the advanced sharing settings and then try to activate in the docker settings, I get the notification that firewall is blocking, which it is not (#466) and after that the C: drive is not shared anymore.

rn commented 7 years ago

@sthuber90 that's interesting. If you don't enable sharing in the Advanced Settings does it work? Also, how do you enable it? There are several options in the menu. Could you maybe share a screenshot? thanks

absalan commented 7 years ago

@sthuber90 Try to share another drive. windows does have some policy for windows drive and that's why it's preventing you from sharing drive C.

sthuber90 commented 7 years ago

@absalan The computer is work on is a corporate one and only has a C drive, otherwise I would have tested sharing an other drive.

@rneugeba GIF showing firewall and C drive sharing error

[08:31:05.005][SharedDrivesSettings][Info   ] Apply shared drive settings
[08:31:05.007][NamedPipeClient][Info   ] Sending Mount(C, DOMAIN\USER:**********, Docker.Core.Settings)...
[08:31:06.008][NamedPipeServer][Info   ] Mount(C, DOMAIN\USER:**********, Docker.Core.Settings)
[08:31:06.008][SambaShare     ][Info   ] Mount C
[08:31:06.048][Cmd            ][Info   ] Share name        C
[08:31:06.048][Cmd            ][Info   ] Path              C:\
[08:31:06.048][Cmd            ][Info   ] Remark            
[08:31:06.048][Cmd            ][Info   ] Maximum users     No limit
[08:31:06.050][Cmd            ][Info   ] Users             
[08:31:06.050][Cmd            ][Info   ] Caching           Manual caching of documents
[08:31:06.050][Cmd            ][Info   ] Permission        Everyone, FULL
[08:31:06.050][Cmd            ][Info   ] 
[08:31:06.050][Cmd            ][Info   ] The command completed successfully.
[08:31:06.050][Cmd            ][Info   ] 
[08:31:06.054][SambaShare     ][Info   ] "C" is shared
[08:31:06.108][SambaShare     ][Info   ] Username: USER
[08:31:06.108][SambaShare     ][Info   ] Host IP: 10.0.75.1
[08:31:07.830][ApiProxy       ][Info   ] proxy << POST /v1.26/containers/be1e37c16a936806e798b7d3ecd17d2a39c3a4f596a98341e17cc05748c5da42/attach?stderr=1&stdin=1&stdout=1&stream=1
[08:31:08.187][ApiProxy       ][Info   ] Cancel connection...
[08:31:08.191][SambaShare     ][Error  ] Unable to mount C drive: firewall is blocking
[08:31:08.191][SambaShare     ][Info   ] Removing share C

Even though it says that the firwall is blocking this cannot be the case, as mentioned here.

cmurczek commented 7 years ago

This has got nothing to do with suspected policies for the C drive. I just tried to share D and got the same results: [10:54:49.631][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [10:54:50.636][NamedPipeServer][Info ] GetDefaultVhdxPath() [10:54:51.643][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [10:54:51.642][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:01.0057637. [10:54:53.485][SharedDrivesSettings][Info ] Apply shared drive settings [10:54:53.486][NamedPipeClient][Info ] Sending Unmount(C, Docker.Core.Settings)... [10:54:53.487][NamedPipeServer][Info ] Unmount(C, Docker.Core.Settings) [10:54:53.487][SambaShare ][Info ] Unmount C [10:54:53.652][ApiProxy ][Info ] proxy >> GET /_ping [10:54:53.652][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:53.656][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:53.660][ApiProxy ][Info ] proxy << GET /_ping [10:54:53.663][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [10:54:53.663][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:53.666][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:53.924][ApiProxy ][Info ] proxy << POST /v1.26/images/load?quiet=1 [10:54:54.104][ApiProxy ][Info ] proxy >> GET /_ping [10:54:54.104][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.111][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.126][ApiProxy ][Info ] proxy << GET /_ping [10:54:54.145][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [rewriteBinds] [10:54:54.172][ApiProxy ][Info ] Failed to Walk to [snapshots f483c5cc239a2903863cbc3ee314daa95d60a1ee ro com.docker.driver.amd64-linux proxy http] 9p: No such file or directory [10:54:54.176][ApiProxy ][Info ] Failed to read proxies/http from snaphshot p9p.MessageRerror{Ename:"No such file or directory"} [10:54:54.176][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [10:54:54.176][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.180][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.353][ApiProxy ][Info ] proxy << POST /v1.26/containers/create [10:54:54.368][ApiProxy ][Info ] proxy >> POST /v1.26/containers/d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b/attach?stderr=1&stdout=1&stream=1 [10:54:54.368][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.370][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.372][ApiProxy ][Info ] Upgrading to raw stream [10:54:54.375][ApiProxy ][Info ] proxy >> GET /v1.26/events?filters=%7B%22container%22%3A%7B%22d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [10:54:54.375][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.376][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.380][ApiProxy ][Info ] proxy >> POST /v1.26/containers/d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b/start [start] [10:54:54.380][ApiProxy ][Info ] proxy >> POST /v1.26/containers/d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b/start [10:54:54.380][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.381][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:54.772][ApiProxy ][Info ] proxy << POST /v1.26/containers/d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b/start [10:54:55.323][NamedPipeClient][Info ] Received response for Unmount [10:54:55.308][NamedPipeServer][Info ] Unmount done in 00:00:01.8214994. [10:54:55.338][NamedPipeClient][Info ] Sending Mount(D, ***@***:**********, Docker.Core.Settings)... [10:54:55.322][ApiProxy ][Info ] proxy << POST /v1.26/containers/d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b/attach?stderr=1&stdout=1&stream=1 [10:54:55.322][ApiProxy ][Info ] Cancel connection... [10:54:55.323][ApiProxy ][Info ] proxy << GET /v1.26/events?filters=%7B%22container%22%3A%7B%22d18518d66c7d9c0bc61af40b892fe13b1768d34201d8310da310becd806d213b%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [10:54:55.996][NamedPipeServer][Info ] Mount(D, ***@***:**********, Docker.Core.Settings) [10:54:55.996][SambaShare ][Info ] Mount D [10:54:56.056][Cmd ][Info ] This shared resource does not exist. [10:54:56.056][Cmd ][Info ] [10:54:56.056][Cmd ][Info ] More help is available by typing NET HELPMSG 2310. [10:54:56.056][Cmd ][Info ] [10:54:56.056][SambaShare ][Info ] "D" is not shared [10:54:56.057][SambaShare ][Info ] Creating share "D:\" as "D" with Full Control to "christoph.murczek@outlook.com" [10:54:56.190][Cmd ][Info ] D was shared successfully. [10:54:56.190][Cmd ][Info ] [10:54:56.267][Cmd ][Info ] Share name D [10:54:56.267][Cmd ][Info ] Path D:\ [10:54:56.267][Cmd ][Info ] Remark [10:54:56.267][Cmd ][Info ] Maximum users No limit [10:54:56.268][Cmd ][Info ] Users [10:54:56.269][Cmd ][Info ] Caching Caching disabled [10:54:56.270][Cmd ][Info ] Permission ***\***, FULL [10:54:56.270][Cmd ][Info ] [10:54:56.270][Cmd ][Info ] The command completed successfully. [10:54:56.270][Cmd ][Info ] [10:54:56.285][SambaShare ][Info ] "D" is shared [10:54:56.398][SambaShare ][Info ] Username: *** [10:54:56.401][SambaShare ][Info ] Host IP: 10.0.75.1 [10:54:56.401][SambaShare ][Info ] Cifs options: noperm,iocharset=utf8,nobrl,mfsymlinks,vers=3.02,domain=SURFACE-CMU [10:54:56.525][ApiProxy ][Info ] proxy >> GET /_ping [10:54:56.526][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.527][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.532][ApiProxy ][Info ] proxy << GET /_ping [10:54:56.535][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [10:54:56.535][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.536][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.703][ApiProxy ][Info ] proxy << POST /v1.26/images/load?quiet=1 [10:54:56.847][ApiProxy ][Info ] proxy >> GET /_ping [10:54:56.847][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.848][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.851][ApiProxy ][Info ] proxy << GET /_ping [10:54:56.859][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [rewriteBinds] [10:54:56.876][ApiProxy ][Info ] Failed to Walk to [snapshots f483c5cc239a2903863cbc3ee314daa95d60a1ee ro com.docker.driver.amd64-linux proxy http] 9p: No such file or directory [10:54:56.879][ApiProxy ][Info ] Failed to read proxies/http from snaphshot p9p.MessageRerror{Ename:"No such file or directory"} [10:54:56.879][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [10:54:56.879][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:56.882][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.063][ApiProxy ][Info ] proxy << POST /v1.26/containers/create [10:54:57.080][ApiProxy ][Info ] proxy >> POST /v1.26/containers/a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803/attach?stderr=1&stdin=1&stdout=1&stream=1 [10:54:57.080][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.081][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.083][ApiProxy ][Info ] Upgrading to raw stream [10:54:57.085][ApiProxy ][Info ] proxy >> GET /v1.26/events?filters=%7B%22container%22%3A%7B%22a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [10:54:57.085][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.086][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.088][ApiProxy ][Info ] proxy >> POST /v1.26/containers/a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803/start [start] [10:54:57.088][ApiProxy ][Info ] proxy >> POST /v1.26/containers/a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803/start [10:54:57.088][ApiProxy ][Info ] Dial Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.089][ApiProxy ][Info ] Successfully dialed Hyper-V socket 00c5797d-99af-4ba5-abbf-702f0b4c71e7:23a432c2-537a-4291-bcb5-d62504644739 [10:54:57.598][ApiProxy ][Info ] proxy << POST /v1.26/containers/a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803/start [10:54:58.692][ApiProxy ][Info ] proxy << POST /v1.26/containers/a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803/attach?stderr=1&stdin=1&stdout=1&stream=1 [10:54:59.116][ApiProxy ][Info ] Cancel connection... [10:54:59.125][ApiProxy ][Info ] proxy << GET /v1.26/events?filters=%7B%22container%22%3A%7B%22a58989958bb9d51572e93a2617c7eb56c45faf14ae9e38495af5d37f265f6803%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [10:54:59.118][SambaShare ][Error ] Unable to mount D drive: firewall is blocking [10:54:59.125][SambaShare ][Info ] Removing share D [10:54:59.185][NamedPipeClient][Info ] Received response for Mount [10:54:59.183][NamedPipeServer][Info ] Mount done in 00:00:03.1876468. [10:55:00.946][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [10:55:00.973][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [10:55:00.956][NamedPipeServer][Info ] GetDefaultVhdxPath() [10:55:00.959][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0030104.

absalan commented 7 years ago

@sthuber90 try to shrink volume on disk management to create another drive. I guess windows doesn't allow you to share the drive C for security reason.

@hindsight20-20 The issue you have is for your 3rd party security software or windows firewall. You have to make sure to enable file and drive sharing through those to let you share your drive.

sthuber90 commented 7 years ago

@absalan It's not a windows issue. When I try with my private PC sharing the C drive works just fine

cmurczek commented 7 years ago

@absalan You mean like this: Win FW FileAndPrinterSharingRules

In addition there are the 2 rules introduced by the docker installer: Win FW Docker specific rules

That configuration was already there when I ran the test today. Is there anything missing?

I even bumped the DockerNAT NIC to private profile (Set-NetConnectionProfile -NetworkCategory Private) to make sure File and Printer sharing is active (since it is disabled by default in the public profile). I also disabled the firewall for the DockerNAT NIC in all profiles (domain, public, private) to make sure it doesn’t interfere. Disable Win FW on DockerNAT NIC

Still same results. ☹ Any ideas what else I could try?

absalan commented 7 years ago

@hindsight20-20 What about your security software? It has own firewall and it will block the connection. The last thing would be that to check.

cmurczek commented 7 years ago

Just using Windows Firewall and Defender. Using the given config everything should be good, right? If so, I guess I’ll have to wait for the next insider build and hope MS will be using the relevant pieces of code from 14393 or 15014. Strange thing is though, that this was working in the current build for like 5 min or so at some point. I don’t get it :|

Sent from my Windows 10 phone

From: davidmailto:notifications@github.com Sent: Tuesday, 21 February 2017 08:36 To: docker/for-winmailto:for-win@noreply.github.com Cc: Christoph Murczekmailto:cmu@outlook.at; Mentionmailto:mention@noreply.github.com Subject: Re: [docker/for-win] Error: A firewall is blocking file Sharing between Windows and the containers (#355)

@hindsight20-20https://github.com/hindsight20-20 What about your security software? It has own firewall and it will block the connection. The last thing would be that to check.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/docker/for-win/issues/355#issuecomment-281267000, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ACOwbMJA8R32NmPc3YOUL60M80g_7Lxdks5repQMgaJpZM4LVWKk.

dgageot commented 7 years ago

Hi @medhatelmasry @hindsight20-20 @sthuber90, we've tried to fix this issue in a test release that can be downloaded here: https://download-stage.docker.com/win/samba-experiment/10154/InstallDocker.msi

Warning: This version will not auto-update to a newer version. It's only meant for testing. You must uninstall the version you have currently installed before you install this test version.

cmurczek commented 7 years ago

Hi @dgageot , sorry to be the bearer of bad news, but after installing the experimental build I see no changes in behavior. I have attached the log file covering everything after starting the experimental version. I have tried sharing C with FW up, then again with FW deactivated for the DockerNAT NIC and finally a third time after bumping the DockerNat network from public to private profile (with still FW deactivated) and restarting docker (just in case). Hope this helps.

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows 10

Version: 17.03.0-ce-rc1 (10154) Channel: samba-experiment Sha1: c9d10818634709c97d0c66fa31ae3d3a9fc5e9c9 Started on: 2017.02.21 13:14:55.130 Resources: C:\Program Files\Docker\Docker\Resources OS: Windows 10 Pro Insider Preview Edition: Professional Id: 1607 Build: 15031 BuildLabName: 15031.0.amd64fre.rs2_release.170204-1546 File: C:\Users\MyUser\AppData\Local\Docker\log.txt CommandLine: "C:\Program Files\Docker\Docker\Docker for Windows.exe" You can send feedback, including this log file, at https://github.com/docker/for-win/issues [13:14:55.419][GUI ][Info ] Starting... [13:14:56.380][Tracking ][Info ] Crash report and usage statistics are enabled [13:14:56.393][SegmentApi ][Info ] Usage statistic: appLaunched [13:14:56.743][NamedPipeClient][Info ] Sending Version()... [13:14:56.776][NamedPipeClient][Info ] Received response for Version [13:14:56.778][SegmentApi ][Info ] Usage statistic: heartbeat [13:14:49.166][BackendServer ][Info ] Started [13:14:56.773][NamedPipeServer][Info ] Version() [13:14:56.773][NamedPipeServer][Info ] Version done in 00:00:00.0004993. [13:14:57.743][SegmentApi ][Info ] Usage statistic: eventNotElectedForFeature [13:14:57.744][SegmentApi ][Info ] Usage statistic: stateFeatureDisabled [13:14:57.962][Updater ][Info ] Checking for updates on channel samba-experiment... [13:14:57.962][Notifications ][Info ] Docker is starting... [13:14:57.990][NamedPipeClient][Info ] Sending Start(Docker.Core.Settings)... [13:14:57.995][NamedPipeServer][Info ] Start(Docker.Core.Settings) [13:14:58.002][PowerMode ][Info ] Stop [13:14:58.020][HyperV ][Info ] Stop [13:14:58.076][PowerShell ][Info ] Run script with parameters: -Stop True... [13:14:58.115][PowerShell ][Info ] Creating a Runspace Pool... [13:14:58.615][UpdateFeedDownloader][Error ] The remote server returned an error: (403) Forbidden. [13:14:58.615][Updater ][Info ] No update available [13:14:58.895][PowerShell ][Info ] Runspace Pool created (Min=1, Max=2) [13:14:59.149][HyperV ][Info ] Script started at 13:14:59.138 [13:15:04.585][HyperV ][Info ] Module loaded at 13:15:04.585 [13:15:05.178][HyperV ][Info ] VM MobyLinuxVM does not exist [13:15:05.180][HyperV ][Debug ] [stop] took 00:00:07.1455010 to run [13:15:05.180][OptimizeDisk ][Info ] Optimize [13:15:05.181][PowerShell ][Info ] Run script... [13:15:05.224][Moby ][Info ] Stop [13:15:05.268][HyperVGuids ][Info ] Installing GUIDs... [13:15:05.268][PowerMode ][Info ] Start [13:15:05.271][HyperVGuids ][Info ] GUIDs installed [13:15:05.272][HyperV ][Info ] Create [13:15:05.273][PowerShell ][Info ] Run script with parameters: -Create True -VhdPathOverride -SwitchSubnetAddress 10.0.75.0 -SwitchSubnetMaskSize 24 -CPUs 2 -Memory 2048 -IsoFile C:\Program Files\Docker\Docker\Resources\mobylinux.iso... [13:15:05.279][Firewall ][Info ] Removing all existing rules... [13:15:05.313][HyperV ][Info ] Script started at 13:15:05.313 [13:15:05.334][HyperV ][Info ] Module loaded at 13:15:05.334 [13:15:06.229][HyperV ][Info ] Creating Switch: DockerNAT... [13:15:09.773][HyperV ][Info ] Switch created. [13:15:11.528][HyperV ][Info ] Set IP address on switch [13:15:14.004][HyperV ][Info ] Creating VM MobyLinuxVM... [13:15:15.342][Firewall ][Info ] All existing rules are removed. [13:15:15.342][Firewall ][Info ] Opening ports for C:\Program Files\Docker\Docker\Resources\com.docker.proxy.exe... [13:15:16.900][HyperV ][Info ] Setting CPUs to 2 and Memory to 2048 MB [13:15:17.237][HyperV ][Info ] Creating dynamic VHD: C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx [13:15:18.734][HyperV ][Info ] Attach VHD C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx [13:15:19.640][HyperV ][Info ] Connect Internal Switch DockerNAT [13:15:20.669][HyperV ][Info ] Attach DVD C:\Program Files\Docker\Docker\Resources\mobylinux.iso [13:15:21.833][HyperV ][Info ] Disabled Guest Service Interface [13:15:21.883][HyperV ][Info ] Enabled Heartbeat [13:15:21.944][HyperV ][Info ] Disabled Key-Value Pair Exchange [13:15:21.990][HyperV ][Info ] Enabled Shutdown [13:15:22.030][HyperV ][Info ] Enabled Time Synchronization [13:15:22.077][HyperV ][Info ] Disabled VSS [13:15:22.624][HyperV ][Info ] VM created. [13:15:22.625][HyperV ][Debug ] [create] took 00:00:17.3527797 to run [13:15:22.625][PowerShell ][Info ] Run script '(Get-VM MobyLinuxVM).Id.Guid'... [13:15:22.728][DataKit ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.db.exe --url hyperv-connect://81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df,\.\pipe\dockerDataBase --color never [13:15:22.742][DataKit ][Info ] Started [13:15:22.761][Database ][Info ] Generating CA Cert Bundle [13:15:22.830][DataKit ][Info ] Starting com.docker.db.exe 0.7.0-34-g6f04213 ... [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/net/config=static [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/net/address=10.0.75.2 [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/net/netmask=255.255.255.0 [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/net/gateway=10.0.75.1 [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/network=hybrid [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/docker/daemon.json={"registry-mirrors":[],"insecure-registries":[]} [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/sysctl.conf= [13:15:22.840][Database ][Info ] Writing com.docker.driver.amd64-linux/native/port-forwarding=true [13:15:22.861][DataKit ][Error ] com.docker.db.exe: Named-pipe connection failed on \.\pipe\dockerDataBase: Unix.Unix_error(Unix.EPIPE, "connect", "") [13:15:22.881][Database ][Info ] CA Cert Bundle Generated [13:15:22.927][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [13:15:22.930][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [13:15:23.844][Database ][Info ] Successfully wrote 8 value(s) [13:15:23.850][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/ssl/certs/ca-certificates.crt=C:\WINDOWS\TEMP\tmp56FC.tmp [13:15:23.910][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [13:15:23.910][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [13:15:24.150][Database ][Info ] Successfully wrote value [13:15:24.161][Moby ][Info ] Connecting... [13:15:24.162][Moby ][Error ] Failed to read Moby's logs: The operation has timed out. [13:15:24.166][HyperV ][Info ] Start [13:15:24.167][PowerShell ][Info ] Run script with parameters: -Start True... [13:15:24.197][HyperV ][Info ] Script started at 13:15:24.196 [13:15:24.229][HyperV ][Info ] Module loaded at 13:15:24.229 [13:15:24.237][HyperV ][Info ] Starting VM MobyLinuxVM... [13:15:30.302][HyperV ][Debug ] [start] took 00:00:06.1359669 to run [13:15:32.228][Moby ][Info ] Connected [13:15:34.645][Moby ][Info ] Performing relocations... done. [13:15:34.645][Moby ][Info ] Booting the kernel. [13:15:34.672][Moby ][Info ] Linux version 4.9.10-moby (root@11fbdc1f630f) (gcc version 6.2.1 20160822 (Alpine 6.2.1) ) #1 SMP Thu Feb 16 09:14:56 UTC 2017 [13:15:34.688][Moby ][Info ] Command line: earlyprintk=ttyS0,115200 console=ttyS0,115200 mobyplatform=windows vsyscall=emulate panic=1 rootdelay=300 noautodetect [13:15:34.689][Moby ][Info ] [13:15:34.718][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [13:15:34.751][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [13:15:34.772][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'

[13:15:34.804][Moby ][Info ] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. [13:15:34.825][Moby ][Info ] x86/fpu: Using 'eager' FPU context switches. [13:15:34.852][Moby ][Info ] e820: BIOS-provided physical RAM map: [13:15:34.868][Moby ][Info ] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable [13:15:34.881][Moby ][Info ] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved [13:15:34.901][Moby ][Info ] BIOS-e820: [mem 0x0000000000100000-0x000000007eeedfff] usable [13:15:34.920][Moby ][Info ] BIOS-e820: [mem 0x000000007eeee000-0x000000007eef1fff] ACPI data [13:15:34.931][Moby ][Info ] BIOS-e820: [mem 0x000000007eef2000-0x000000007ef1afff] reserved [13:15:34.941][Moby ][Info ] BIOS-e820: [mem 0x000000007ef1b000-0x000000007ff9afff] usable [13:15:34.972][Moby ][Info ] BIOS-e820: [mem 0x000000007ff9b000-0x000000007fff2fff] reserved [13:15:34.995][Moby ][Info ] BIOS-e820: [mem 0x000000007fff3000-0x000000007fffafff] ACPI data [13:15:35.006][Moby ][Info ] BIOS-e820: [mem 0x000000007fffb000-0x000000007fffefff] ACPI NVS [13:15:35.037][Moby ][Info ] BIOS-e820: [mem 0x000000007ffff000-0x000000007fffffff] usable [13:15:35.050][Moby ][Info ] bootconsole [earlyser0] enabled [13:15:35.062][Moby ][Info ] NX (Execute Disable) protection: active [13:15:35.081][Moby ][Info ] efi: EFI v2.50 by EDK II [13:15:35.172][Moby ][Info ] efi: ACPI=0x7fffa000 ACPI 2.0=0x7fffa014 SMBIOS=0x7ffd8000 PROP=0x4188480 MEMATTR=0x7f575a98 [13:15:35.197][Moby ][Info ] SMBIOS 2.4 present. [13:15:35.219][Moby ][Info ] Hypervisor detected: Microsoft HyperV [13:15:35.247][Moby ][Info ] HyperV: features 0x2e7f, hints 0x2c2c [13:15:35.264][Moby ][Info ] HyperV: LAPIC Timer Frequency: 0x1e8480 [13:15:35.289][Moby ][Info ] clocksource: hyperv_clocksource: mask: 0xffffffffffffffff max_cycles: 0x24e6a1710, max_idle_ns: 440795202120 ns [13:15:35.312][Moby ][Info ] tsc: Marking TSC unstable due to running on Hyper-V [13:15:35.325][Moby ][Info ] e820: last_pfn = 0x80000 max_arch_pfn = 0x400000000 [13:15:35.344][Moby ][Info ] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[13:15:35.387][Moby ][Info ] Memory KASLR using RDRAND RDTSC... [13:15:35.402][Moby ][Info ] Using GB pages for direct mapping [13:15:35.417][Moby ][Info ] RAMDISK: [mem 0x77cb0000-0x7b27efff] [13:15:35.431][Moby ][Info ] ACPI: Early table checksum verification disabled [13:15:35.465][Moby ][Info ] ACPI: RSDP 0x000000007FFFA014 000024 (v02 VRTUAL) [13:15:35.490][Moby ][Info ] ACPI: XSDT 0x000000007FFF90E8 00005C (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.542][Moby ][Info ] ACPI: FACP 0x000000007FFF7000 0000F4 (v04 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.573][Moby ][Info ] ACPI: DSDT 0x000000007EEEF000 00256F (v02 MSFTVM DSDT01 00000001 MSFT 05000000) [13:15:35.603][Moby ][Info ] ACPI: FACS 0x000000007FFFE000 000040 [13:15:35.636][Moby ][Info ] ACPI: APIC 0x000000007FFF8000 0007D2 (v02 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.688][Moby ][Info ] ACPI: OEM0 0x000000007FFF6000 000064 (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.758][Moby ][Info ] ACPI: WAET 0x000000007FFF5000 000028 (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.795][Moby ][Info ] ACPI: OEM1 0x000000007FFF4000 00009E (v02 MSFTVM UARTS 00000001 MSFT 05000000) [13:15:35.846][Moby ][Info ] ACPI: OEM2 0x000000007FFF3000 0002E2 (v02 MSFTVM VTPM2 00000001 MSFT 05000000) [13:15:35.894][Moby ][Info ] ACPI: SRAT 0x000000007EEEE000 000190 (v02 VRTUAL MICROSFT 00000001 MSFT 00000001) [13:15:35.943][Moby ][Info ] Zone ranges: [13:15:35.974][Moby ][Info ] DMA [mem 0x0000000000001000-0x0000000000ffffff] [13:15:35.991][Moby ][Info ] DMA32 [mem 0x0000000001000000-0x000000007fffffff] [13:15:36.031][Moby ][Info ] Normal empty [13:15:36.062][Moby ][Info ] Movable zone start for each node [13:15:36.078][Moby ][Info ] Early memory node ranges [13:15:36.078][Moby ][Info ] node 0: [mem 0x0000000000001000-0x000000000009ffff] [13:15:36.097][Moby ][Info ] node 0: [mem 0x0000000000100000-0x000000007eeedfff] [13:15:36.132][Moby ][Info ] node 0: [mem 0x000000007ef1b000-0x000000007ff9afff] [13:15:36.148][Moby ][Info ] node 0: [mem 0x000000007ffff000-0x000000007fffffff] [13:15:36.179][Moby ][Info ] Initmem setup node 0 [mem 0x0000000000001000-0x000000007fffffff] [13:15:36.227][Moby ][Info ] ACPI: PM-Timer IO Port: 0x408 [13:15:36.250][Moby ][Info ] ------------[ cut here ]------------ [13:15:36.279][Moby ][Info ] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/apic/apic.c:2065 generic_processor_info+0x149/0x24f [13:15:36.296][Moby ][Info ] Only 127 processors supported.Processor 128/0x80 and the rest are ignored. [13:15:36.333][Moby ][Info ] Modules linked in: [13:15:36.360][Moby ][Info ] CPU: 0 PID: 0 Comm: swapper Not tainted 4.9.10-moby #1 [13:15:36.389][Moby ][Info ] Hardware name: Microsoft Corporation Virtual Machine/Virtual Machine, BIOS Hyper-V UEFI Release v2.0 08/26/2016 [13:15:36.467][Moby ][Info ] 0000000000000000 ffffffff9041a3b7 ffffffff90e03d40 0000000000000000 [13:15:36.517][Moby ][Info ] ffffffff900dcd80 0000000000000080 ffffffff90e03da0 0000000000000000 [13:15:36.596][Moby ][Info ] 0000000000000014 0000000000000000 0000000000000000 ffffffff900dcdf3 [13:15:36.611][Moby ][Info ] Call Trace: [13:15:36.636][Moby ][Info ] [] ? dump_stack+0x5a/0x6f [13:15:36.668][Moby ][Info ] [] ? warn+0xd2/0xeb [13:15:36.692][Moby ][Info ] [] ? warn_slowpath_fmt+0x5a/0x76 [13:15:36.722][Moby ][Info ] [] ? early_ioremap+0x13d/0x1bd [13:15:36.736][Moby ][Info ] [] ? generic_processor_info+0x149/0x24f [13:15:36.755][Moby ][Info ] [] ? acpi_register_lapic+0x46/0x72 [13:15:36.788][Moby ][Info ] [] ? acpi_parse_lapic+0x3f/0x44 [13:15:36.807][Moby ][Info ] [] ? acpi_parse_entries_array+0xef/0x145 [13:15:36.825][Moby ][Info ] [] ? acpi_table_parse_entries_array+0xbe/0xf7 [13:15:36.853][Moby ][Info ] [] ? acpi_boot_init+0xed/0x45e [13:15:36.870][Moby ][Info ] [] ? pmd_val+0x7/0x8 [13:15:36.893][Moby ][Info ] [] ? pmd_page_vaddr+0x9/0x30 [13:15:36.925][Moby ][Info ] [] ? acpi_parse_x2apic_nmi+0x3c/0x3c [13:15:36.934][Moby ][Info ] [] ? dmi_ignore_irq0_timer_override+0x26/0x26 [13:15:36.955][Moby ][Info ] [] ? setup_arch+0x889/0x984 [13:15:36.972][Moby ][Info ] [] ? start_kernel+0xa9/0x44a [13:15:36.992][Moby ][Info ] [] ? early_idt_handler_array+0x120/0x120 [13:15:37.022][Moby ][Info ] [] ? x86_64_start_kernel+0x141/0x165 [13:15:37.030][Moby ][Info ] ---[ end trace ae5180269a1b35c3 ]--- [13:15:37.044][Moby ][Info ] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [13:15:37.090][Moby ][Info ] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 [13:15:37.103][Moby ][Info ] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [13:15:37.123][Moby ][Info ] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [13:15:37.145][Moby ][Info ] Using ACPI (MADT) for SMP configuration information [13:15:37.164][Moby ][Info ] smpboot: 240 Processors exceeds NR_CPUS limit of 128 [13:15:37.164][Moby ][Info ] smpboot: Allowing 128 CPUs, 126 hotplug CPUs [13:15:37.173][Moby ][Info ] e820: [mem 0x80000000-0xffffffff] available for PCI devices [13:15:37.197][Moby ][Info ] Booting paravirtualized kernel on bare hardware [13:15:37.220][Moby ][Info ] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [13:15:37.231][Moby ][Info ] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1 [13:15:37.256][Moby ][Info ] percpu: Embedded 35 pages/cpu @ffff9ffa75c00000 s105048 r8192 d30120 u262144 [13:15:37.269][Moby ][Info ] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515799 [13:15:37.284][Moby ][Info ] Kernel command line: earlyprintk=ttyS0,115200 console=ttyS0,115200 mobyplatform=windows vsyscall=emulate panic=1 rootdelay=300 noautodetect [13:15:37.284][Moby ][Info ] [13:15:37.307][Moby ][Info ] log_buf_len individual max cpu contribution: 4096 bytes [13:15:37.316][Moby ][Info ] log_buf_len total cpu_extra contributions: 520192 bytes [13:15:37.334][Moby ][Info ] log_buf_len min size: 131072 bytes [13:15:37.351][Moby ][Info ] log_buf_len: 1048576 bytes [13:15:37.375][Moby ][Info ] early log buf free: 120516(91%) [13:15:37.396][Moby ][Info ] PID hash table entries: 4096 (order: 3, 32768 bytes) [13:15:37.414][Moby ][Info ] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [13:15:37.438][Moby ][Info ] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [13:15:37.470][Moby ][Info ] Memory: 1954384K/2096184K available (8497K kernel code, 1410K rwdata, 2860K rodata, 1392K init, 600K bss, 141800K reserved, 0K cma-reserved) [13:15:37.483][Moby ][Info ] Hierarchical RCU implementation. [13:15:37.504][Moby ][Info ] Build-time adjustment of leaf fanout to 64. [13:15:37.524][Moby ][Info ] Using NULL legacy PIC [13:15:37.534][Moby ][Info ] NR_IRQS:8448 nr_irqs:1448 0 [13:15:37.536][Moby ][Info ] Console: colour dummy device 80x25 [13:15:37.552][Moby ][Info ] console [ttyS0] enabled [13:15:37.568][Moby ][Info ] console [ttyS0] enabled [13:15:37.568][Moby ][Info ] bootconsole [earlyser0] disabled [13:15:37.585][Moby ][Info ] bootconsole [earlyser0] disabled [13:15:37.683][Moby ][Info ] tsc: Fast TSC calibration failed [13:15:37.699][Moby ][Info ] tsc: Unable to calibrate against PIT [13:15:37.737][Moby ][Info ] tsc: using PMTIMER reference calibration [13:15:37.753][Moby ][Info ] tsc: Detected 2233.040 MHz processor [13:15:37.770][Moby ][Info ] Calibrating delay loop (skipped), value calculated using timer frequency.. 4466.08 BogoMIPS (lpj=22330400) [13:15:37.784][Moby ][Info ] pid_max: default: 131072 minimum: 1024 [13:15:37.815][Moby ][Info ] ACPI: Core revision 20160831 [13:15:37.837][Moby ][Info ] ACPI: 1 ACPI AML tables successfully acquired and loaded [13:15:37.837][Moby ][Info ] Security Framework initialized [13:15:37.852][Moby ][Info ] Yama: becoming mindful. [13:15:37.868][Moby ][Info ] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [13:15:37.884][Moby ][Info ] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [13:15:37.884][Moby ][Info ] CPU: Physical Processor ID: 0 [13:15:37.915][Moby ][Info ] CPU: Processor Core ID: 0 [13:15:37.934][Moby ][Info ] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 [13:15:37.937][Moby ][Info ] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4 [13:15:37.954][Moby ][Info ] Freeing SMP alternatives memory: 24K (ffffffff910be000 - ffffffff910c4000) [13:15:37.970][Moby ][Info ] ftrace: allocating 37626 entries in 147 pages [13:15:38.138][Moby ][Info ] smpboot: Max logical packages: 120 [13:15:38.286][Moby ][Info ] Switched APIC routing to physical flat. [13:15:38.721][Moby ][Info ] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (family: 0x6, model: 0x45, stepping: 0x1) [13:15:38.875][Moby ][Info ] Performance Events: unsupported p6 CPU model 69 no PMU driver, software events only. [13:15:38.993][Moby ][Info ] NMI watchdog: disabled (cpu0): hardware events not enabled [13:15:39.076][Firewall ][Info ] Opening ports for SMB... [13:15:39.196][Moby ][Info ] NMI watchdog: Shutting down hard lockup detector on all cpus [13:15:39.249][Moby ][Info ] x86: Booting SMP configuration: [13:15:40.117][Moby ][Info ] .... node #0, CPUs: #1calibrate_delay_direct() dropping min bogoMips estimate 2 = 2775500 [13:15:40.482][Moby ][Info ] calibrate_delay_direct() dropping max bogoMips estimate 0 = 33306896 [13:15:40.582][Moby ][Info ] x86: Booted up 1 node, 2 CPUs [13:15:40.767][Moby ][Info ] smpboot: Total of 2 processors activated (9133.23 BogoMIPS) [13:15:40.836][Moby ][Info ] devtmpfs: initialized [13:15:40.922][Moby ][Info ] x86/mm: Memory block size: 128MB [13:15:41.121][Moby ][Info ] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [13:15:41.206][Moby ][Info ] NET: Registered protocol family 16 [13:15:41.284][Moby ][Info ] cpuidle: using governor ladder [13:15:41.406][Moby ][Info ] cpuidle: using governor menu [13:15:41.469][Moby ][Info ] ACPI: bus type PCI registered [13:15:41.622][Moby ][Info ] PCI: Fatal: No config space access function found [13:15:41.908][Moby ][Info ] HugeTLB registered 1 GB page size, pre-allocated 0 pages [13:15:42.141][Moby ][Info ] HugeTLB registered 2 MB page size, pre-allocated 0 pages [13:15:42.289][Moby ][Info ] ACPI: Added _OSI(Module Device) [13:15:42.388][Moby ][Info ] ACPI: Added _OSI(Processor Device) [13:15:42.560][Moby ][Info ] ACPI: Added _OSI(3.0 _SCP Extensions) [13:15:42.629][Moby ][Info ] ACPI: Added _OSI(Processor Aggregator Device) [13:15:42.831][Moby ][Info ] ACPI: Executed 1 blocks of module-level executable AML code [13:15:42.931][Moby ][Info ] ACPI: Dynamic OEM Table Load: [13:15:43.064][Moby ][Info ] ACPI: Interpreter enabled [13:15:43.163][Moby ][Info ] ACPI: (supports S0 S5) [13:15:43.295][Moby ][Info ] ACPI: Using IOAPIC for interrupt routing [13:15:43.619][Moby ][Info ] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [13:15:43.781][Moby ][Info ] ACPI: Enabled 1 GPEs in block 00 to 0F [13:15:43.819][Moby ][Info ] SCSI subsystem initialized [13:15:43.966][Moby ][Info ] pps_core: LinuxPPS API ver. 1 registered [13:15:44.319][Moby ][Info ] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it [13:15:44.597][Moby ][Info ] PTP clock support registered [13:15:44.660][Moby ][Info ] Registered efivars operations [13:15:44.798][Moby ][Info ] wmi: Mapper loaded [13:15:45.114][Moby ][Info ] clocksource: hyperv_clocksource_tsc_page: mask: 0xffffffffffffffff max_cycles: 0x24e6a1710, max_idle_ns: 440795202120 ns [13:15:45.277][Moby ][Info ] hv_vmbus: Hyper-V Host Build:15031-10.0-0-0.0; Vmbus version:4.0 [13:15:45.300][Moby ][Info ] PCI: Using ACPI for IRQ routing [13:15:45.516][Moby ][Info ] PCI: System does not support PCI [13:15:45.688][Moby ][Info ] NetLabel: Initializing [13:15:45.787][Moby ][Info ] NetLabel: domain hash size = 128 [13:15:45.951][Moby ][Info ] NetLabel: protocols = UNLABELED CIPSOv4 [13:15:46.090][Moby ][Info ] NetLabel: unlabeled traffic allowed by default [13:15:46.269][Moby ][Info ] clocksource: Switched to clocksource hyperv_clocksource_tsc_page [13:15:46.339][Moby ][Info ] FS-Cache: Loaded [13:15:46.370][Moby ][Info ] CacheFiles: Loaded [13:15:46.492][Moby ][Info ] pnp: PnP ACPI init [13:15:46.592][Moby ][Info ] pnp: PnP ACPI: found 3 devices [13:15:46.789][Moby ][Info ] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [13:15:46.893][Moby ][Info ] NET: Registered protocol family 2 [13:15:47.025][Moby ][Info ] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [13:15:47.272][Moby ][Info ] TCP bind hash table entries: 16384 (order: 6, 262144 bytes) [13:15:47.574][Moby ][Info ] TCP: Hash tables configured (established 16384 bind 16384) [13:15:47.675][Moby ][Info ] UDP hash table entries: 1024 (order: 3, 32768 bytes) [13:15:47.812][Moby ][Info ] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) [13:15:48.931][Moby ][Info ] NET: Registered protocol family 1 [13:15:48.931][Moby ][Info ] RPC: Registered named UNIX socket transport module. [13:15:48.931][Moby ][Info ] RPC: Registered udp transport module. [13:15:48.931][Moby ][Info ] RPC: Registered tcp transport module. [13:15:48.931][Moby ][Info ] RPC: Registered tcp NFSv4.1 backchannel transport module. [13:15:48.931][Moby ][Info ] Unpacking initramfs... [13:15:50.217][Moby ][Info ] random: fast init done [13:15:52.077][Moby ][Info ] Freeing initrd memory: 55100K (ffff9ffa77cb0000 - ffff9ffa7b27f000) [13:15:53.042][Moby ][Info ] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 10737418240 ms ovfl timer [13:15:55.666][Firewall ][Info ] Ports are opened [13:16:58.101][Moby ][Info ] RAPL PMU: hw unit of domain pp0-core 2^-0 Joules [13:16:58.101][Moby ][Info ] RAPL PMU: hw unit of domain package 2^-0 Joules [13:16:58.101][Moby ][Info ] RAPL PMU: hw unit of domain dram 2^-0 Joules [13:16:58.101][Moby ][Info ] RAPL PMU: hw unit of domain pp1-gpu 2^-0 Joules [13:16:58.101][Moby ][Info ] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x20301e6f3f6, max_idle_ns: 440795205689 ns [13:16:58.101][Moby ][Info ] futex hash table entries: 32768 (order: 9, 2097152 bytes) [13:16:58.101][Moby ][Info ] audit: initializing netlink subsys (disabled) [13:16:58.101][Moby ][Info ] audit: type=2000 audit(1487682947.180:1): initialized [13:16:58.101][Moby ][Info ] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [13:16:58.101][Moby ][Info ] FS-Cache: Netfs 'nfs' registered for caching [13:16:58.101][Moby ][Info ] NFS: Registering the id_resolver key type [13:16:58.101][Moby ][Info ] Key type id_resolver registered [13:16:58.101][Moby ][Info ] Key type id_legacy registered [13:16:58.101][Moby ][Info ] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [13:16:58.101][Moby ][Info ] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [13:16:58.101][Moby ][Info ] FS-Cache: Netfs 'cifs' registered for caching [13:16:58.101][Moby ][Info ] ntfs: driver 2.1.32 [Flags: R/O]. [13:16:58.101][Moby ][Info ] fuse init (API version 7.26) [13:16:58.101][Moby ][Info ] 9p: Installing v9fs 9p2000 file system support [13:16:58.101][Moby ][Info ] FS-Cache: Netfs '9p' registered for caching [13:16:58.101][Moby ][Info ] aufs 4.9-20170206 [13:16:58.101][Moby ][Info ] NET: Registered protocol family 38 [13:16:58.101][Moby ][Info ] Key type asymmetric registered [13:16:58.101][Moby ][Info ] Asymmetric key parser 'x509' registered [13:16:58.101][Moby ][Info ] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [13:16:58.101][Moby ][Info ] io scheduler noop registered [13:16:58.101][Moby ][Info ] io scheduler deadline registered (default) [13:16:58.101][Moby ][Info ] io scheduler cfq registered [13:16:58.101][Moby ][Info ] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [13:16:58.101][Moby ][Info ] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [13:16:58.101][Moby ][Info ] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hyperv_fb [13:16:58.101][Moby ][Info ] GHES: HEST is not enabled! [13:16:58.101][Moby ][Info ] xenfs: not registering filesystem on non-xen platform [13:16:58.101][Moby ][Info ] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [13:16:58.101][Moby ][Info ] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [13:16:58.101][Moby ][Info ] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A [13:16:58.101][Moby ][Info ] Initializing Nozomi driver 2.1d [13:16:58.101][Moby ][Info ] Non-volatile memory driver v1.3 [13:16:58.101][Moby ][Info ] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds). [13:16:58.101][Moby ][Info ] loop: module loaded [13:16:58.101][Moby ][Info ] nbd: registered device at major 43 [13:16:58.101][Moby ][Info ] VMware PVSCSI driver - version 1.0.7.0-k [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hv_storvsc [13:16:58.101][Moby ][Info ] scsi host0: storvsc_host_t [13:16:58.101][Moby ][Info ] scsi 0:0:0:0: Direct-Access Msft Virtual Disk 1.0 PQ: 0 ANSI: 5 [13:16:58.101][Moby ][Info ] scsi 0:0:0:1: CD-ROM Msft Virtual DVD-ROM 1.0 PQ: 0 ANSI: 0 [13:16:58.101][Moby ][Info ] sd 0:0:0:0: [sda] 125829120 512-byte logical blocks: (64.4 GB/60.0 GiB) [13:16:58.101][Moby ][Info ] sd 0:0:0:0: [sda] 4096-byte physical blocks [13:16:58.101][Moby ][Info ] sr 0:0:0:1: [sr0] scsi3-mmc drive: 0x/0x caddy [13:16:58.101][Moby ][Info ] sd 0:0:0:0: [sda] Write Protect is off [13:16:58.101][Moby ][Info ] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [13:16:58.101][Moby ][Info ] cdrom: Uniform CD-ROM driver Revision: 3.20 [13:16:58.101][Moby ][Info ] sd 0:0:0:0: [sda] Attached SCSI disk [13:16:58.101][Moby ][Info ] sd 0:0:0:0: Attached scsi generic sg0 type 0 [13:16:58.101][Moby ][Info ] sr 0:0:0:1: Attached scsi generic sg1 type 5 [13:16:58.101][Moby ][Info ] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [13:16:58.101][Moby ][Info ] tun: Universal TUN/TAP device driver, 1.6 [13:16:58.101][Moby ][Info ] tun: (C) 1999-2004 Max Krasnyansky maxk@qualcomm.com [13:16:58.101][Moby ][Info ] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI [13:16:58.101][Moby ][Info ] e1000: Copyright (c) 1999-2006 Intel Corporation. [13:16:58.101][Moby ][Info ] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k [13:16:58.101][Moby ][Info ] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [13:16:58.101][Moby ][Info ] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 3.2.2-k [13:16:58.101][Moby ][Info ] ixgbevf: Copyright (c) 2009 - 2015 Intel Corporation. [13:16:58.101][Moby ][Info ] PPP generic driver version 2.4.2 [13:16:58.101][Moby ][Info ] PPP BSD Compression module registered [13:16:58.101][Moby ][Info ] PPP Deflate Compression module registered [13:16:58.101][Moby ][Info ] PPP MPPE Compression module registered [13:16:58.101][Moby ][Info ] NET: Registered protocol family 24 [13:16:58.101][Moby ][Info ] PPTP driver version 0.8.5 [13:16:58.101][Moby ][Info ] VMware vmxnet3 virtual NIC driver - version 1.4.a.0-k-NAPI [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hv_netvsc [13:16:58.101][Moby ][Info ] hv_netvsc: hv_netvsc channel opened successfully [13:16:58.101][Moby ][Info ] hv_netvsc ae29f11e-c260-4bc2-b337-b270adad0857: Send section size: 6144, Section count:2560 [13:16:58.101][Moby ][Info ] hv_netvsc ae29f11e-c260-4bc2-b337-b270adad0857: Device MAC 00:15:5d:0b:66:41 link state up [13:16:58.101][Moby ][Info ] Fusion MPT base driver 3.04.20 [13:16:58.101][Moby ][Info ] Copyright (c) 1999-2008 LSI Corporation [13:16:58.101][Moby ][Info ] Fusion MPT SPI Host driver 3.04.20 [13:16:58.101][Moby ][Info ] aoe: AoE v85 initialised. [13:16:58.101][Moby ][Info ] i8042: PNP: No PS/2 controller found. Probing ports directly. [13:16:58.101][Moby ][Info ] i8042: No controller found [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hyperv_keyboard [13:16:58.101][Moby ][Info ] mousedev: PS/2 mouse device common for all mice [13:16:58.101][Moby ][Info ] input: PC Speaker as /devices/platform/pcspkr/input/input0 [13:16:58.101][Moby ][Info ] rtc_cmos 00:00: RTC can wake from S4 [13:16:58.101][Moby ][Info ] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 [13:16:58.101][Moby ][Info ] rtc_cmos 00:00: alarms up to one month, 114 bytes nvram [13:16:58.101][Moby ][Info ] i2c /dev entries driver [13:16:58.101][Moby ][Info ] EFI Variables Facility v0.08 2004-May-17 [13:16:58.101][Moby ][Info ] pstore: using zlib compression [13:16:58.101][Moby ][Info ] pstore: Registered efi as persistent store backend [13:16:58.101][Moby ][Info ] hv_utils: Registering HyperV Utility Driver [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hv_util [13:16:58.101][Moby ][Info ] hv_utils: Heartbeat IC version 3.0 [13:16:58.101][Moby ][Info ] hv_utils: Shutdown IC version 3.0 [13:16:58.101][Moby ][Info ] hv_utils: TimeSync IC version 4.0 [13:16:58.101][Moby ][Info ] hv_vmbus: registering driver hv_balloon [13:17:00.201][Moby ][Info ] oprofile: using timer interrupt. [13:17:00.201][Moby ][Info ] GACT probability on [13:17:00.201][Moby ][Info ] Mirror/redirect action on [13:17:00.201][Moby ][Info ] Simple TC action Loaded [13:17:00.201][Moby ][Info ] netem: version 1.3 [13:17:00.201][Moby ][Info ] u32 classifier [13:17:00.201][Moby ][Info ] Performance counters on [13:17:00.201][Moby ][Info ] input device check on [13:17:00.201][Moby ][Info ] Actions configured [13:17:00.201][Moby ][Info ] Netfilter messages via NETLINK v0.30. [13:17:00.201][Moby ][Info ] nfnl_acct: registering with nfnetlink. [13:17:00.201][Moby ][Info ] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) [13:17:00.202][Moby ][Info ] ctnetlink v0.93: registering with nfnetlink. [13:17:00.202][Moby ][Info ] nf_tables: (c) 2007-2009 Patrick McHardy kaber@trash.net [13:17:00.202][Moby ][Info ] nf_tables_compat: (c) 2012 Pablo Neira Ayuso pablo@netfilter.org [13:17:00.202][Moby ][Info ] xt_time: kernel timezone is -0000 [13:17:00.202][Moby ][Info ] ip_set: protocol 6 [13:17:00.202][Moby ][Info ] IPVS: Registered protocols (TCP, UDP, SCTP, AH, ESP) [13:17:00.202][Moby ][Info ] IPVS: Connection hash table configured (size=4096, memory=64Kbytes) [13:17:00.203][Moby ][Info ] IPVS: Creating netns size=2104 id=0 [13:17:00.203][Moby ][Info ] IPVS: ipvs loaded. [13:17:00.203][Moby ][Info ] IPVS: [rr] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [wrr] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [lc] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [wlc] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [fo] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [ovf] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [lblc] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [lblcr] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [dh] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [sh] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [sed] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: [nq] scheduler registered. [13:17:00.203][Moby ][Info ] IPVS: ftp: loaded support on port[0] = 21 [13:17:00.203][Moby ][Info ] ipip: IPv4 and MPLS over IPv4 tunneling driver [13:17:00.203][Moby ][Info ] gre: GRE over IPv4 demultiplexor driver [13:17:00.203][Moby ][Info ] ip_gre: GRE over IPv4 tunneling driver [13:17:00.203][Moby ][Info ] IPv4 over IPsec tunneling driver [13:17:00.203][Moby ][Info ] ip_tables: (C) 2000-2006 Netfilter Core Team [13:17:00.203][Moby ][Info ] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully [13:17:00.203][Moby ][Info ] arp_tables: arp_tables: (C) 2002 David S. Miller [13:17:00.203][Moby ][Info ] Initializing XFRM netlink socket [13:17:00.203][Moby ][Info ] NET: Registered protocol family 10 [13:17:00.203][Moby ][Info ] mip6: Mobile IPv6 [13:17:00.203][Moby ][Info ] ip6_tables: (C) 2000-2006 Netfilter Core Team [13:17:00.203][Moby ][Info ] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [13:17:00.203][Moby ][Info ] ip6_gre: GRE over IPv6 tunneling driver [13:17:00.203][Moby ][Info ] NET: Registered protocol family 17 [13:17:00.203][Moby ][Info ] NET: Registered protocol family 15 [13:17:00.203][Moby ][Info ] Bridge firewalling registered [13:17:00.203][Moby ][Info ] Ebtables v2.0 registered [13:17:00.203][Moby ][Info ] l2tp_core: L2TP core driver, V2.0 [13:17:00.203][Moby ][Info ] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [13:17:00.203][Moby ][Info ] 8021q: 802.1Q VLAN Support v1.8 [13:17:00.203][Moby ][Info ] 9pnet: Installing 9P2000 support [13:17:00.203][Moby ][Info ] Key type dns_resolver registered [13:17:00.203][Moby ][Info ] openvswitch: Open vSwitch switching datapath [13:17:00.203][Moby ][Info ] hv_vmbus: registering driver hv_sock [13:17:00.203][Moby ][Info ] NET: Registered protocol family 43 [13:17:00.203][Moby ][Info ] mpls_gso: MPLS GSO support [13:17:00.203][Moby ][Info ] microcode: sig=0x40651, pf=0x1, revision=0xffffffff [13:17:00.203][Moby ][Info ] microcode: Microcode Update Driver: v2.01 tigran@aivazian.fsnet.co.uk, Peter Oruba [13:17:00.203][Moby ][Info ] AVX2 version of gcm_enc/dec engaged. [13:17:00.203][Moby ][Info ] AES CTR mode by8 optimization enabled [13:17:00.203][Moby ][Info ] registered taskstats version 1 [13:17:00.203][Moby ][Info ] Key type big_key registered [13:17:00.203][Moby ][Info ] Key type encrypted registered [13:17:00.203][Moby ][Info ] rtc_cmos 00:00: setting system clock to 2017-02-21 13:16:03 UTC (1487682963) [13:17:00.203][Moby ][Info ] Freeing unused kernel memory: 1392K (ffffffff90f62000 - ffffffff910be000) [13:17:00.203][Moby ][Info ] Write protecting the kernel read-only data: 14336k [13:17:00.203][Moby ][Info ] Freeing unused kernel memory: 1728K (ffff9ffa32850000 - ffff9ffa32a00000) [13:17:00.203][Moby ][Info ] Freeing unused kernel memory: 1236K (ffff9ffa32ccb000 - ffff9ffa32e00000) [13:17:00.203][Moby ][Info ] [13:17:00.203][Moby ][Info ] OpenRC 0.21.7.e3f10ac is starting up Linux 4.9.10-moby (x86_64) [13:17:00.203][Moby ][Info ] [13:17:00.203][Moby ][Info ] Mounting /proc ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting /run ... /run/openrc: creating directory [13:17:00.203][Moby ][Info ] /run/lock: creating directory [13:17:00.203][Moby ][Info ] /run/lock: correcting owner [13:17:00.203][Moby ][Info ] Caching service dependencies ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting /sys ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting security filesystem ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting debug filesystem ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting fuse control filesystem ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting persistent storage (pstore) filesystem ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting cgroup filesystem ... [ ok ] [13:17:00.203][Moby ][Info ] Mounting devtmpfs on /dev ... [ ok ] [13:17:00.250][Moby ][Info ] Mounting /dev/ [ ok ] [13:17:00.250][Moby ][Info ] Mounting /dev/pts ... [ ok ] [13:17:00.250][Moby ][Info ] Mounting /dev/shm ... [ ok ] [13:17:00.250][Moby ][Info ] Starting busybox mdev ... [ ok ] [13:17:00.200][ContainerEngineHelper][Error ] Might have failed to kill a running dockerd process: Process with an Id of 122436 is not running. [13:17:00.377][PowerShell ][Info ] Run script '$(Find-NetRoute -RemoteIPAddress 8.8.8.8).InterfaceIndex[0]'... [13:17:00.930][Database ][Info ] Writing com.docker.driver.amd64-linux/slirp/dns=nameserver 192.168.177.2 nameserver 192.168.2.41 nameserver 127.0.0.1 nameserver 81.16.150.4 nameserver 81.16.151.4 search iteratec.de [13:17:00.990][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [13:17:00.990][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [13:17:01.202][Database ][Info ] Successfully wrote 1 value(s) [13:17:01.325][VpnKit ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.slirp.exe --ethernet hyperv-connect://81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df --port hyperv-connect://81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df --db \.\pipe\dockerDataBase --debug --diagnostics \.\pipe\dockerVpnKitDiagnostics [13:17:01.350][VpnKit ][Info ] Started [13:17:01.351][Linux ][Info ] Trying to connect to vsud... [13:17:01.405][VpnKit ][Info ] com.docker.slirp.exe: Logging to stdout (stdout:true DEBUG:false) [13:17:01.405][VpnKit ][Info ] com.docker.slirp.exe: Setting handler to ignore all SIGPIPE signals [13:17:01.405][VpnKit ][Info ] com.docker.slirp.exe: vpnkit version c41f7c8589352c95b14de636c895e8fbd72222e5 with hostnet version uwt version 0.0.3 hvsock version 0.13.0 [13:17:01.405][VpnKit ][Info ] com.docker.slirp.exe: starting port forwarding server on port_control_url:hyperv-connect://81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df vsock_path: [13:17:01.406][VpnKit ][Info ] com.docker.slirp.exe: connecting to 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:0B95756A-9985-48AD-9470-78E060895BE7 [13:17:01.414][VpnKit ][Info ] com.docker.slirp.exe: connecting to 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:30D48B34-7D27-4B0B-AAAF-BBBED334DD59 [13:17:01.414][VpnKit ][Error ] com.docker.slirp.exe: While watching /etc/resolv.conf: ENOENT [13:17:01.416][VpnKit ][Info ] com.docker.slirp.exe: hosts file has bindings for raspi4dnx docker [13:17:05.304][Moby ][Info ] Configuring host block device ...1048576+0 records in [13:17:05.319][Moby ][Info ] 1048576+0 records out [13:17:05.388][Moby ][Info ] Setting up swapspace version 1, size = 1073737728 bytes [13:17:05.419][Moby ][Info ] UUID=2d716ac0-31d3-489f-b89b-81cff95ff309 [13:17:05.657][Moby ][Info ] [ ok ] [13:17:05.720][Moby ][Info ] Autodetection of hardware disabled from boot cmdline [13:17:05.788][Moby ][Info ] Remounting filesystems ... [ ok ] [13:17:05.835][Moby ][Info ] Mounting local filesystems ... [ ok ] [13:17:05.954][Moby ][Info ] Setting system clock using the hardware clock [UTC] ... [ ok ] [13:17:06.004][Moby ][Info ] Setting hostname ... [ ok ] [13:17:06.104][Moby ][Info ] Creating user login records ... [ ok ] [13:17:06.205][Moby ][Info ] Starting vsock proxy ... [ ok ] [13:17:06.236][Linux ][Info ] Vsudd is reachable! [13:17:06.236][ApiProxy ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.proxy.exe -VM=81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df [13:17:06.236][ApiProxy ][Info ] Started [13:17:06.335][SegmentApi ][Info ] Usage statistic: actionMenuSettings [13:17:06.374][ApiProxy ][Info ] docker proxy (on deprecated port): ready [13:17:06.384][ApiProxy ][Info ] docker proxy: ready [13:17:06.449][ApiProxy ][Info ] proxy >> GET /_ping [13:17:06.449][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:06.472][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:06.479][Moby ][Info ] sysklogd -> start: syslogd ... [ ok ] [13:17:06.497][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:06.502][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [13:17:06.502][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:06.504][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:06.510][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:07.633][Moby ][Info ] sysklogd -> start: klogd ... [ ok ] [13:17:07.693][Moby ][Info ] Starting busybox crond ... [ ok ] [13:17:07.778][Moby ][Info ] Mounting misc binary format filesystem ... [ ok ] [13:17:07.839][Moby ][Info ] Setting sysfs variables ... [ ok ] [13:17:07.896][Moby ][Info ] Starting local ... [ ok ] [13:17:08.058][Moby ][Info ] Setting up database (Windows) .../sbin/9pmount-vsock: starting in listening mode with serviceid=C378280D-DA14-42C8-A24E-0DE92A1028E2, tag=db, path=/tmp/db [13:17:08.427][DockerDaemonChecker][Error ] Docker daemon is not running [13:17:09.194][DataKit ][Info ] com.docker.db.exe: accepted a new connection on hyperv-connect://81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df [13:17:09.266][Moby ][Info ] /sbin/9pmount-vsock: Connect from: 00000000-0000-0000-0000-000000000000:73b6f8c1-f82e-11e6-8485-281878562590 [13:17:09.279][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 4096 [13:17:09.364][Moby ][Info ] /sbin/9pmount-vsock: mount successful for serviceid=C378280D-DA14-42C8-A24E-0DE92A1028E2 tag=db path=/tmp/db [13:17:09.535][ApiProxy ][Info ] proxy >> GET /_ping [13:17:09.535][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:09.536][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:09.541][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:09.551][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [13:17:09.552][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:09.557][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:09.566][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:09.581][DockerDaemonChecker][Error ] Docker daemon is not running [13:17:09.820][DataKit ][Error ] com.docker.db.exe: Hvsock.read raised Unix.Unix_error(Unix.ECONNABORTED, "read", ""): returning `Eof [13:17:09.838][Moby ][Info ] [ ok ] [13:17:09.973][Moby ][Info ] Configuring Windows network settings from database ... [ ok ] [13:17:10.038][Moby ][Info ] Configuring kernel parameters ... [ ok ] [13:17:10.089][Moby ][Info ] Starting VPN proxy ... [ ok ] [13:17:10.199][VpnKit ][Info ] com.docker.slirp.exe: hvsock connected successfully [13:17:10.199][VpnKit ][Info ] com.docker.slirp.exe: attempting to reconnect to database [13:17:10.200][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [13:17:10.200][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousandU msize 8215 [13:17:10.203][VpnKit ][Info ] com.docker.slirp.exe: reconnected transport layer [13:17:10.204][VpnKit ][Info ] com.docker.slirp.exe: remove connection limit [13:17:10.210][VpnKit ][Info ] com.docker.slirp.exe: allowing binds to any IP addresses [13:17:10.212][VpnKit ][Info ] com.docker.slirp.exe: updating resolvers to nameserver 192.168.177.2#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 192.168.2.41#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 127.0.0.1#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 81.16.151.4#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 81.16.150.4#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] search iteratec.de [13:17:10.212][VpnKit ][Info ] com.docker.slirp.exe: Add(3): DNS configuration changed to: nameserver 192.168.177.2#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 192.168.2.41#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 127.0.0.1#53 [13:17:10.212][VpnKit ][Info ] order 0 [13:17:10.212][VpnKit ][Info ] nameserver 81.16.151.4#53 [13:17:10.213][VpnKit ][Info ] order 0 [13:17:10.213][VpnKit ][Info ] nameserver 81.16.150.4#53 [13:17:10.213][VpnKit ][Info ] order 0 [13:17:10.213][VpnKit ][Info ] search iteratec.de [13:17:10.216][VpnKit ][Info ] com.docker.slirp.exe: Creating slirp server peer_ip:192.168.65.2 local_ip:192.168.65.1 domain_search:iteratec.de mtu:8000 [13:17:10.217][VpnKit ][Info ] com.docker.slirp.exe: PPP.negotiate: received ((magic VMN3T)(version 13)(commit"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) [13:17:10.217][VpnKit ][Info ] com.docker.slirp.exe: TCP/IP ready [13:17:10.217][VpnKit ][Info ] com.docker.slirp.exe: stack connected [13:17:10.217][VpnKit ][Info ] com.docker.slirp.exe: no introspection server requested. See the --introspection argument [13:17:10.217][VpnKit ][Info ] com.docker.slirp.exe: starting diagnostics server on: \.\pipe\dockerVpnKitDiagnostics [13:17:10.220][VpnKit ][Info ] com.docker.slirp.exe: BOOTREQUEST from 96:65:e6:46:ee:18 [13:17:10.220][VpnKit ][Info ] com.docker.slirp.exe: BOOTREPLY to 96:65:e6:46:ee:18 yiddr 192.168.65.2 siddr 192.168.65.1 dns 192.168.65.1 router 192.168.65.1 domain local [13:17:10.302][Moby ][Info ] Starting DHCP Client Daemon ... [ ok ] [13:17:10.428][Moby ][Info ] Starting diagnostics server ... [ ok ] [13:17:10.484][Moby ][Info ] Starting networking ... lo ... [ ok ] [13:17:10.610][Moby ][Info ] Starting VPN proxy ... [ ok ] [13:17:10.687][ApiProxy ][Info ] proxy >> GET /_ping [13:17:10.687][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:10.732][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:10.739][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:10.744][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [13:17:10.745][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:10.773][Moby ][Info ] Starting busybox acpid ... [ ok ] [13:17:10.785][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:10.795][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:10.806][DockerDaemonChecker][Error ] Docker daemon is not running [13:17:10.899][Moby ][Info ] Running system containerd ... [ ok ] [13:17:10.945][Moby ][Info ] Running system containers ... binfmt rngd [ ok ] [13:17:11.163][Moby ][Info ] Starting VPN proxy ... [ ok ] [13:17:11.346][Moby ][Info ] Configuring host settings from database ... [ ok ] [13:17:11.600][Moby ][Info ] Setting up proxy port service .../sbin/9pmount-vsock: starting in listening mode with serviceid=0B95756A-9985-48AD-9470-78E060895BE7, tag=port, path=/port [13:17:11.703][VpnKit ][Info ] com.docker.slirp.exe: hvsock connected successfully [13:17:11.774][Moby ][Info ] /sbin/9pmount-vsock: Connect from: 00000000-0000-0000-0000-000000000000:73b6f8d8-f82e-11e6-8485-281878562590 [13:17:11.789][VpnKit ][Info ] com.docker.slirp.exe: Using protocol TwoThousand msize 4096 [13:17:11.895][ApiProxy ][Info ] proxy >> GET /_ping [13:17:11.896][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:11.941][Moby ][Info ] /sbin/9pmount-vsock: mount successful for serviceid=0B95756A-9985-48AD-9470-78E060895BE7 tag=port path=/port [13:17:11.950][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:11.958][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:11.958][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [13:17:11.958][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:11.992][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:11.994][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [13:17:12.005][DockerDaemonChecker][Error ] Docker daemon is not running [13:17:12.031][Moby ][Info ] [ ok ] [13:17:12.442][Moby ][Info ] Starting Docker ... [ ok ] [13:17:12.569][Moby ][Info ] ? Drive found: sda [13:17:12.614][Moby ][Info ] ? Drive mounted: /dev/sda1 on /var type ext4 (rw,relatime,data=ordered) [13:17:12.676][Moby ][Info ] ? Network connected: inet addr:192.168.65.2 Bcast:192.168.65.7 Mask:255.255.255.248 [13:17:12.707][Moby ][Info ] ? Process tap-vsockd running [13:17:12.812][Moby ][Info ] ? Process dockerd running: dockerd --pidfile=/run/docker.pid -H unix:///var/run/docker.sock --swarm-default-advertise-addr=eth0 --userland-proxy-path /usr/bin/slirp-proxy --debug --experimental --storage-driver overlay2 [13:17:12.995][Moby ][Info ] ? Process containerd running: docker-containerd -l unix:///var/run/docker/libcontainerd/docker-containerd.sock --metrics-interval=0 --start-timeout 2m --state-dir /var/run/docker/libcontainerd/containerd --shim docker-containerd-shim --runtime docker-runc --debug [13:17:13.086][ApiProxy ][Info ] proxy >> GET /_ping [13:17:13.087][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:13.087][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:13.869][ApiProxy ][Info ] proxy << GET /_ping [13:17:13.877][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [13:17:13.912][NamedPipeClient][Info ] Received response for Start [13:17:13.877][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:13.878][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:13.954][Actions ][Debug ] Start took 00:02:16.0202374 [13:17:13.955][Notifications ][Info ] Docker is running [13:17:13.955][SegmentApi ][Info ] Usage statistic: installShowWelcomePopup [13:17:13.961][SegmentApi ][Info ] Usage statistic: appRunning [13:17:13.897][ApiProxy ][Info ] proxy << GET /v1.26/containers/json [13:17:13.911][DockerDaemonChecker][Info ] Docker daemon is running [13:17:13.911][NamedPipeServer][Info ] Start done in 00:02:15.9156328. [13:17:14.034][Moby ][Info ] ? Docker daemon working: 1.13.1 [13:17:14.182][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [13:17:14.183][NamedPipeServer][Info ] GetDefaultVhdxPath() [13:17:14.194][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [13:17:14.193][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0100134. [13:17:14.248][Moby ][Info ] ? Diagnostics server running: /usr/bin/diagnostics-server -hvsock [13:17:14.490][Moby ][Info ] ? System containerd server running: /usr/bin/containerd [13:17:14.596][Moby ][Info ] ? System containerd working [13:17:14.780][Moby ][Info ] Starting Hyper-V daemon: hv_kvp_daemon ... [ ok ] [13:17:14.939][Moby ][Info ] Starting Hyper-V daemon: hv_vss_daemon ... [ ok ] [13:17:15.105][Moby ][Info ] Adjusting oom killer settings ... [ ok ] [13:17:15.190][Moby ][Info ] [13:17:28.409][SharedDrivesSettings][Info ] Apply shared drive settings [13:17:28.416][NamedPipeClient][Info ] Sending Mount(C, :**, Docker.Core.Settings)... [13:17:28.419][NamedPipeServer][Info ] Mount(C, @:**, Docker.Core.Settings) [13:17:28.424][SambaShare ][Info ] Ensuring Samba file sharing is enabled [13:17:28.573][Cmd ][Info ] 4aa2cd4e-ed4e-44dc-8f48-a91fcce66d57 was shared successfully. [13:17:28.573][Cmd ][Info ] [13:17:28.625][Cmd ][Info ] 4aa2cd4e-ed4e-44dc-8f48-a91fcce66d57 was deleted successfully. [13:17:28.625][Cmd ][Info ] [13:17:28.632][SambaShare ][Info ] Mount C [13:17:28.687][Cmd ][Info ] This shared resource does not exist. [13:17:28.688][Cmd ][Info ] [13:17:28.688][Cmd ][Info ] More help is available by typing NET HELPMSG 2310. [13:17:28.688][Cmd ][Info ] [13:17:28.692][SambaShare ][Info ] "C" is not shared [13:17:28.693][SambaShare ][Info ] Creating share "C:\" as "C" with Full Control to "@" [13:17:28.812][Cmd ][Info ] C was shared successfully. [13:17:28.812][Cmd ][Info ] [13:17:28.865][Cmd ][Info ] Share name C [13:17:28.865][Cmd ][Info ] Path C:\ [13:17:28.865][Cmd ][Info ] Remark
[13:17:28.865][Cmd ][Info ] Maximum users No limit [13:17:28.866][Cmd ][Info ] Users
[13:17:28.866][Cmd ][Info ] Caching Caching disabled [13:17:28.867][Cmd ][Info ] Permission MYPC\MyUser, FULL [13:17:28.867][Cmd ][Info ] [13:17:28.867][Cmd ][Info ] The command completed successfully. [13:17:28.867][Cmd ][Info ] [13:17:28.872][SambaShare ][Info ] "C" is shared [13:17:28.995][SambaShare ][Info ] Username: MyUser [13:17:28.995][SambaShare ][Info ] Host IP: 10.0.75.1 [13:17:28.995][SambaShare ][Info ] Cifs options: noperm,iocharset=utf8,nobrl,mfsymlinks,vers=3.02,domain=MYPC [13:17:29.080][ApiProxy ][Info ] proxy >> GET /_ping [13:17:29.081][ApiProxy ][Info ] Dial Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:29.081][ApiProxy ][Info ] Successfully dialed Hyper-V socket 81dbc8f6-83d8-4a41-a2ae-423b8dd1f3df:23a432c2-537a-4291-bcb5-d62504644739 [13:17:29.083][ApiProxy ][Info ] proxy << GET /_ping [13:17:29.088][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [13:17:29.088][ApiProxy

dgageot commented 7 years ago

@hindsight20-20 Sorry to hear that. We'll keep you posted when we have another version to try. Thanks for your help!

nzigel commented 7 years ago

It didn't work for me either

Version: 17.03.0-ce-rc1 (10154) Channel: samba-experiment Sha1: c9d10818634709c97d0c66fa31ae3d3a9fc5e9c9 Started on: 2017-02-23 11:32:59.232 Resources: C:\Program Files\Docker\Docker\Resources OS: Windows 10 Pro Insider Preview Edition: Professional Id: 1607 Build: 15007 BuildLabName: 15007.1000.amd64fre.rs_prerelease.170107-1846 File: C:\Users****\AppData\Local\Docker\log.txt CommandLine: "C:\Program Files\Docker\Docker\Docker for Windows.exe" You can send feedback, including this log file, at https://github.com/docker/for-win/issues [11:32:59.422][GUI ][Info ] Starting... [11:32:59.906][Tracking ][Info ] Crash report and usage statistics are enabled [11:32:59.915][SegmentApi ][Info ] Usage statistic: appLaunched [11:33:00.116][NamedPipeClient][Info ] Sending Version()... [11:33:00.133][NamedPipeClient][Info ] Received response for Version [11:33:00.134][SegmentApi ][Info ] Usage statistic: heartbeat [11:32:55.477][BackendServer ][Info ] Started [11:33:00.130][NamedPipeServer][Info ] Version() [11:33:00.130][NamedPipeServer][Info ] Version done in 00:00:00. [11:33:01.280][SegmentApi ][Info ] Usage statistic: eventNotElectedForFeature [11:33:01.280][SegmentApi ][Info ] Usage statistic: stateFeatureDisabled [11:33:01.402][Updater ][Info ] Checking for updates on channel samba-experiment... [11:33:01.402][Notifications ][Info ] Docker is starting... [11:33:01.420][NamedPipeClient][Info ] Sending Start(Docker.Core.Settings)... [11:33:01.423][NamedPipeServer][Info ] Start(Docker.Core.Settings) [11:33:01.428][PowerMode ][Info ] Stop [11:33:01.430][HyperV ][Info ] Stop [11:33:01.444][PowerShell ][Info ] Run script with parameters: -Stop True... [11:33:01.445][PowerShell ][Info ] Creating a Runspace Pool... [11:33:01.649][PowerShell ][Info ] Runspace Pool created (Min=1, Max=2) [11:33:01.776][HyperV ][Info ] Script started at 11:33:01.765 [11:33:03.016][UpdateFeedDownloader][Error ] The remote server returned an error: (403) Forbidden. [11:33:03.016][Updater ][Info ] No update available [11:33:04.762][HyperV ][Info ] Module loaded at 11:33:04.762 [11:33:04.994][HyperV ][Info ] VM MobyLinuxVM does not exist [11:33:04.995][HyperV ][Debug ] [stop] took 00:00:03.5630017 to run [11:33:04.995][OptimizeDisk ][Info ] Optimize [11:33:04.996][PowerShell ][Info ] Run script... [11:33:05.018][Moby ][Info ] Stop [11:33:05.033][HyperVGuids ][Info ] Installing GUIDs... [11:33:05.033][PowerMode ][Info ] Start [11:33:05.034][HyperV ][Info ] Create [11:33:05.034][PowerShell ][Info ] Run script with parameters: -Create True -VhdPathOverride -SwitchSubnetAddress 10.0.75.0 -SwitchSubnetMaskSize 24 -CPUs 2 -Memory 2048 -IsoFile C:\Program Files\Docker\Docker\Resources\mobylinux.iso... [11:33:05.035][HyperVGuids ][Info ] GUIDs installed [11:33:05.059][Firewall ][Info ] Removing all existing rules... [11:33:05.067][HyperV ][Info ] Script started at 11:33:05.067 [11:33:05.083][HyperV ][Info ] Module loaded at 11:33:05.083 [11:33:05.372][HyperV ][Info ] Creating Switch: DockerNAT... [11:33:05.464][Firewall ][Info ] All existing rules are removed. [11:33:05.464][Firewall ][Info ] Opening ports for C:\Program Files\Docker\Docker\Resources\com.docker.proxy.exe... [11:33:06.818][Firewall ][Info ] Opening ports for SMB... [11:33:08.223][Firewall ][Info ] Ports are opened [11:33:08.279][HyperV ][Info ] Switch created. [11:33:09.721][HyperV ][Info ] Set IP address on switch [11:33:11.028][HyperV ][Info ] Creating VM MobyLinuxVM... [11:33:13.510][HyperV ][Info ] Setting CPUs to 2 and Memory to 2048 MB [11:33:13.849][HyperV ][Info ] Creating dynamic VHD: C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx [11:33:15.020][HyperV ][Info ] Attach VHD C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx [11:33:15.707][HyperV ][Info ] Connect Internal Switch DockerNAT [11:33:16.318][HyperV ][Info ] Attach DVD C:\Program Files\Docker\Docker\Resources\mobylinux.iso [11:33:17.198][HyperV ][Info ] Disabled Guest Service Interface [11:33:17.228][HyperV ][Info ] Enabled Heartbeat [11:33:17.271][HyperV ][Info ] Disabled Key-Value Pair Exchange [11:33:17.310][HyperV ][Info ] Enabled Shutdown [11:33:17.337][HyperV ][Info ] Enabled Time Synchronization [11:33:17.373][HyperV ][Info ] Disabled VSS [11:33:17.771][HyperV ][Info ] VM created. [11:33:17.771][HyperV ][Debug ] [create] took 00:00:12.7371662 to run [11:33:17.772][PowerShell ][Info ] Run script '(Get-VM MobyLinuxVM).Id.Guid'... [11:33:17.832][DataKit ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.db.exe --url hyperv-connect://dca3d719-c859-421e-a4f4-6f840198d8cb,\.\pipe\dockerDataBase --color never [11:33:17.837][DataKit ][Info ] Started [11:33:17.847][Database ][Info ] Generating CA Cert Bundle [11:33:17.880][DataKit ][Info ] Starting com.docker.db.exe 0.7.0-34-g6f04213 ... [11:33:17.882][Database ][Info ] CA Cert Bundle Generated [11:33:17.884][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/net/config=static [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/net/address=10.0.75.2 [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/net/netmask=255.255.255.0 [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/net/gateway=10.0.75.1 [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/network=hybrid [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/docker/daemon.json={"registry-mirrors":[],"insecure-registries":[]} [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/sysctl.conf= [11:33:17.887][Database ][Info ] Writing com.docker.driver.amd64-linux/native/port-forwarding=true [11:33:17.924][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:33:17.925][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [11:33:18.401][Database ][Info ] Successfully wrote 8 value(s) [11:33:18.402][Database ][Info ] Writing com.docker.driver.amd64-linux/etc/ssl/certs/ca-certificates.crt=C:\WINDOWS\TEMP\tmp28F3.tmp [11:33:18.432][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:33:18.432][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [11:33:18.572][Database ][Info ] Successfully wrote value [11:33:18.578][Moby ][Info ] Connecting... [11:33:18.579][Moby ][Error ] Failed to read Moby's logs: The operation has timed out. [11:33:18.581][HyperV ][Info ] Start [11:33:18.582][PowerShell ][Info ] Run script with parameters: -Start True... [11:33:18.610][HyperV ][Info ] Script started at 11:33:18.609 [11:33:18.626][HyperV ][Info ] Module loaded at 11:33:18.626 [11:33:18.633][HyperV ][Info ] Starting VM MobyLinuxVM... [11:33:18.636][PowerShell ][Info ] Run script '$(Find-NetRoute -RemoteIPAddress 8.8.8.8).InterfaceIndex[0]'... [11:33:20.137][Database ][Info ] Writing com.docker.driver.amd64-linux/slirp/dns=nameserver 192.168.2.1 search corp.microsoft.com [11:33:20.188][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:33:20.188][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [11:33:20.336][Database ][Info ] Successfully wrote 1 value(s) [11:33:20.523][VpnKit ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.slirp.exe --ethernet hyperv-connect://dca3d719-c859-421e-a4f4-6f840198d8cb --port hyperv-connect://dca3d719-c859-421e-a4f4-6f840198d8cb --db \.\pipe\dockerDataBase --debug --diagnostics \.\pipe\dockerVpnKitDiagnostics [11:33:20.528][VpnKit ][Info ] Started [11:33:20.626][VpnKit ][Info ] com.docker.slirp.exe: Logging to stdout (stdout:true DEBUG:false) [11:33:20.626][VpnKit ][Info ] com.docker.slirp.exe: Setting handler to ignore all SIGPIPE signals [11:33:20.626][VpnKit ][Info ] com.docker.slirp.exe: vpnkit version c41f7c8589352c95b14de636c895e8fbd72222e5 with hostnet version uwt version 0.0.3 hvsock version 0.13.0 [11:33:20.626][VpnKit ][Info ] com.docker.slirp.exe: starting port forwarding server on port_control_url:hyperv-connect://dca3d719-c859-421e-a4f4-6f840198d8cb vsock_path: [11:33:20.626][VpnKit ][Info ] com.docker.slirp.exe: connecting to dca3d719-c859-421e-a4f4-6f840198d8cb:0B95756A-9985-48AD-9470-78E060895BE7 [11:33:20.629][VpnKit ][Info ] com.docker.slirp.exe: connecting to dca3d719-c859-421e-a4f4-6f840198d8cb:30D48B34-7D27-4B0B-AAAF-BBBED334DD59 [11:33:20.629][VpnKit ][Error ] com.docker.slirp.exe: While watching /etc/resolv.conf: ENOENT [11:33:20.630][VpnKit ][Info ] com.docker.slirp.exe: hosts file has bindings for [11:33:24.123][SegmentApi ][Info ] Usage statistic: actionMenuSettings [11:33:24.593][Moby ][Info ] Connected [11:33:24.634][HyperV ][Debug ] [start] took 00:00:06.0529340 to run [11:33:24.635][Linux ][Info ] Trying to connect to vsud... [11:33:25.276][Moby ][Info ] early console in extract_kernel [11:33:25.282][Moby ][Info ] input_data: 0x0000000001f453b4 [11:33:25.286][Moby ][Info ] input_len: 0x000000000065cab8 [11:33:25.295][Moby ][Info ] output: 0x0000000001000000 [11:33:25.302][Moby ][Info ] output_len: 0x000000000158ff40 [11:33:25.323][Moby ][Info ] kernel_total_size: 0x0000000001187000 [11:33:25.333][Moby ][Info ] booted via startup_64() [11:33:25.337][Moby ][Info ] Physical KASLR using RDRAND RDTSC... [11:33:25.342][Moby ][Info ] Virtual KASLR using RDRAND RDTSC... [11:33:25.342][Moby ][Info ] [11:33:25.505][Moby ][Info ] Decompressing Linux... Parsing ELF... Performing relocations... done. [11:33:25.521][Moby ][Info ] Booting the kernel. [11:33:25.541][Moby ][Info ] Linux version 4.9.10-moby (root@11fbdc1f630f) (gcc version 6.2.1 20160822 (Alpine 6.2.1) ) #1 SMP Thu Feb 16 09:14:56 UTC 2017 [11:33:25.559][Moby ][Info ] Command line: earlyprintk=ttyS0,115200 console=ttyS0,115200 mobyplatform=windows vsyscall=emulate panic=1 rootdelay=300 noautodetect [11:33:25.560][Moby ][Info ] [11:33:25.583][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [11:33:25.592][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [11:33:25.599][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [11:33:25.637][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' [11:33:25.642][Moby ][Info ] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'

[11:33:25.723][Moby ][Info ] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format. [11:33:25.742][Moby ][Info ] x86/fpu: Using 'eager' FPU context switches. [11:33:25.760][Moby ][Info ] e820: BIOS-provided physical RAM map: [11:33:25.777][Moby ][Info ] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable [11:33:25.782][Moby ][Info ] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved [11:33:25.787][Moby ][Info ] BIOS-e820: [mem 0x0000000000100000-0x000000003eeedfff] usable [11:33:25.791][Moby ][Info ] BIOS-e820: [mem 0x000000003eeee000-0x000000003eef1fff] ACPI data [11:33:25.805][Moby ][Info ] BIOS-e820: [mem 0x000000003eef2000-0x000000003ef1afff] reserved [11:33:25.812][Moby ][Info ] BIOS-e820: [mem 0x000000003ef1b000-0x000000003ff9afff] usable [11:33:25.815][Moby ][Info ] BIOS-e820: [mem 0x000000003ff9b000-0x000000003fff2fff] reserved [11:33:25.824][Moby ][Info ] BIOS-e820: [mem 0x000000003fff3000-0x000000003fffafff] ACPI data [11:33:25.829][Moby ][Info ] BIOS-e820: [mem 0x000000003fffb000-0x000000003fffefff] ACPI NVS [11:33:25.833][Moby ][Info ] BIOS-e820: [mem 0x000000003ffff000-0x000000003fffffff] usable [11:33:25.839][Moby ][Info ] BIOS-e820: [mem 0x0000000040200000-0x00000000801fffff] usable [11:33:25.843][Moby ][Info ] bootconsole [earlyser0] enabled [11:33:25.858][Moby ][Info ] NX (Execute Disable) protection: active [11:33:25.862][Moby ][Info ] efi: EFI v2.50 by EDK II [11:33:25.871][Moby ][Info ] efi: ACPI=0x3fffa000 ACPI 2.0=0x3fffa014 SMBIOS=0x3ffd8000 PROP=0x4188480 MEMATTR=0x3f592b18 [11:33:25.873][Moby ][Info ] SMBIOS 2.4 present. [11:33:25.876][Moby ][Info ] Hypervisor detected: Microsoft HyperV [11:33:25.879][Moby ][Info ] HyperV: features 0x2e7f, hints 0x2c2c [11:33:25.884][Moby ][Info ] HyperV: LAPIC Timer Frequency: 0x1e8480 [11:33:25.905][Moby ][Info ] clocksource: hyperv_clocksource: mask: 0xffffffffffffffff max_cycles: 0x24e6a1710, max_idle_ns: 440795202120 ns [11:33:25.911][Moby ][Info ] tsc: Marking TSC unstable due to running on Hyper-V [11:33:25.918][Moby ][Info ] e820: last_pfn = 0x80200 max_arch_pfn = 0x400000000 [11:33:25.924][Moby ][Info ] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[11:33:25.927][Moby ][Info ] Memory KASLR using RDRAND RDTSC... [11:33:25.935][Moby ][Info ] Using GB pages for direct mapping [11:33:25.942][Moby ][Info ] RAMDISK: [mem 0x37cb0000-0x3b27efff] [11:33:25.956][Moby ][Info ] ACPI: Early table checksum verification disabled [11:33:25.960][Moby ][Info ] ACPI: RSDP 0x000000003FFFA014 000024 (v02 VRTUAL) [11:33:25.969][Moby ][Info ] ACPI: XSDT 0x000000003FFF90E8 00005C (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:25.975][Moby ][Info ] ACPI: FACP 0x000000003FFF7000 0000F4 (v04 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:25.988][Moby ][Info ] ACPI: DSDT 0x000000003EEEF000 00256F (v02 MSFTVM DSDT01 00000001 MSFT 05000000) [11:33:26.001][Moby ][Info ] ACPI: FACS 0x000000003FFFE000 000040 [11:33:26.007][Moby ][Info ] ACPI: APIC 0x000000003FFF8000 0007D2 (v02 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:26.014][Moby ][Info ] ACPI: OEM0 0x000000003FFF6000 000064 (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:26.022][Moby ][Info ] ACPI: WAET 0x000000003FFF5000 000028 (v01 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:26.039][Moby ][Info ] ACPI: OEM1 0x000000003FFF4000 00009E (v02 MSFTVM UARTS 00000001 MSFT 05000000) [11:33:26.053][Moby ][Info ] ACPI: OEM2 0x000000003FFF3000 0002E2 (v02 MSFTVM VTPM2 00000001 MSFT 05000000) [11:33:26.061][Moby ][Info ] ACPI: SRAT 0x000000003EEEE000 0002D0 (v02 VRTUAL MICROSFT 00000001 MSFT 00000001) [11:33:26.084][Moby ][Info ] Zone ranges: [11:33:26.090][Moby ][Info ] DMA [mem 0x0000000000001000-0x0000000000ffffff] [11:33:26.098][Moby ][Info ] DMA32 [mem 0x0000000001000000-0x00000000801fffff] [11:33:26.101][Moby ][Info ] Normal empty [11:33:26.105][Moby ][Info ] Movable zone start for each node [11:33:26.109][Moby ][Info ] Early memory node ranges [11:33:26.119][Moby ][Info ] node 0: [mem 0x0000000000001000-0x000000000009ffff] [11:33:26.125][Moby ][Info ] node 0: [mem 0x0000000000100000-0x000000003eeedfff] [11:33:26.149][Moby ][Info ] node 0: [mem 0x000000003ef1b000-0x000000003ff9afff] [11:33:26.158][Moby ][Info ] node 0: [mem 0x000000003ffff000-0x000000003fffffff] [11:33:26.168][Moby ][Info ] node 0: [mem 0x0000000040200000-0x00000000801fffff] [11:33:26.171][Moby ][Info ] Initmem setup node 0 [mem 0x0000000000001000-0x00000000801fffff] [11:33:26.196][Moby ][Info ] ACPI: PM-Timer IO Port: 0x408 [11:33:26.205][Moby ][Info ] ------------[ cut here ]------------ [11:33:26.233][Moby ][Info ] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/apic/apic.c:2065 generic_processor_info+0x149/0x24f [11:33:26.242][Moby ][Info ] Only 127 processors supported.Processor 128/0x80 and the rest are ignored. [11:33:26.249][Moby ][Info ] Modules linked in: [11:33:26.258][Moby ][Info ] CPU: 0 PID: 0 Comm: swapper Not tainted 4.9.10-moby #1 [11:33:26.288][Moby ][Info ] Hardware name: Microsoft Corporation Virtual Machine/Virtual Machine, BIOS Hyper-V UEFI Release v2.0 08/26/2016 [11:33:26.293][Moby ][Info ] 0000000000000000 ffffffffb141a3b7 ffffffffb1e03d40 0000000000000000 [11:33:26.304][Moby ][Info ] ffffffffb10dcd80 0000000000000080 ffffffffb1e03da0 0000000000000000 [11:33:26.311][Moby ][Info ] 0000000000000014 0000000000000000 0000000000000000 ffffffffb10dcdf3 [11:33:26.317][Moby ][Info ] Call Trace: [11:33:26.323][Moby ][Info ] [] ? dump_stack+0x5a/0x6f [11:33:26.331][Moby ][Info ] [] ? warn+0xd2/0xeb [11:33:26.339][Moby ][Info ] [] ? warn_slowpath_fmt+0x5a/0x76 [11:33:26.345][Moby ][Info ] [] ? early_ioremap+0x13d/0x1bd [11:33:26.356][Moby ][Info ] [] ? generic_processor_info+0x149/0x24f [11:33:26.373][Moby ][Info ] [] ? acpi_register_lapic+0x46/0x72 [11:33:26.378][Moby ][Info ] [] ? acpi_parse_lapic+0x3f/0x44 [11:33:26.392][Moby ][Info ] [] ? acpi_parse_entries_array+0xef/0x145 [11:33:26.408][Moby ][Info ] [] ? acpi_table_parse_entries_array+0xbe/0xf7 [11:33:26.424][Moby ][Info ] [] ? acpi_boot_init+0xed/0x45e [11:33:26.428][Moby ][Info ] [] ? pmd_val+0x7/0x8 [11:33:26.433][Moby ][Info ] [] ? pmd_page_vaddr+0x9/0x30 [11:33:26.442][Moby ][Info ] [] ? acpi_parse_x2apic_nmi+0x3c/0x3c [11:33:26.455][Moby ][Info ] [] ? dmi_ignore_irq0_timer_override+0x26/0x26 [11:33:26.469][Moby ][Info ] [] ? setup_arch+0x889/0x984 [11:33:26.477][Moby ][Info ] [] ? start_kernel+0xa9/0x44a [11:33:26.488][Moby ][Info ] [] ? early_idt_handler_array+0x120/0x120 [11:33:26.499][Moby ][Info ] [] ? x86_64_start_kernel+0x141/0x165 [11:33:26.506][Moby ][Info ] ---[ end trace 921a6933d5096175 ]--- [11:33:26.520][Moby ][Info ] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [11:33:26.528][Moby ][Info ] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 [11:33:26.535][Moby ][Info ] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [11:33:26.541][Moby ][Info ] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [11:33:26.572][Moby ][Info ] Using ACPI (MADT) for SMP configuration information [11:33:26.612][Moby ][Info ] smpboot: 240 Processors exceeds NR_CPUS limit of 128 [11:33:26.617][Moby ][Info ] smpboot: Allowing 128 CPUs, 126 hotplug CPUs [11:33:26.625][Moby ][Info ] e820: [mem 0x80200000-0xffffffff] available for PCI devices [11:33:26.629][Moby ][Info ] Booting paravirtualized kernel on bare hardware [11:33:26.644][Moby ][Info ] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [11:33:26.657][Moby ][Info ] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1 [11:33:26.663][Moby ][Info ] percpu: Embedded 35 pages/cpu @ffff946ebb600000 s105048 r8192 d30120 u262144 [11:33:26.670][Moby ][Info ] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515791 [11:33:26.677][Moby ][Info ] Kernel command line: earlyprintk=ttyS0,115200 console=ttyS0,115200 mobyplatform=windows vsyscall=emulate panic=1 rootdelay=300 noautodetect [11:33:26.677][Moby ][Info ] [11:33:26.691][Moby ][Info ] log_buf_len individual max cpu contribution: 4096 bytes [11:33:26.696][Moby ][Info ] log_buf_len total cpu_extra contributions: 520192 bytes [11:33:26.706][Moby ][Info ] log_buf_len min size: 131072 bytes [11:33:26.719][Moby ][Info ] log_buf_len: 1048576 bytes [11:33:26.725][Moby ][Info ] early log buf free: 120020(91%) [11:33:26.740][Moby ][Info ] PID hash table entries: 4096 (order: 3, 32768 bytes) [11:33:26.753][Moby ][Info ] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [11:33:26.762][Moby ][Info ] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [11:33:26.794][Moby ][Info ] Memory: 1952304K/2096184K available (8497K kernel code, 1410K rwdata, 2860K rodata, 1392K init, 600K bss, 143880K reserved, 0K cma-reserved) [11:33:26.800][Moby ][Info ] Hierarchical RCU implementation. [11:33:26.804][Moby ][Info ] Build-time adjustment of leaf fanout to 64. [11:33:26.813][Moby ][Info ] Using NULL legacy PIC [11:33:26.818][Moby ][Info ] NR_IRQS:8448 nr_irqs:1448 0 [11:33:26.829][Moby ][Info ] Console: colour dummy device 80x25 [11:33:26.844][Moby ][Info ] console [ttyS0] enabled [11:33:26.848][Moby ][Info ] console [ttyS0] enabled [11:33:26.862][Moby ][Info ] bootconsole [earlyser0] disabled [11:33:26.872][Moby ][Info ] bootconsole [earlyser0] disabled [11:33:26.913][Moby ][Info ] tsc: Fast TSC calibration failed [11:33:26.928][Moby ][Info ] tsc: Unable to calibrate against PIT [11:33:26.938][Moby ][Info ] tsc: using PMTIMER reference calibration [11:33:26.944][Moby ][Info ] tsc: Detected 2722.421 MHz processor [11:33:26.955][Moby ][Info ] Calibrating delay loop (skipped), value calculated using timer frequency.. 5444.84 BogoMIPS (lpj=27224210) [11:33:26.976][Moby ][Info ] pid_max: default: 131072 minimum: 1024 [11:33:26.987][Moby ][Info ] ACPI: Core revision 20160831 [11:33:26.995][Moby ][Info ] ACPI: 1 ACPI AML tables successfully acquired and loaded [11:33:27.000][Moby ][Info ] Security Framework initialized [11:33:27.005][Moby ][Info ] Yama: becoming mindful. [11:33:27.024][Moby ][Info ] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [11:33:27.037][Moby ][Info ] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [11:33:27.040][Moby ][Info ] CPU: Physical Processor ID: 0 [11:33:27.046][Moby ][Info ] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 [11:33:27.075][Moby ][Info ] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 [11:33:27.085][Moby ][Info ] Freeing SMP alternatives memory: 24K (ffffffffb20be000 - ffffffffb20c4000) [11:33:27.090][Moby ][Info ] ftrace: allocating 37626 entries in 147 pages [11:33:27.152][Moby ][Info ] smpboot: Max logical packages: 240 [11:33:27.157][Moby ][Info ] Switched APIC routing to physical flat. [11:33:27.175][Moby ][Info ] smpboot: CPU0: Intel(R) Core(TM) i7-6600U CPU @ 2.60GHz (family: 0x6, model: 0x4e, stepping: 0x3) [11:33:27.187][Moby ][Info ] Performance Events: unsupported p6 CPU model 78 no PMU driver, software events only. [11:33:27.206][Moby ][Info ] NMI watchdog: disabled (cpu0): hardware events not enabled [11:33:27.226][Moby ][Info ] NMI watchdog: Shutting down hard lockup detector on all cpus [11:33:27.231][Moby ][Info ] x86: Booting SMP configuration: [11:33:27.385][Moby ][Info ] .... node #0, CPUs: #1calibrate_delay_direct() dropping max bogoMips estimate 0 = 34355941 [11:33:27.391][Moby ][Info ] x86: Booted up 1 node, 2 CPUs [11:33:27.395][Moby ][Info ] smpboot: Total of 2 processors activated (11136.41 BogoMIPS) [11:33:27.399][Moby ][Info ] devtmpfs: initialized [11:33:27.406][Moby ][Info ] x86/mm: Memory block size: 128MB [11:33:27.427][Moby ][Info ] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [11:33:27.431][Moby ][Info ] NET: Registered protocol family 16 [11:33:27.460][Moby ][Info ] cpuidle: using governor ladder [11:33:27.489][Moby ][Info ] cpuidle: using governor menu [11:33:27.492][Moby ][Info ] ACPI: bus type PCI registered [11:33:27.506][Moby ][Info ] PCI: Fatal: No config space access function found [11:33:27.533][Moby ][Info ] HugeTLB registered 1 GB page size, pre-allocated 0 pages [11:33:27.539][Moby ][Info ] HugeTLB registered 2 MB page size, pre-allocated 0 pages [11:33:27.543][Moby ][Info ] ACPI: Added _OSI(Module Device) [11:33:27.557][Moby ][Info ] ACPI: Added _OSI(Processor Device) [11:33:27.563][Moby ][Info ] ACPI: Added _OSI(3.0 _SCP Extensions) [11:33:27.571][Moby ][Info ] ACPI: Added _OSI(Processor Aggregator Device) [11:33:27.576][Moby ][Info ] ACPI: Executed 1 blocks of module-level executable AML code [11:33:27.581][Moby ][Info ] ACPI: Dynamic OEM Table Load: [11:33:27.591][Moby ][Info ] ACPI: Interpreter enabled [11:33:27.595][Moby ][Info ] ACPI: (supports S0 S5) [11:33:27.610][Moby ][Info ] ACPI: Using IOAPIC for interrupt routing [11:33:27.619][Moby ][Info ] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [11:33:27.631][Moby ][Info ] ACPI: Enabled 1 GPEs in block 00 to 0F [11:33:27.641][Moby ][Info ] SCSI subsystem initialized [11:33:27.658][Moby ][Info ] pps_core: LinuxPPS API ver. 1 registered [11:33:27.665][Moby ][Info ] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it [11:33:27.671][Moby ][Info ] PTP clock support registered [11:33:27.675][Moby ][Info ] Registered efivars operations [11:33:27.678][Moby ][Info ] wmi: Mapper loaded [11:33:27.707][Moby ][Info ] clocksource: hyperv_clocksource_tsc_page: mask: 0xffffffffffffffff max_cycles: 0x24e6a1710, max_idle_ns: 440795202120 ns [11:33:27.711][Moby ][Info ] hv_vmbus: Hyper-V Host Build:15007-10.0-1-0.1000; Vmbus version:4.0 [11:33:27.720][Moby ][Info ] PCI: Using ACPI for IRQ routing [11:33:27.723][Moby ][Info ] PCI: System does not support PCI [11:33:27.726][Moby ][Info ] NetLabel: Initializing [11:33:27.726][Moby ][Info ] NetLabel: domain hash size = 128 [11:33:27.731][Moby ][Info ] NetLabel: protocols = UNLABELED CIPSOv4 [11:33:27.761][Moby ][Info ] NetLabel: unlabeled traffic allowed by default [11:33:27.775][Moby ][Info ] clocksource: Switched to clocksource hyperv_clocksource_tsc_page [11:33:27.794][Moby ][Info ] FS-Cache: Loaded [11:33:27.801][Moby ][Info ] CacheFiles: Loaded [11:33:27.804][Moby ][Info ] pnp: PnP ACPI init [11:33:27.807][Moby ][Info ] pnp: PnP ACPI: found 3 devices [11:33:27.821][Moby ][Info ] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [11:33:27.827][Moby ][Info ] NET: Registered protocol family 2 [11:33:27.843][Moby ][Info ] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [11:33:27.858][Moby ][Info ] TCP bind hash table entries: 16384 (order: 6, 262144 bytes) [11:33:27.862][Moby ][Info ] TCP: Hash tables configured (established 16384 bind 16384) [11:33:27.881][Moby ][Info ] UDP hash table entries: 1024 (order: 3, 32768 bytes) [11:33:27.892][Moby ][Info ] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) [11:33:27.896][Moby ][Info ] NET: Registered protocol family 1 [11:33:27.905][Moby ][Info ] RPC: Registered named UNIX socket transport module. [11:33:27.911][Moby ][Info ] RPC: Registered udp transport module. [11:33:27.913][Moby ][Info ] RPC: Registered tcp transport module. [11:33:27.924][Moby ][Info ] RPC: Registered tcp NFSv4.1 backchannel transport module. [11:33:27.928][Moby ][Info ] Unpacking initramfs... [11:33:29.216][Moby ][Info ] Freeing initrd memory: 55100K (ffff946e77cb0000 - ffff946e7b27f000) [11:33:29.258][Moby ][Info ] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 10737418240 ms ovfl timer [11:33:29.271][Moby ][Info ] RAPL PMU: hw unit of domain pp0-core 2^-0 Joules [11:33:29.282][Moby ][Info ] RAPL PMU: hw unit of domain package 2^-0 Joules [11:33:29.296][Moby ][Info ] RAPL PMU: hw unit of domain dram 2^-0 Joules [11:33:29.300][Moby ][Info ] RAPL PMU: hw unit of domain pp1-gpu 2^-0 Joules [11:33:29.304][Moby ][Info ] RAPL PMU: hw unit of domain psys 2^-0 Joules [11:33:29.310][Moby ][Info ] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x273dfae8b6a, max_idle_ns: 440795345485 ns [11:33:29.344][Moby ][Info ] futex hash table entries: 32768 (order: 9, 2097152 bytes) [11:33:29.348][Moby ][Info ] audit: initializing netlink subsys (disabled) [11:33:29.355][Moby ][Info ] audit: type=2000 audit(1487849608.110:1): initialized [11:33:29.361][Moby ][Info ] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [11:33:29.365][Moby ][Info ] FS-Cache: Netfs 'nfs' registered for caching [11:33:29.375][Moby ][Info ] NFS: Registering the id_resolver key type [11:33:29.384][Moby ][Info ] Key type id_resolver registered [11:33:29.391][Moby ][Info ] Key type id_legacy registered [11:33:29.396][Moby ][Info ] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [11:33:29.407][Moby ][Info ] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [11:33:29.413][Moby ][Info ] FS-Cache: Netfs 'cifs' registered for caching [11:33:29.428][Moby ][Info ] ntfs: driver 2.1.32 [Flags: R/O]. [11:33:29.439][Moby ][Info ] fuse init (API version 7.26) [11:33:29.444][Moby ][Info ] 9p: Installing v9fs 9p2000 file system support [11:33:29.449][Moby ][Info ] FS-Cache: Netfs '9p' registered for caching [11:33:29.453][Moby ][Info ] aufs 4.9-20170206 [11:33:29.462][Moby ][Info ] NET: Registered protocol family 38 [11:33:29.474][Moby ][Info ] Key type asymmetric registered [11:33:29.483][Moby ][Info ] Asymmetric key parser 'x509' registered [11:33:29.493][Moby ][Info ] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [11:33:29.498][Moby ][Info ] io scheduler noop registered [11:33:29.503][Moby ][Info ] io scheduler deadline registered (default) [11:33:29.507][Moby ][Info ] io scheduler cfq registered [11:33:29.531][Moby ][Info ] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [11:33:29.543][Moby ][Info ] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [11:33:29.547][Moby ][Info ] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [11:33:29.551][Moby ][Info ] hv_vmbus: registering driver hyperv_fb [11:33:29.574][Moby ][Info ] GHES: HEST is not enabled! [11:33:29.580][Moby ][Info ] xenfs: not registering filesystem on non-xen platform [11:33:29.582][Moby ][Info ] random: fast init done [11:33:29.592][Moby ][Info ] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [11:33:29.636][Moby ][Info ] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [11:33:29.673][Moby ][Info ] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A [11:33:29.677][Moby ][Info ] Initializing Nozomi driver 2.1d [11:33:29.681][Moby ][Info ] Non-volatile memory driver v1.3 [11:33:29.693][Moby ][Info ] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds). [11:33:29.715][Moby ][Info ] loop: module loaded [11:33:29.728][Moby ][Info ] nbd: registered device at major 43 [11:33:29.752][Moby ][Info ] VMware PVSCSI driver - version 1.0.7.0-k [11:33:29.762][Moby ][Info ] hv_vmbus: registering driver hv_storvsc [11:33:29.768][Moby ][Info ] scsi host0: storvsc_host_t [11:33:29.773][Moby ][Info ] scsi 0:0:0:0: Direct-Access Msft Virtual Disk 1.0 PQ: 0 ANSI: 5 [11:33:29.816][Moby ][Info ] scsi 0:0:0:1: CD-ROM Msft Virtual DVD-ROM 1.0 PQ: 0 ANSI: 0 [11:33:29.888][Moby ][Info ] sd 0:0:0:0: [sda] 125829120 512-byte logical blocks: (64.4 GB/60.0 GiB) [11:33:29.899][Moby ][Info ] sd 0:0:0:0: [sda] 4096-byte physical blocks [11:33:29.910][Moby ][Info ] sr 0:0:0:1: [sr0] scsi3-mmc drive: 0x/0x caddy [11:33:29.919][Moby ][Info ] cdrom: Uniform CD-ROM driver Revision: 3.20 [11:33:29.938][Moby ][Info ] sd 0:0:0:0: Attached scsi generic sg0 type 0 [11:33:29.956][Moby ][Info ] sr 0:0:0:1: Attached scsi generic sg1 type 5 [11:33:29.997][Moby ][Info ] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [11:33:30.010][Moby ][Info ] tun: Universal TUN/TAP device driver, 1.6 [11:33:30.023][Moby ][Info ] tun: (C) 1999-2004 Max Krasnyansky maxk@qualcomm.com [11:33:30.046][Moby ][Info ] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI [11:33:30.053][Moby ][Info ] e1000: Copyright (c) 1999-2006 Intel Corporation. [11:33:30.066][Moby ][Info ] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k [11:33:30.080][Moby ][Info ] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [11:33:30.100][Moby ][Info ] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 3.2.2-k [11:33:30.108][Moby ][Info ] ixgbevf: Copyright (c) 2009 - 2015 Intel Corporation. [11:33:30.113][Moby ][Info ] PPP generic driver version 2.4.2 [11:33:30.125][Moby ][Info ] PPP BSD Compression module registered [11:33:30.137][Moby ][Info ] PPP Deflate Compression module registered [11:33:30.147][Moby ][Info ] PPP MPPE Compression module registered [11:33:30.153][Moby ][Info ] NET: Registered protocol family 24 [11:33:30.161][Moby ][Info ] PPTP driver version 0.8.5 [11:33:30.182][Moby ][Info ] VMware vmxnet3 virtual NIC driver - version 1.4.a.0-k-NAPI [11:33:30.192][Moby ][Info ] hv_vmbus: registering driver hv_netvsc [11:33:30.195][Moby ][Info ] hv_netvsc: hv_netvsc channel opened successfully [11:33:30.209][Moby ][Info ] sd 0:0:0:0: [sda] Write Protect is off [11:33:30.232][Moby ][Info ] hv_netvsc 0f286b9d-d358-4db0-bcdb-1e85f43133ab: Send section size: 6144, Section count:2560 [11:33:30.242][Moby ][Info ] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [11:33:30.258][Moby ][Info ] hv_netvsc 0f286b9d-d358-4db0-bcdb-1e85f43133ab: Device MAC 00:15:5d:02:fc:06 link state up [11:33:30.282][Moby ][Info ] Fusion MPT base driver 3.04.20 [11:33:30.287][Moby ][Info ] Copyright (c) 1999-2008 LSI Corporation [11:33:30.293][Moby ][Info ] Fusion MPT SPI Host driver 3.04.20 [11:33:30.298][Moby ][Info ] aoe: AoE v85 initialised. [11:33:30.305][Moby ][Info ] i8042: PNP: No PS/2 controller found. Probing ports directly. [11:33:31.745][Moby ][Info ] i8042: No controller found [11:33:31.749][Moby ][Info ] hv_vmbus: registering driver hyperv_keyboard [11:33:31.755][Moby ][Info ] mousedev: PS/2 mouse device common for all mice [11:33:31.780][Moby ][Info ] input: PC Speaker as /devices/platform/pcspkr/input/input0 [11:33:31.785][Moby ][Info ] rtc_cmos 00:00: RTC can wake from S4 [11:33:31.817][Moby ][Info ] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 [11:33:31.830][Moby ][Info ] rtc_cmos 00:00: alarms up to one month, 114 bytes nvram [11:33:31.837][Moby ][Info ] i2c /dev entries driver [11:33:31.848][Moby ][Info ] EFI Variables Facility v0.08 2004-May-17 [11:33:31.855][Moby ][Info ] pstore: using zlib compression [11:33:31.891][Moby ][Info ] pstore: Registered efi as persistent store backend [11:33:31.894][Moby ][Info ] hv_utils: Registering HyperV Utility Driver [11:33:31.898][Moby ][Info ] hv_vmbus: registering driver hv_util [11:33:31.917][Moby ][Info ] sd 0:0:0:0: [sda] Attached SCSI disk [11:33:32.044][Moby ][Info ] hv_utils: Heartbeat IC version 3.0 [11:33:32.066][Moby ][Info ] hv_utils: Shutdown IC version 3.0 [11:33:32.077][Moby ][Info ] hv_utils: TimeSync IC version 4.0 [11:33:32.083][Moby ][Info ] hv_vmbus: registering driver hv_balloon [11:33:32.093][Moby ][Info ] oprofile: using timer interrupt. [11:33:32.112][Moby ][Info ] GACT probability on [11:33:32.116][Moby ][Info ] Mirror/redirect action on [11:33:32.123][Moby ][Info ] Simple TC action Loaded [11:33:32.128][Moby ][Info ] netem: version 1.3 [11:33:32.147][Moby ][Info ] u32 classifier [11:33:32.162][Moby ][Info ] Performance counters on [11:33:32.167][Moby ][Info ] input device check on [11:33:32.175][Moby ][Info ] Actions configured [11:33:32.179][Moby ][Info ] Netfilter messages via NETLINK v0.30. [11:33:32.195][Moby ][Info ] nfnl_acct: registering with nfnetlink. [11:33:32.223][Moby ][Info ] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) [11:33:32.248][Moby ][Info ] ctnetlink v0.93: registering with nfnetlink. [11:33:32.256][Moby ][Info ] nf_tables: (c) 2007-2009 Patrick McHardy kaber@trash.net [11:33:32.266][Moby ][Info ] nf_tables_compat: (c) 2012 Pablo Neira Ayuso pablo@netfilter.org [11:33:32.275][Moby ][Info ] xt_time: kernel timezone is -0000 [11:33:32.294][Moby ][Info ] ip_set: protocol 6 [11:33:32.302][Moby ][Info ] IPVS: Registered protocols (TCP, UDP, SCTP, AH, ESP) [11:33:32.312][Moby ][Info ] IPVS: Connection hash table configured (size=4096, memory=64Kbytes) [11:33:32.315][Moby ][Info ] IPVS: Creating netns size=2104 id=0 [11:33:32.319][Moby ][Info ] IPVS: ipvs loaded. [11:33:32.332][Moby ][Info ] IPVS: [rr] scheduler registered. [11:33:32.345][Moby ][Info ] IPVS: [wrr] scheduler registered. [11:33:32.350][Moby ][Info ] IPVS: [lc] scheduler registered. [11:33:32.358][Moby ][Info ] IPVS: [wlc] scheduler registered. [11:33:32.365][Moby ][Info ] IPVS: [fo] scheduler registered. [11:33:32.374][Moby ][Info ] IPVS: [ovf] scheduler registered. [11:33:32.390][Moby ][Info ] IPVS: [lblc] scheduler registered. [11:33:32.395][Moby ][Info ] IPVS: [lblcr] scheduler registered. [11:33:32.400][Moby ][Info ] IPVS: [dh] scheduler registered. [11:33:32.404][Moby ][Info ] IPVS: [sh] scheduler registered. [11:33:32.409][Moby ][Info ] IPVS: [sed] scheduler registered. [11:33:32.413][Moby ][Info ] IPVS: [nq] scheduler registered. [11:33:32.417][Moby ][Info ] IPVS: ftp: loaded support on port[0] = 21 [11:33:32.447][Moby ][Info ] ipip: IPv4 and MPLS over IPv4 tunneling driver [11:33:32.462][Moby ][Info ] gre: GRE over IPv4 demultiplexor driver [11:33:32.486][Moby ][Info ] ip_gre: GRE over IPv4 tunneling driver [11:33:32.497][Moby ][Info ] IPv4 over IPsec tunneling driver [11:33:32.510][Moby ][Info ] ip_tables: (C) 2000-2006 Netfilter Core Team [11:33:32.543][Moby ][Info ] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully [11:33:32.551][Moby ][Info ] arp_tables: arp_tables: (C) 2002 David S. Miller [11:33:32.562][Moby ][Info ] Initializing XFRM netlink socket [11:33:32.578][Moby ][Info ] NET: Registered protocol family 10 [11:33:32.582][Moby ][Info ] mip6: Mobile IPv6 [11:33:32.593][Moby ][Info ] ip6_tables: (C) 2000-2006 Netfilter Core Team [11:33:32.600][Moby ][Info ] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [11:33:32.622][Moby ][Info ] ip6_gre: GRE over IPv6 tunneling driver [11:33:32.626][Moby ][Info ] NET: Registered protocol family 17 [11:33:32.630][Moby ][Info ] NET: Registered protocol family 15 [11:33:32.634][Moby ][Info ] Bridge firewalling registered [11:33:32.638][Moby ][Info ] Ebtables v2.0 registered [11:33:32.646][Moby ][Info ] l2tp_core: L2TP core driver, V2.0 [11:33:32.652][Moby ][Info ] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [11:33:32.664][Moby ][Info ] 8021q: 802.1Q VLAN Support v1.8 [11:33:32.672][Moby ][Info ] 9pnet: Installing 9P2000 support [11:33:32.678][Moby ][Info ] Key type dns_resolver registered [11:33:32.683][Moby ][Info ] openvswitch: Open vSwitch switching datapath [11:33:32.694][Moby ][Info ] hv_vmbus: registering driver hv_sock [11:33:32.699][Moby ][Info ] NET: Registered protocol family 43 [11:33:32.718][Moby ][Info ] mpls_gso: MPLS GSO support [11:33:32.725][Moby ][Info ] microcode: sig=0x406e3, pf=0x1, revision=0xffffffff [11:33:32.734][Moby ][Info ] microcode: Microcode Update Driver: v2.01 tigran@aivazian.fsnet.co.uk, Peter Oruba [11:33:32.738][Moby ][Info ] AVX2 version of gcm_enc/dec engaged. [11:33:32.743][Moby ][Info ] AES CTR mode by8 optimization enabled [11:33:32.763][Moby ][Info ] registered taskstats version 1 [11:33:32.769][Moby ][Info ] Key type big_key registered [11:33:32.780][Moby ][Info ] Key type encrypted registered [11:33:32.786][Moby ][Info ] rtc_cmos 00:00: setting system clock to 2017-02-23 11:33:32 UTC (1487849612) [11:33:32.813][Moby ][Info ] Freeing unused kernel memory: 1392K (ffffffffb1f62000 - ffffffffb20be000) [11:33:32.817][Moby ][Info ] Write protecting the kernel read-only data: 14336k [11:33:32.825][Moby ][Info ] Freeing unused kernel memory: 1728K (ffff946e8a850000 - ffff946e8aa00000) [11:33:32.836][Moby ][Info ] Freeing unused kernel memory: 1236K (ffff946e8accb000 - ffff946e8ae00000) [11:33:33.033][Moby ][Info ] [11:33:33.050][Moby ][Info ] OpenRC 0.21.7.e3f10ac is starting up Linux 4.9.10-moby (x86_64) [11:33:33.050][Moby ][Info ] [11:33:33.060][Moby ][Info ] Mounting /proc ... [ ok ] [11:33:33.071][Moby ][Info ] Mounting /run ... /run/openrc: creating directory [11:33:33.085][Moby ][Info ] /run/lock: creating directory [11:33:33.095][Moby ][Info ] /run/lock: correcting owner [11:33:33.279][Moby ][Info ] Caching servce dependencies ... [ ok ] [11:33:33.293][Moby ][Info ] Mounting /sys ... [ ok ] [11:33:33.298][Moby ][Info ] Mounting security filesystem ... [ ok ] [11:33:33.306][Moby ][Info ] Mounting debug filesystem ... [ ok ] [11:33:33.319][Moby ][Info ] Mounting fuse control filesystem ... [ ok ] [11:33:33.334][Moby ][Info ] Mounting persistent storage (pstore) filesystem ... [ ok ] [11:33:33.342][Moby ][Info ] Mounting cgroup filesystem ... [ ok ] [11:33:33.394][Moby ][Info ] Mounting devtmpfs on /dev ... [ ok ] [11:33:33.425][Moby ][Info ] Mounting /dev/mqueue ... [ ok ] [11:33:33.433][Moby ][Info ] Mounting /dev/pts ... [ ok ] [11:33:33.445][Moby ][Info ] Mounting /dev/shm ... [ ok ] [11:33:33.602][Moby ][Info ] Starting busybox mdev ... [ ok ] [11:33:43.294][Moby ][Info ] Configuring host block device ...1048576+0 records in [11:33:43.298][Moby ][Info ] 1048576+0 records out [11:33:43.306][Moby ][Info ] Setting up swapspace version 1, size = 1073737728 bytes [11:33:43.309][Moby ][Info ] UUID=c9683984-8096-4dc4-b45b-30e377991c0a [11:33:43.510][Moby ][Info ] [ ok ] [11:33:43.525][Moby ][Info ] Autodetection of hardware disabled from boot cmdline [11:33:43.560][Moby ][Info ] Remounting filesystems ... [ ok ] [11:33:43.579][Moby ][Info ] Mounting local filesystems ... [ ok ] [11:33:43.634][Moby ][Info ] Setting system clock using the hardware clock [UTC] ... [ ok ] [11:33:43.647][Moby ][Info ] Setting hostname ... [ ok ] [11:33:43.743][Moby ][Info ] Creating user login records ... [ ok ] [11:33:43.798][Moby ][Info ] Starting vsock proxy ... [ ok ] [11:33:43.810][Moby ][Info ] sysklogd -> start: syslogd ... [ ok ] [11:33:44.000][Linux ][Info ] Vsudd is reachable! [11:33:44.012][ApiProxy ][Info ] Starting C:\Program Files\Docker\Docker\Resources\com.docker.proxy.exe -VM=dca3d719-c859-421e-a4f4-6f840198d8cb [11:33:44.158][ApiProxy ][Info ] Started [11:33:44.251][ApiProxy ][Info ] docker proxy (on deprecated port): ready [11:33:44.252][ApiProxy ][Info ] docker proxy: ready [11:33:44.328][ApiProxy ][Info ] proxy >> GET /_ping [11:33:44.328][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:44.330][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:44.331][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:44.331][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [11:33:44.331][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:44.338][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:44.347][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:44.351][DockerDaemonChecker][Error ] Docker daemon is not running [11:33:44.873][Moby ][Info ] sysklogd -> start: klogd ... [ ok ] [11:33:44.917][Moby ][Info ] Starting busybox crond ... [ ok ] [11:33:44.944][Moby ][Info ] Mounting misc binary format filesystem ... [ ok ] [11:33:44.958][Moby ][Info ] Setting sysfs variables ... [ ok ] [11:33:44.986][Moby ][Info ] Starting local ... [ ok ] [11:33:45.107][Moby ][Info ] Setting up database (Windows) .../sbin/9pmount-vsock: starting in listening mode with serviceid=C378280D-DA14-42C8-A24E-0DE92A1028E2, tag=db, path=/tmp/db [11:33:45.428][ApiProxy ][Info ] proxy >> GET /_ping [11:33:45.428][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:45.428][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:45.433][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:45.434][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [11:33:45.435][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:45.437][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:45.440][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:45.446][DockerDaemonChecker][Error ] Docker daemon is not running [11:33:45.886][DataKit ][Info ] com.docker.db.exe: accepted a new connection on hyperv-connect://dca3d719-c859-421e-a4f4-6f840198d8cb [11:33:45.894][Moby ][Info ] /sbin/9pmount-vsock: Connect from: 00000000-0000-0000-0000-000000000000:4617ca41-f8b8-11e6-afcf-b4ae2be32f4d [11:33:45.896][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 4096 [11:33:45.908][Moby ][Info ] /sbin/9pmount-vsock: mount successful for serviceid=C378280D-DA14-42C8-A24E-0DE92A1028E2 tag=db path=/tmp/db [11:33:46.083][DataKit ][Error ] com.docker.db.exe: Hvsock.read raised Unix.Unix_error(Unix.ECONNABORTED, "read", ""): returning `Eof [11:33:46.088][Moby ][Info ] [ ok ] [11:33:46.179][Moby ][Info ] Configuring Windows network settings from database ... [ ok ] [11:33:46.198][Moby ][Info ] Configuring kernel parameters ... [ ok ] [11:33:46.233][Moby ][Info ] Starting VPN proxy ... [ ok ] [11:33:46.433][VpnKit ][Info ] com.docker.slirp.exe: hvsock connected successfully [11:33:46.460][VpnKit ][Info ] com.docker.slirp.exe: attempting to reconnect to database [11:33:46.462][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:33:46.465][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousandU msize 8215 [11:33:46.475][VpnKit ][Info ] com.docker.slirp.exe: reconnected transport layer [11:33:46.478][VpnKit ][Info ] com.docker.slirp.exe: remove connection limit [11:33:46.492][VpnKit ][Info ] com.docker.slirp.exe: allowing binds to any IP addresses [11:33:46.495][VpnKit ][Info ] com.docker.slirp.exe: updating resolvers to nameserver 192.168.2.1#53 [11:33:46.496][VpnKit ][Info ] order 0 [11:33:46.496][VpnKit ][Info ] search corp.microsoft.com [11:33:46.496][VpnKit ][Info ] com.docker.slirp.exe: Add(3): DNS configuration changed to: nameserver 192.168.2.1#53 [11:33:46.496][VpnKit ][Info ] order 0 [11:33:46.496][VpnKit ][Info ] search corp.microsoft.com [11:33:46.497][VpnKit ][Info ] com.docker.slirp.exe: Creating slirp server peer_ip:192.168.65.2 local_ip:192.168.65.1 domain_search:corp.microsoft.com mtu:8000 [11:33:46.498][VpnKit ][Info ] com.docker.slirp.exe: PPP.negotiate: received ((magic VMN3T)(version 13)(commit"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) [11:33:46.499][VpnKit ][Info ] com.docker.slirp.exe: TCP/IP ready [11:33:46.499][VpnKit ][Info ] com.docker.slirp.exe: stack connected [11:33:46.499][VpnKit ][Info ] com.docker.slirp.exe: no introspection server requested. See the --introspection argument [11:33:46.499][VpnKit ][Info ] com.docker.slirp.exe: starting diagnostics server on: \.\pipe\dockerVpnKitDiagnostics [11:33:46.503][VpnKit ][Info ] com.docker.slirp.exe: BOOTREQUEST from 5e:9d:79:a1:f9:a5 [11:33:46.503][VpnKit ][Info ] com.docker.slirp.exe: BOOTREPLY to 5e:9d:79:a1:f9:a5 yiddr 192.168.65.2 siddr 192.168.65.1 dns 192.168.65.1 router 192.168.65.1 domain local [11:33:46.507][ApiProxy ][Info ] proxy >> GET /_ping [11:33:46.507][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:46.508][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:46.517][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:46.545][Moby ][Info ] Starting DHCP Client Daemon ... [ ok ] [11:33:46.561][Moby ][Info ] Starting diagnostics server ... [ ok ] [11:33:46.583][Moby ][Info ] Starting networking ... lo ... [ ok ] [11:33:46.634][Moby ][Info ] Starting VPN proxy ... [ ok ] [11:33:46.674][Moby ][Info ] Starting busybox acpid ... [ ok ] [11:33:46.739][Moby ][Info ] Running system containerd ... [ ok ] [11:33:46.765][Moby ][Info ] Running system containers ... binfmt rngd [ ok ] [11:33:46.917][Moby ][Info ] Starting VPN proxy ... [ ok ] [11:33:46.989][Moby ][Info ] Configuring host settings from database ... [ ok ] [11:33:47.028][Moby ][Info ] Setting up proxy port service .../sbin/9pmount-vsock: starting in listening mode with serviceid=0B95756A-9985-48AD-9470-78E060895BE7, tag=port, path=/port [11:33:47.069][VpnKit ][Info ] com.docker.slirp.exe: hvsock connected successfully [11:33:47.089][Moby ][Info ] /sbin/9pmount-vsock: Connect from: 00000000-0000-0000-0000-000000000000:4617ca4c-f8b8-11e6-afcf-b4ae2be32f4d [11:33:47.125][Moby ][Info ] /sbin/9pmount-vsock: mount successful for serviceid=0B95756A-9985-48AD-9470-78E060895BE7 tag=port path=/port [11:33:47.128][Moby ][Info ] [ ok ] [11:33:47.428][Moby ][Info ] Starting Docker ... [ ok ] [11:33:47.500][Moby ][Info ] ? Drive found: sda [11:33:47.530][Moby ][Info ] ? Drive mounted: /dev/sda1 on /var type ext4 (rw,relatime,data=ordered) [11:33:47.530][Moby ][Info ] ? Network connected: inet addr:192.168.65.2 Bcast:192.168.65.7 Mask:255.255.255.248 [11:33:47.530][Moby ][Info ] ? Process tap-vsockd running [11:33:47.547][Moby ][Info ] ? Process dockerd running: dockerd --pidfile=/run/docker.pid -H unix:///var/run/docker.sock --swarm-default-advertise-addr=eth0 --userland-proxy-path /usr/bin/slirp-proxy --debug --experimental --storage-driver overlay2 [11:33:47.560][Moby ][Info ] ? Process containerd running: docker-containerd -l unix:///var/run/docker/libcontainerd/docker-containerd.sock --metrics-interval=0 --start-timeout 2m --state-dir /var/run/docker/libcontainerd/containerd --shim docker-containerd-shim --runtime docker-runc --debug [11:33:47.911][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [11:33:47.911][VpnKit ][Info ] com.docker.slirp.exe: Using protocol TwoThousand msize 4096 [11:33:47.911][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:47.911][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:47.911][ApiProxy ][Info ] error reading response from Docker: HvSocket has already been closed [11:33:47.911][DockerDaemonChecker][Error ] Docker daemon is not running [11:33:49.032][ApiProxy ][Info ] proxy >> GET /_ping [11:33:49.032][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:49.038][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:49.085][ApiProxy ][Info ] proxy << GET /_ping [11:33:49.086][ApiProxy ][Info ] proxy >> GET /v1.26/containers/json [11:33:49.086][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:49.096][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:33:49.102][ApiProxy ][Info ] proxy << GET /v1.26/containers/json [11:33:49.129][NamedPipeClient][Info ] Received response for Start [11:33:49.129][DockerDaemonChecker][Info ] Docker daemon is running [11:33:49.129][NamedPipeServer][Info ] Start done in 00:00:47.7063962. [11:33:49.168][Actions ][Debug ] Start took 00:00:47.7843996 [11:33:49.169][Notifications ][Info ] Docker is running [11:33:49.169][SegmentApi ][Info ] Usage statistic: installShowWelcomePopup [11:33:49.177][SegmentApi ][Info ] Usage statistic: appRunning [11:33:49.197][Moby ][Info ] ? Docker daemon working: 1.13.1 [11:33:49.210][Moby ][Info ] ? Diagnostics server running: /usr/bin/diagnostics-server -hvsock [11:33:49.231][Moby ][Info ] ? System containerd server running: /usr/bin/containerd [11:33:49.298][Moby ][Info ] ? System containerd working [11:33:49.311][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [11:33:49.312][NamedPipeServer][Info ] GetDefaultVhdxPath() [11:33:49.318][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [11:33:49.318][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0068435. [11:33:49.353][Moby ][Info ] Starting Hyper-V daemon: hv_kvp_daemon ... [ ok ] [11:33:49.406][Moby ][Info ] Starting Hyper-V daemon: hv_vss_daemon ... [ ok ] [11:33:49.476][Moby ][Info ] Adjusting oom killer settings ... [ ok ] [11:33:49.498][Moby ][Info ] [11:33:49.504][Moby ][Info ] Welcome to Moby [11:33:49.504][Moby ][Info ] [11:33:49.507][Moby ][Info ] ## . [11:33:49.514][Moby ][Info ] ## ## ## == [11:33:49.516][Moby ][Info ] ## ## ## ## ## === [11:33:49.518][Moby ][Info ] /"""""""""""""""""_/ === [11:33:49.520][Moby ][Info ] ~ { ~~ ~ ~~ ~ ~ / ===- ~~~ [11:33:49.522][Moby ][Info ] _ o / [11:33:49.524][Moby ][Info ] \ \ / [11:33:49.545][Moby ][Info ] ____\/ [11:33:49.548][Moby ][Info ] [11:33:49.549][Moby ][Info ] [11:33:57.674][SharedDrivesSettings][Info ] Apply shared drive settings [11:33:57.677][NamedPipeClient][Info ] Sending Mount(C, *:**, Docker.Core.Settings)... [11:33:57.709][NamedPipeServer][Info ] Mount(C, *:**, Docker.Core.Settings) [11:33:57.712][SambaShare ][Info ] Ensuring Samba file sharing is enabled [11:33:57.786][Cmd ][Info ] da5de340-b4b4-4653-a00c-fe0d011ed91b was shared successfully. [11:33:57.786][Cmd ][Info ] [11:33:57.829][Cmd ][Info ] da5de340-b4b4-4653-a00c-fe0d011ed91b was deleted successfully. [11:33:57.829][Cmd ][Info ] [11:33:57.834][SambaShare ][Info ] Mount C [11:33:57.863][Cmd ][Info ] This shared resource does not exist. [11:33:57.864][Cmd ][Info ] [11:33:57.864][Cmd ][Info ] More help is available by typing NET HELPMSG 2310. [11:33:57.864][Cmd ][Info ] [11:33:57.867][SambaShare ][Info ] "C" is not shared [11:33:57.868][SambaShare ][Info ] Creating share "C:\" as "C" with Full Control to "" [11:33:57.923][Cmd ][Info ] C was shared successfully. [11:33:57.924][Cmd ][Info ] [11:33:57.955][Cmd ][Info ] Share name C [11:33:57.955][Cmd ][Info ] Path C:\ [11:33:57.955][Cmd ][Info ] Remark
[11:33:57.955][Cmd ][Info ] Maximum users No limit [11:33:57.955][Cmd ][Info ] Users
[11:33:57.955][Cmd ][Info ] Caching Caching disabled [11:33:57.955][Cmd ][Info ] Permission
, FULL [11:33:57.955][Cmd ][Info ] [11:33:57.955][Cmd ][Info ] The command completed successfully. [11:33:57.955][Cmd ][Info ] [11:33:57.958][SambaShare ][Info ] "C" is shared [11:34:02.235][SambaShare ][Info ] Username: **** [11:34:02.235][SambaShare ][Info ] Host IP: 10.0.75.1 [11:34:02.235][SambaShare ][Info ] Cifs options: noperm,iocharset=utf8,nobrl,mfsymlinks,vers=3.02,domain=**** [11:34:02.296][ApiProxy ][Info ] proxy >> GET /_ping [11:34:02.297][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.308][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.317][ApiProxy ][Info ] proxy << GET /_ping [11:34:02.332][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [11:34:02.332][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.333][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.713][ApiProxy ][Info ] proxy << POST /v1.26/images/load?quiet=1 [11:34:02.764][ApiProxy ][Info ] proxy >> GET /_ping [11:34:02.764][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.765][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.766][ApiProxy ][Info ] proxy << GET /_ping [11:34:02.769][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [rewriteBinds] [11:34:02.772][DataKit ][Info ] com.docker.db.exe: accepted a new connection on \.\pipe\dockerDataBase [11:34:02.777][DataKit ][Info ] com.docker.db.exe: Using protocol TwoThousand msize 16384 [11:34:02.786][ApiProxy ][Info ] Failed to Walk to [snapshots 8a36646b0b764ce9f31e9e04430d5133b02b9e58 ro com.docker.driver.amd64-linux proxy http] 9p: No such file or directory [11:34:02.788][ApiProxy ][Info ] Failed to read proxies/http from snaphshot p9p.MessageRerror{Ename:"No such file or directory"} [11:34:02.789][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [11:34:02.789][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.789][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.917][ApiProxy ][Info ] proxy << POST /v1.26/containers/create [11:34:02.928][ApiProxy ][Info ] proxy >> POST /v1.26/containers/6d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636/attach?stderr=1&stdin=1&stdout=1&stream=1 [11:34:02.928][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.929][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.930][ApiProxy ][Info ] Upgrading to raw stream [11:34:02.930][ApiProxy ][Info ] proxy >> GET /v1.26/events?filters=%7B%22container%22%3A%7B%226d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:02.930][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.931][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.932][ApiProxy ][Info ] proxy >> POST /v1.26/containers/6d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636/start [start] [11:34:02.933][ApiProxy ][Info ] proxy >> POST /v1.26/containers/6d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636/start [11:34:02.933][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:02.933][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:03.309][ApiProxy ][Info ] proxy << POST /v1.26/containers/6d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636/start [11:34:04.363][ApiProxy ][Info ] proxy << POST /v1.26/containers/6d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636/attach?stderr=1&stdin=1&stdout=1&stream=1 [11:34:04.777][ApiProxy ][Info ] Cancel connection... [11:34:04.780][SambaShare ][Error ] Unable to mount C drive: firewall is blocking [11:34:04.780][ApiProxy ][Info ] proxy << GET /v1.26/events?filters=%7B%22container%22%3A%7B%226d93030ac482a9634b79097d481f686a7a28c2b4f311836ec9e8c29a9fb97636%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:04.781][SambaShare ][Info ] Removing share C [11:34:04.814][NamedPipeClient][Info ] Received response for Mount [11:34:04.813][NamedPipeServer][Info ] Mount done in 00:00:07.1038197. [11:34:04.827][SegmentApi ][Info ] Usage statistic: actionSettingsChanged [11:34:09.078][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [11:34:09.091][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [11:34:09.088][NamedPipeServer][Info ] GetDefaultVhdxPath() [11:34:09.090][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0020035. [11:34:11.129][NamedPipeClient][Info ] Sending RemoveShare(C)... [11:34:11.129][NamedPipeServer][Info ] RemoveShare(C) [11:34:11.131][SambaShare ][Info ] Removing share C [11:34:11.170][NamedPipeClient][Info ] Received response for RemoveShare [11:34:11.172][NamedPipeClient][Info ] Sending Unmount(C, Docker.Core.Settings)... [11:34:11.170][SambaShare ][Error ] Removing share "C" failed with code: 2 [11:34:11.170][NamedPipeServer][Info ] RemoveShare done in 00:00:00.0409983. [11:34:11.176][NamedPipeServer][Info ] Unmount(C, Docker.Core.Settings) [11:34:11.177][SambaShare ][Info ] Unmount C [11:34:11.232][ApiProxy ][Info ] proxy >> GET /_ping [11:34:11.232][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.234][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.235][ApiProxy ][Info ] proxy << GET /_ping [11:34:11.238][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [11:34:11.238][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.239][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.376][ApiProxy ][Info ] proxy << POST /v1.26/images/load?quiet=1 [11:34:11.429][ApiProxy ][Info ] proxy >> GET /_ping [11:34:11.429][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.433][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.435][ApiProxy ][Info ] proxy << GET /_ping [11:34:11.437][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [rewriteBinds] [11:34:11.450][ApiProxy ][Info ] Failed to Walk to [snapshots 8a36646b0b764ce9f31e9e04430d5133b02b9e58 ro com.docker.driver.amd64-linux proxy http] 9p: No such file or directory [11:34:11.452][ApiProxy ][Info ] Failed to read proxies/http from snaphshot p9p.MessageRerror{Ename:"No such file or directory"} [11:34:11.452][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [11:34:11.452][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.453][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.598][ApiProxy ][Info ] proxy << POST /v1.26/containers/create [11:34:11.609][ApiProxy ][Info ] proxy >> POST /v1.26/containers/0c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126/attach?stderr=1&stdout=1&stream=1 [11:34:11.609][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.609][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.610][ApiProxy ][Info ] Upgrading to raw stream [11:34:11.613][ApiProxy ][Info ] proxy >> GET /v1.26/events?filters=%7B%22container%22%3A%7B%220c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:11.613][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.615][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.617][ApiProxy ][Info ] proxy >> POST /v1.26/containers/0c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126/start [start] [11:34:11.618][ApiProxy ][Info ] proxy >> POST /v1.26/containers/0c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126/start [11:34:11.618][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.618][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:11.973][ApiProxy ][Info ] proxy << POST /v1.26/containers/0c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126/start [11:34:12.054][ApiProxy ][Info ] proxy << POST /v1.26/containers/0c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126/attach?stderr=1&stdout=1&stream=1 [11:34:12.473][NamedPipeClient][Info ] Received response for Unmount [11:34:12.471][ApiProxy ][Info ] Cancel connection... [11:34:12.473][NamedPipeServer][Info ] Unmount done in 00:00:01.2956277. [11:34:12.476][ApiProxy ][Info ] proxy << GET /v1.26/events?filters=%7B%22container%22%3A%7B%220c948058ccf42c37bb6964203e70bf666b2d6c97ba8c065b441b954b4e97c126%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:12.482][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [11:34:12.483][NamedPipeServer][Info ] GetDefaultVhdxPath() [11:34:12.490][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [11:34:12.485][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0019999. [11:34:14.923][SharedDrivesSettings][Info ] Apply shared drive settings [11:34:14.954][NamedPipeClient][Info ] Sending Mount(C, , Docker.Core.Settings)... [11:34:14.954][NamedPipeServer][Info ] Mount(C, , Docker.Core.Settings) [11:34:14.955][NamedPipeServer][Info ] Mount done in 00:00:00. [11:34:14.957][NamedPipeClient][Info ] Received response for Mount [11:34:21.034][CredentialAsker][Info ] Storing credentials: *****:* [11:34:21.044][NamedPipeClient][Info ] Sending Mount(C, *:**, Docker.Core.Settings)... [11:34:21.045][NamedPipeServer][Info ] Mount(C, *:**, Docker.Core.Settings) [11:34:21.045][SambaShare ][Info ] Mount C [11:34:21.075][Cmd ][Info ] This shared resource does not exist. [11:34:21.075][Cmd ][Info ] [11:34:21.075][Cmd ][Info ] More help is available by typing NET HELPMSG 2310. [11:34:21.075][Cmd ][Info ] [11:34:21.079][SambaShare ][Info ] "C" is not shared [11:34:21.079][SambaShare ][Info ] Creating share "C:\" as "C" with Full Control to "" [11:34:21.144][Cmd ][Info ] C was shared successfully. [11:34:21.144][Cmd ][Info ] [11:34:21.185][Cmd ][Info ] Share name C [11:34:21.185][Cmd ][Info ] Path C:\ [11:34:21.185][Cmd ][Info ] Remark
[11:34:21.185][Cmd ][Info ] Maximum users No limit [11:34:21.185][Cmd ][Info ] Users
[11:34:21.185][Cmd ][Info ] Caching Caching disabled [11:34:21.186][Cmd ][Info ] Permission
, FULL [11:34:21.186][Cmd ][Info ] [11:34:21.186][Cmd ][Info ] The command completed successfully. [11:34:21.186][Cmd ][Info ] [11:34:21.191][SambaShare ][Info ] "C" is shared [11:34:21.239][SambaShare ][Info ] Username: **** [11:34:21.239][SambaShare ][Info ] Host IP: 10.0.75.1 [11:34:21.239][SambaShare ][Info ] Cifs options: noperm,iocharset=utf8,nobrl,mfsymlinks,vers=3.02,domain=**** [11:34:21.314][ApiProxy ][Info ] proxy >> GET /_ping [11:34:21.314][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.314][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.314][ApiProxy ][Info ] proxy << GET /_ping [11:34:21.316][ApiProxy ][Info ] proxy >> POST /v1.26/images/load?quiet=1 [11:34:21.318][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.321][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.492][ApiProxy ][Info ] proxy << POST /v1.26/images/load?quiet=1 [11:34:21.543][ApiProxy ][Info ] proxy >> GET /_ping [11:34:21.543][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.543][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.546][ApiProxy ][Info ] proxy << GET /_ping [11:34:21.552][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [rewriteBinds] [11:34:21.564][ApiProxy ][Info ] Failed to Walk to [snapshots 8a36646b0b764ce9f31e9e04430d5133b02b9e58 ro com.docker.driver.amd64-linux proxy http] 9p: No such file or directory [11:34:21.566][ApiProxy ][Info ] Failed to read proxies/http from snaphshot p9p.MessageRerror{Ename:"No such file or directory"} [11:34:21.566][ApiProxy ][Info ] proxy >> POST /v1.26/containers/create [11:34:21.566][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.566][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.723][ApiProxy ][Info ] proxy << POST /v1.26/containers/create [11:34:21.723][ApiProxy ][Info ] proxy >> POST /v1.26/containers/060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617/attach?stderr=1&stdin=1&stdout=1&stream=1 [11:34:21.723][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.733][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.736][ApiProxy ][Info ] Upgrading to raw stream [11:34:21.736][ApiProxy ][Info ] proxy >> GET /v1.26/events?filters=%7B%22container%22%3A%7B%22060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:21.736][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.739][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.742][ApiProxy ][Info ] proxy >> POST /v1.26/containers/060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617/start [start] [11:34:21.742][ApiProxy ][Info ] proxy >> POST /v1.26/containers/060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617/start [11:34:21.742][ApiProxy ][Info ] Dial Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:21.746][ApiProxy ][Info ] Successfully dialed Hyper-V socket dca3d719-c859-421e-a4f4-6f840198d8cb:23a432c2-537a-4291-bcb5-d62504644739 [11:34:22.049][ApiProxy ][Info ] proxy << POST /v1.26/containers/060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617/start [11:34:23.137][ApiProxy ][Info ] proxy << POST /v1.26/containers/060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617/attach?stderr=1&stdin=1&stdout=1&stream=1 [11:34:23.545][ApiProxy ][Info ] Cancel connection... [11:34:23.545][ApiProxy ][Info ] proxy << GET /v1.26/events?filters=%7B%22container%22%3A%7B%22060f4580639612113cb345e9f6af585b51a0e3d59e47ea16e176982ba26ea617%22%3Atrue%7D%2C%22type%22%3A%7B%22container%22%3Atrue%7D%7D [11:34:23.548][SambaShare ][Error ] Unable to mount C drive: firewall is blocking [11:34:23.548][SambaShare ][Info ] Removing share C [11:34:23.581][NamedPipeClient][Info ] Received response for Mount [11:34:23.579][NamedPipeServer][Info ] Mount done in 00:00:02.5345969. [11:34:25.383][NamedPipeClient][Info ] Sending GetDefaultVhdxPath()... [11:34:25.386][NamedPipeClient][Info ] Received response for GetDefaultVhdxPath [11:34:25.384][NamedPipeServer][Info ] GetDefaultVhdxPath() [11:34:25.385][NamedPipeServer][Info ] GetDefaultVhdxPath done in 00:00:00.0010039.

cmurczek commented 7 years ago

more bad news everyone: I just installed the latest insider build 15042 and still no luck with Volume Sharing. :( The insider build is labeled _rsrelease and isn't showing any build info on the desktop. It looks like this is the final build for the Creator's Update. If that's the case there'll probably be a lot of people facing this issue...

ghost commented 7 years ago

Any update on this? I just started getting this error today, which is blocking me from being able to use docker support on Visual Studio 2017.

ghost commented 7 years ago

I uninstalled then reinstalled Docker for windows (stable channel), and the problem went away. Weird.

sthuber90 commented 7 years ago

@FryDerm Glad that worked out for you. I tried that as well with no success

jewfro-cuban commented 7 years ago

@FryDerm Weird indeed. Tried the same and it works for me as well.

PatrickLang commented 7 years ago

My machine is joined to a Windows domain, and I can only get sharing to work if I have a connection back to my domain network.

eg: Get-NetConnectionProfile | ft InterfaceAlias, NetworkCategory

shows at least one "DomainAuthenticated" network:

InterfaceAlias                   NetworkCategory
--------------                   ---------------
vEthernet (HNS Internal NIC)             Private
Ethernet 2                   DomainAuthenticated
vEthernet (DockerNAT)                    Private

If I unplug my laptop and join a public wifi network then start Docker for Windows, then enabling drive sharing fails. If you're hitting problems, see if the same thing happens to you and share your results.

ragsns commented 7 years ago

@PatrickLang : No improvements.

ver

Microsoft Windows [Version 10.0.15048]

I verified that port 445 is open (via the firewall settings).

Based on the powershell command above I had AutoVPN to a DomainAuthenicated network which I disconnected as below.

Get-NetConnectionProfile | ft InterfaceAlias, NetworkCategory

InterfaceAlias NetworkCategory


Wi-Fi Public vEthernet (DockerNAT) Public

AutoVPN. Still having the firewall issue.

Get-NetConnectionProfile | ft InterfaceAlias, NetworkCategory

InterfaceAlias NetworkCategory


Wi-Fi Public vEthernet (DockerNAT) Public XXXXXXXXXX DomainAuthenticated

No difference even after this - same firewall issue.

I've not tried with an Ethernet connection (yet) FWIW!

JamesEarle commented 7 years ago

@FryDerm This also worked for me, simple uninstall and reinstall.

superbrown commented 7 years ago

I uninstalled then reinstalled Docker for windows (stable channel), rebooted, and the problem went DID NOT go away. I'm on Windows 10.

cmurczek commented 7 years ago

For me this started to work again after upgrading to Win10 Insider 15055 (fast track) and d4w stable channel. I'm on a streak now for 3 builds successfully sharing volumes! @PatrickLang are you using your domain account as credential for sharing? It might fail in cases where no DC is around for authenticating you. Try using a local account instead. @ragsns I noticed you're on a "public" network (netcategory). In that case you need to explicitly enable file sharing, since Windows by default has turned it off on public networks.

sthuber90 commented 7 years ago

In the Docker for windows settings, changing the Subnet Address to the one of my LAN adapter, as well as changing the DNS server to the same one my host machine uses finally successfully allowed me to share my C: drive 😀

So let's say my host machines has IP 192.168.10.15 and subnet address 192.168.10.0 and uses the DNS server 192.168.158.12 and the subnet mask 255.255.255.0, then changing the subnet address in docker to: image image

Did the trick 👍

image

nnyamekye commented 7 years ago

Any solutions ???

sthuber90 commented 7 years ago

@nnyamekye have you tried my solution? Have been using it for a week now without any problems :)

juhap commented 7 years ago

Docker version 17.03.1-ce, build c6d412e Windows 10 version 1703 build15063.13 Tried uninstall and reinstall - did not help Tried the network change thing above - did not help

juhap commented 7 years ago

Turns out in my case the problem was that Windows File sharing was not actually enabled for the DockerNAT interface. I completely turned off my firewall. Then tried to do "telnet 10.0.75.1 445" from my Windows -> did not work, nobody was listening.

To fix this I went to network and sharing: image

The "File and printer sharing for Microsoft networks" was enabled, but I unchecked it, clicked ok. Then took the properties again and checked it again. image

Something happened, since after this the "telnet 10.0.75.1 445" started working. So my theory is that somehow the file sharing was not enabled for that netwok interface even though the setting was enabled.

Edit: thinking further, maybe this is related to the fact that the DockerNAT is listed as "public". Makes sense that file sharing would be disabled for public network.

Edit2: To change the DockerNAT to private, run these commands in elevated PowerShell: $Profile = Get-NetConnectionProfile -InterfaceAlias "vEthernet (DockerNAT)" $Profile.NetworkCategory = "Private" Set-NetConnectionProfile -InputObject $Profile

Edit3: The above Powershell commands do not permanently fix the issue. For some reason the connection gets automatically relabeled as public.

Kounavi commented 7 years ago

Coming from #77, #114, #345, #360 and #466 I could not share my C drive with docker too. Pinging both 10.0.75.1 & 10.0.75.2 worked. ESET firewall was configured to allow any kind of traffic between local addresses but I also did create an explicit rule which didn't solve the issue. And since no VPN here is needed I was at a loss. But changing the subnet address docker used did work with the restriction it had to belong in the same subnet as my WiFi connection. So, my WiFi was in the 192.168.x.x subnet and when I changed docker to use the 192.168.75.0 IP address it was able to share my C drive. Do note, this was on a 'Public' network with 'File & Printer Sharing' enabled so I guess this is a workaround (at least in my case).

EDIT: Spoke too soon I guess. After a reboot I guess it does not work as I'm getting the same error - again!

EDIT2: Seems that marking the adapter's connection as "Private" gets the job done...Let's hope this will be the end of my nightmare's for today! 📦

EDIT3: Yeap. Totally reproducible. Among various network connections, I had to create a task scheduler script and label the connection of "vEthernet (DockerNAT)" to "Private" for this to work.

jiminikiz commented 7 years ago

I was not using any third party firewalls when running into this error. I followed the steps here: http://blog.medhat.ca/2017/01/docker-on-windows-10-error-firewall-is.html

Essentially, manually enabling file sharing on Drive C (my only drive), uninstalling "File and Printer Sharing" on the vEthernet (DockerNAT) connection, and then reinstalling that service got it to work for me. It ended up NOT having to do with the built in Windows Firewall.

friism commented 7 years ago

We have an internal issue tracking this problem, stay tuned.