From: Chen Fan Date: Wed, 25 Mar 2015 03:48:04 +0000 (+0800) Subject: docs: route element must specify network address X-Git-Tag: v1.2.14-rc1~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f276f0557eec3cc7affd27c787af98c6a09e22a9;p=thirdparty%2Flibvirt.git docs: route element must specify network address because network address is required by route, so here we should add one avoid user misunderstand. Signed-off-by: Chen Fan --- diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index 588ebe5418..1b496c3459 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -4471,7 +4471,7 @@ qemu-kvm -net nic,model=? /dev/null <target dev='vnet0'/> <ip address='192.168.122.5' prefix='24'/> <route family='ipv4' address='192.168.122.0' prefix='24' gateway='192.168.122.1'/> - <route family='ipv4' gateway='192.168.122.1'/> + <route family='ipv4' address='192.168.122.8' gateway='192.168.122.1'/> </interface> ... <hostdev mode='capabilities' type='net'> @@ -4480,7 +4480,7 @@ qemu-kvm -net nic,model=? /dev/null </source> <ip address='192.168.122.6' prefix='24'/> <route family='ipv4' address='192.168.122.0' prefix='24' gateway='192.168.122.1'/> - <route family='ipv4' gateway='192.168.122.1'/> + <route family='ipv4' address='192.168.122.8' gateway='192.168.122.1'/> </hostdev> </devices>