qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] doc: fix slirp description
@ 2011-04-24  7:19 Brad Hards
  2011-04-24 10:35 ` Stefan Hajnoczi
  2011-04-25 21:02 ` Aurelien Jarno
  0 siblings, 2 replies; 3+ messages in thread
From: Brad Hards @ 2011-04-24  7:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: Brad Hards

net/slirp.c says:
    /* default settings according to historic slirp */
    struct in_addr net  = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
    struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
    struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
    struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
    struct in_addr dns  = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */

Which I think is not what the documentation says.

Signed-off-by: Brad Hards <bradh@frogmouth.net>
---
 qemu-options.hx |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/qemu-options.hx b/qemu-options.hx
index 677c550..489df10 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1152,7 +1152,7 @@ Assign symbolic name for use in monitor commands.
 @item net=@var{addr}[/@var{mask}]
 Set IP network address the guest will see. Optionally specify the netmask,
 either in the form a.b.c.d or as number of valid top-most bits. Default is
-10.0.2.0/8.
+10.0.2.0/24.
 
 @item host=@var{addr}
 Specify the guest-visible address of the host. Default is the 2nd IP in the
@@ -1168,7 +1168,7 @@ Specifies the client hostname reported by the builtin DHCP server.
 
 @item dhcpstart=@var{addr}
 Specify the first of the 16 IPs the built-in DHCP server can assign. Default
-is the 16th to 31st IP in the guest network, i.e. x.x.x.16 to x.x.x.31.
+is the 15th to 31st IP in the guest network, i.e. x.x.x.15 to x.x.x.31.
 
 @item dns=@var{addr}
 Specify the guest-visible address of the virtual nameserver. The address must
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] doc: fix slirp description
  2011-04-24  7:19 [Qemu-devel] [PATCH] doc: fix slirp description Brad Hards
@ 2011-04-24 10:35 ` Stefan Hajnoczi
  2011-04-25 21:02 ` Aurelien Jarno
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2011-04-24 10:35 UTC (permalink / raw)
  To: Brad Hards; +Cc: qemu-devel

On Sun, Apr 24, 2011 at 8:19 AM, Brad Hards <bradh@frogmouth.net> wrote:
> net/slirp.c says:
>    /* default settings according to historic slirp */
>    struct in_addr net  = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
>    struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
>    struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
>    struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
>    struct in_addr dns  = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
>
> Which I think is not what the documentation says.
>
> Signed-off-by: Brad Hards <bradh@frogmouth.net>
> ---
>  qemu-options.hx |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] doc: fix slirp description
  2011-04-24  7:19 [Qemu-devel] [PATCH] doc: fix slirp description Brad Hards
  2011-04-24 10:35 ` Stefan Hajnoczi
@ 2011-04-25 21:02 ` Aurelien Jarno
  1 sibling, 0 replies; 3+ messages in thread
From: Aurelien Jarno @ 2011-04-25 21:02 UTC (permalink / raw)
  To: Brad Hards; +Cc: qemu-devel

On Sun, Apr 24, 2011 at 05:19:56PM +1000, Brad Hards wrote:
> net/slirp.c says:
>     /* default settings according to historic slirp */
>     struct in_addr net  = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
>     struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
>     struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
>     struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
>     struct in_addr dns  = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
> 
> Which I think is not what the documentation says.
> 
> Signed-off-by: Brad Hards <bradh@frogmouth.net>
> ---
>  qemu-options.hx |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

Thanks, applied.

> diff --git a/qemu-options.hx b/qemu-options.hx
> index 677c550..489df10 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -1152,7 +1152,7 @@ Assign symbolic name for use in monitor commands.
>  @item net=@var{addr}[/@var{mask}]
>  Set IP network address the guest will see. Optionally specify the netmask,
>  either in the form a.b.c.d or as number of valid top-most bits. Default is
> -10.0.2.0/8.
> +10.0.2.0/24.
>  
>  @item host=@var{addr}
>  Specify the guest-visible address of the host. Default is the 2nd IP in the
> @@ -1168,7 +1168,7 @@ Specifies the client hostname reported by the builtin DHCP server.
>  
>  @item dhcpstart=@var{addr}
>  Specify the first of the 16 IPs the built-in DHCP server can assign. Default
> -is the 16th to 31st IP in the guest network, i.e. x.x.x.16 to x.x.x.31.
> +is the 15th to 31st IP in the guest network, i.e. x.x.x.15 to x.x.x.31.
>  
>  @item dns=@var{addr}
>  Specify the guest-visible address of the virtual nameserver. The address must
> -- 
> 1.7.1
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-25 21:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-24  7:19 [Qemu-devel] [PATCH] doc: fix slirp description Brad Hards
2011-04-24 10:35 ` Stefan Hajnoczi
2011-04-25 21:02 ` Aurelien Jarno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).