Utilisation du périphérique virtual Ethernet
I have been wondering what was virtual Ethernet pair Linux driver and how to use it. In fact, the principle is quite simple. As soon as you have created a pair of Ethernet like devices, each packet send at one side is received at the other side. Here is a quick tutorial on using it.
Je me suis toujours demandé ce qu’était le périphérique virtual Ethernet pair et comment s’en servir. En fait, le principe est assez simple. Dès que vous avez créé un couple de périphériques de type Ethernet, chaque paquet envoyé d’un côté est reçu de l’autre côté. Voici un rapide tutoriel sur la façon de l’utiliser.
First, you need to load the kernel module :
# modprobe veth
Next, you need to create the interfaces :
# ip link add type veth
You can also name the interfaces as well :
# ip link add name first0 type veth peer name second0
For more information, here is a more complete web site : http://lxc.sourceforge.net/network/configuration.php
D’abord, vous avez besoin de charger le module noyau :
# modprobe veth
Ensuite, vous avez besoin de créer les interfaces :
# ip link add type veth
Vous pouvez également donner un nom à vos interfaces :
# ip link add name first0 type veth peer name second0
Pour plus d’information, voici un site web plus complete : http://lxc.sourceforge.net/network/configuration.php