Difference between revisions of "Virtual network device"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
(added see also)
(VPS->VE, some rewording)
Line 1: Line 1:
Vitual network device (venet) is the default network device for [[VE]]. This network device looks like a ppp connection between [[VE]] and [[VE0|host system]]. It does packet switching based on IP header.
+
Vitual network device (<code>venet</code>) is the default network device for a [[VE]]. This network device looks like a peer-to-peer connection between [[VE]] and the [[VE0|host system]]. It does packet switching based on IP header. This is a default network device for VE (an alternative is [[veth]] device).
  
venet is created automatically on [[VE]] start. vzctl scripts setup appropriate IP and settings on venet inside VPS.
+
Venet device is created automatically on [[VE]] start. Vzctl scripts set up an appropriate IP address and other settings on venet inside a VE.
  
 
=  Virtual network device usage =
 
=  Virtual network device usage =

Revision as of 08:33, 29 June 2006

Vitual network device (venet) is the default network device for a VE. This network device looks like a peer-to-peer connection between VE and the host system. It does packet switching based on IP header. This is a default network device for VE (an alternative is veth device).

Venet device is created automatically on VE start. Vzctl scripts set up an appropriate IP address and other settings on venet inside a VE.

Virtual network device usage

Adding IP address to a VE

vzctl set <VEID> --ipadd <IP1>[,<IP2>,...] [--save]
Yellowpin.svg Note: This option is incremental, so IP addresses are added to already existing ones.

Example

vzctl set 101 --ipadd 10.0.0.1 --save

After executing this command IP address 10.0.0.1 will be added to VE 101 and IP configuration will be saved to a VE configuration file.

Removing IP address from a VE

vzctl set <VEID> --ipdel <IP1>[,<IP2>,...] [--save]
vzctl set <VEID> --ipdel all [--save]

Example

vzctl set 101 --ipadd 10.0.0.1

After executing this command IP address 10.0.0.1 will be removed from VE 101, but IP configuration will not be changed in VE config file. And after VE reboot IP address 10.0.0.1 will be assigned to this VE again.

See also