David Scott
David Scott
I connected another ethernet client and then disconnect it. When I run `dhcpd` in another VM I now see these in the logs: ``` com.docker.vpnkit: [ERROR] Socket.Pipe.writev unix:/Users/djs/Library/Containers/com.docker.docker/Data/s50: caught Broken...
Previously we would time out connections after 5 minutes; this patch increases the timeout to 50 minutes as a test. This patch also logs the `Switch.remove` event as "info" so...
Currently we don't have a working IPv6 stack so clients can't really use the IPv6 addresses they discover. They may cause confusion and possible request timeouts. This is an experiment...
If `/etc/resolv.conf` has something like: ``` domain my.domain ``` and there exists a name `foo.my.domain` then ``` $ docker run -it centos:7 ping foo ping: foo: Name or service not...
@dsheets reports that this error appears: ``` com.docker.slirp: [ERROR] failed to parse com.docker.driver.amd64-linux/slirp/dns: Failed to parse configuration: Ipaddr.Parse_error("invalid character ':' at 4", "2001:8b0:cb40:3495:3291:8fff:fe02:8cde") ``` We should use `Ipaddr.of_string` to parse...
Since we're on the network data path we can measure the traffic as it passes through. We could measure - packets per second - bytes per second - DNS requests...
The host is currently only listening on its own internal IP for - DNS - NTP It's not possible for the VM to (for example) `ssh` into the host. It...
**- What I did** Improved the error message when not logged in. The main problem is that the suggestion to "use the Docker Login command" will not work easily if...
Previously a URL `hvsock://00000000-0000-0000-0000-000000000000:00001010-FACB-11E6-BD58-64006A7986D3` would be rejected because `url.Parse` doesn't like the non-integer port. Add a test case to demonstrate this, then add a fix to use the URL path,...
Unfortunately these aren't supported by libuv directly, so we need to implement our own separate system. It doesn't need to be particularly scalable as the expected use-case is to send...