Displaying 2 results from an estimated 2 matches for "cc8c978".
2014 Jan 23
4
[PATCH] appliance: Disable ipv6 in the appliance because qemu usernet is ipv4 only
Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
Untested in this environment.
appliance/init | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/appliance/init b/appliance/init
index b25ea26..cc8c978 100755
--- a/appliance/init
+++ b/appliance/init
@@ -71,6 +71,10 @@ for f in /sys/block/{h,s,ub,v}d*/queue/scheduler; do echo noop > $f; done
# Update the system clock.
hwclock -u -s
+# Disable ipv6 because host names resolve to ipv4 and ipv6
+# Resolver may prefer ipv6 and qemu usernet does...
2014 Jan 24
0
Re: [PATCH] appliance: Disable ipv6 in the appliance because qemu usernet is ipv4 only
...2014 at 11:44:52PM +0100, Olaf Hering wrote:
> Signed-off-by: Olaf Hering <olaf@aepfle.de>
> ---
>
> Untested in this environment.
>
> appliance/init | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/appliance/init b/appliance/init
> index b25ea26..cc8c978 100755
> --- a/appliance/init
> +++ b/appliance/init
> @@ -71,6 +71,10 @@ for f in /sys/block/{h,s,ub,v}d*/queue/scheduler; do echo noop > $f; done
> # Update the system clock.
> hwclock -u -s
>
> +# Disable ipv6 because host names resolve to ipv4 and ipv6
> +# Resolv...