From patchwork Sat Feb 27 09:54:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 46441 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3F96CB7CB6 for ; Sat, 27 Feb 2010 20:55:31 +1100 (EST) Received: from localhost ([127.0.0.1]:42316 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NlJOS-0004q4-Nm for incoming@patchwork.ozlabs.org; Sat, 27 Feb 2010 04:55:28 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NlJNp-0004pp-TJ for qemu-devel@nongnu.org; Sat, 27 Feb 2010 04:54:49 -0500 Received: from [199.232.76.173] (port=55247 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NlJNp-0004pR-CU for qemu-devel@nongnu.org; Sat, 27 Feb 2010 04:54:49 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NlJNo-00056V-C8 for qemu-devel@nongnu.org; Sat, 27 Feb 2010 04:54:49 -0500 Received: from hall.aurel32.net ([88.191.82.174]:43261) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NlJNo-00056D-2q for qemu-devel@nongnu.org; Sat, 27 Feb 2010 04:54:48 -0500 Received: from [2a01:e35:2e80:2fb0:21e:8cff:feb0:693b] (helo=volta.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1NlJNj-0000Kx-JZ; Sat, 27 Feb 2010 10:54:43 +0100 Received: from aurel32 by volta.aurel32.net with local (Exim 4.71) (envelope-from ) id 1NlJNg-0003YF-3j; Sat, 27 Feb 2010 10:54:40 +0100 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Sat, 27 Feb 2010 10:54:31 +0100 Message-Id: <1267264471-13620-1-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Aurelien Jarno Subject: [Qemu-devel] [PATCH] Fix qemu -net user,hostfwd= example X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Aurelien Jarno --- qemu-options.hx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-options.hx b/qemu-options.hx index f53922f..7daa246 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1029,7 +1029,7 @@ the guest, use the following: @example # on the host -qemu -net user,hostfwd=tcp:5555::23 [...] +qemu -net user,hostfwd=tcp::5555-:23 [...] telnet localhost 5555 @end example