diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-06-24 14:42:28 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-29 08:52:45 -0500 |
commit | 3c6a05803c8f33b2ce6f704df87c98983029befd (patch) | |
tree | 53ef642f8baac03fe0d8518bd263da3ded64987b /qemu-monitor.hx | |
parent | f3546deb079fd9e069870b9fd2f22bb48d5c8254 (diff) | |
download | qemu-3c6a05803c8f33b2ce6f704df87c98983029befd.zip qemu-3c6a05803c8f33b2ce6f704df87c98983029befd.tar.gz qemu-3c6a05803c8f33b2ce6f704df87c98983029befd.tar.bz2 |
slirp: Bind support for host forwarding rules
Extend the hostfwd rule format so that the user can specify on which
host interface qemu should listen for incoming connections. If omitted,
binding will takes place against all interfaces.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 13c98bc..34f6992 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -537,10 +537,11 @@ ETEXI #ifdef CONFIG_SLIRP { "hostfwd_add", "s", net_slirp_hostfwd_add, - "[tcp|udp]:hostport:[guestaddr]:guestport", + "[tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport", "redirect TCP or UDP connections from host to guest (requires -net user)" }, { "hostfwd_remove", "s", net_slirp_hostfwd_remove, - "[tcp|udp]:hostport", "remove host-to-guest TCP or UDP redirection" }, + "[tcp|udp]:[hostaddr]:hostport", + "remove host-to-guest TCP or UDP redirection" }, #endif STEXI @item host_net_redir |