diff options
author | Gernot Hillier <gernot.hillier@siemens.com> | 2014-07-10 16:01:25 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-07-18 17:45:37 +0400 |
commit | 37cbfcce1426e9b53cd235d2c7f9f6740f4c467c (patch) | |
tree | 8d5001a8b65057bdacd1e6cafee3bd57b364c81b /qemu-doc.texi | |
parent | b847ae2d60ce05643a7fd02fcc6e3390ae97a1ee (diff) | |
download | qemu-37cbfcce1426e9b53cd235d2c7f9f6740f4c467c.zip qemu-37cbfcce1426e9b53cd235d2c7f9f6740f4c467c.tar.gz qemu-37cbfcce1426e9b53cd235d2c7f9f6740f4c467c.tar.bz2 |
doc: slirp supports ICMP echo if enabled in Linux
Since QEMU 0.15, slirp (user mode networking) supports ping to the
Internet, see e6d43cfb1f9
Signed-off-by: Gernot Hillier <gernot.hillier@siemens.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'qemu-doc.texi')
-rw-r--r-- | qemu-doc.texi | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/qemu-doc.texi b/qemu-doc.texi index 551619a..2b232ae 100644 --- a/qemu-doc.texi +++ b/qemu-doc.texi @@ -1205,9 +1205,16 @@ In order to check that the user mode network is working, you can ping the address 10.0.2.2 and verify that you got an address in the range 10.0.2.x from the QEMU virtual DHCP server. -Note that @code{ping} is not supported reliably to the internet as it -would require root privileges. It means you can only ping the local -router (10.0.2.2). +Note that ICMP traffic in general does not work with user mode networking. +@code{ping}, aka. ICMP echo, to the local router (10.0.2.2) shall work, +however. If you're using QEMU on Linux >= 3.0, it can use unprivileged ICMP +ping sockets to allow @code{ping} to the Internet. The host admin has to set +the ping_group_range in order to grant access to those sockets. To allow ping +for GID 100 (usually users group): + +@example +echo 100 100 > /proc/sys/net/ipv4/ping_group_range +@end example When using the built-in TFTP server, the router is also the TFTP server. |