aboutsummaryrefslogtreecommitdiffstats
path: root/docs/misc/xen_config.html
diff options
context:
space:
mode:
authorKeir Fraser <keir@xen.org>2011-03-25 21:59:20 +0000
committerKeir Fraser <keir@xen.org>2011-03-25 21:59:20 +0000
commit2a738c3fe110a880835450c48fd9c3b5912f31f3 (patch)
tree3026f0b1dbb79596a865e08eeb38aa2b12f7631a /docs/misc/xen_config.html
parent6102cace934c5ef156e7e1e21966cf3950dc40e5 (diff)
downloadxen-2a738c3fe110a880835450c48fd9c3b5912f31f3.tar.gz
xen-2a738c3fe110a880835450c48fd9c3b5912f31f3.tar.bz2
xen-2a738c3fe110a880835450c48fd9c3b5912f31f3.zip
tools: vnet: Remove
Build has been broken since at least 18969:d6889b3b6423 (early 2009) and it has been unhooked from the top level build since forever AFAICT. The last actual development (as opposed to tree wide cleanups and build fixes) appears to have been 11594:6d7bba6443ef in 2006. The functionality of vnet has apparently been superceded by VLANs, ebtables, Ethernet-over-IP etc all of which are well integrated with upstream kernels and distros. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'docs/misc/xen_config.html')
-rw-r--r--docs/misc/xen_config.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/docs/misc/xen_config.html b/docs/misc/xen_config.html
index 585adeaf7f..13d621c82f 100644
--- a/docs/misc/xen_config.html
+++ b/docs/misc/xen_config.html
@@ -137,14 +137,6 @@ Defines a pci device.
The bus, dev or func may be given in hex,
e.g. 0xff. With no leading 0x they are interpreted as decimal.
-<h2>(vnet) element</h2>
-Defines the virtual networks associated with vifs (may go away soon).
-Contains a list of vif elements:
-<ul>
- <li>id: id of the vif being configured.
- <li>vnet: id of vnet the vif is assigned to.
-</ul>
-
<h1>Examples</h1>
<p> A vm with 64 MB memory, root on /dev/xda1 (mapped from /dev/hda1),
one vif with default MAC.
@@ -165,30 +157,5 @@ one vif with default MAC.
)
</pre></code>
-<p>A vm with 64 MB memory, NFS root, and 2 vifs on separate vnets.
-<code><pre>
-(vm
- (name xendom2)
- (memory 64)
- # Define a linux image.
- (image
- (linux
- (kernel "/boot/vmlinuz-2.4.26-xen")
- (ip "::::xendom2:eth0:dhcp")
- (root "/dev/nfs")
- (args "rw fastboot nfsroot=15.144.25.79:/opt/xen/xendom2 4")
- )
- )
- # Define some vifs, with ids for use later.
- (device (vif (@ (id vif1)) (mac aa:00:00:00:00:12)))
- (device (vif (@ (id vif2)) (mac aa:00:00:00:10:12)))
-
- # Configure vnets. Refer to vifs by id.
- (vnet (vif (id vif1) (vnet 1))
- (vif (id vif2) (vnet 2)))
-
-)
-</pre></code>
-
</body>
</html>