Etape 1 : Création du switch virtuel
Création du vSwitch0 sur l’esx :
[sh]esxcfg-vswitch -a vSwitch0[/sh]
Liaison du switch virtual « vSwitch0 » à l’interface réseau physique « vmnic0 »
[sh]esxcfg-vswitch -L vmnic0 vSwitch0[/sh]
On utilise cette commande pour lister les vSwitch existant, vous devriez voir votre vSwitch0 fraîchement créer
[sh]esxcfg-vswitch -l[/sh]
Etape 2 : Création du Service Console
Création du portgroup Service Console sur le switch virtuel « vSwitch0 »
[sh]esxcfg-vswitch -A « Service Console » vSwitch0[/sh]
Configuration réseau du portgroup et création de l’interface virtuel « vswif0 »:
[sh]esxcfg-vswif –add –portgroup « Service Console » –ip=192.168.0.1 –netmask=255.255.255.0 vswif0[/sh]
Configuration du vlan sur le portgroup :
[sh]esxcfg-vswitch -p « Service Console » -v 666 vSwitch0[/sh]
Etape 3 : Configuration de la gateway
Modifier la gateway dans la fichier : /etc/sysconfig/network
[sh]NETWORKING=yes
GATEWAYDEV=vswif0
HOSTNAME=host.domain.com
GATEWAY=nnn.nnn.nnn.nnn[sh]
Redémarrage le service network pour que la nouvelle gateway soit prise en compte :
[sh]service network restart[/sh]
et on vérifie la configuration :
[sh]esxcfg-vswif –l[/sh]
Bonus : Commandes utiles
Lister les interfaces réseaux:
[sh]esxcfg-nics -l[/sh]
Dissocier un vSwitch de son interface réseau :
[sh]esxcfg-vswitch -U vmnic0 vSwitch0[/sh]
Associer un vSwitch à son interface réseau :
[sh]esxcfg-vswitch -L vmnic0 vSwitch0[/sh]
Lister et supprimer un vswif:
[sh]esxcfg-vswif -l[/sh]
[sh]esxcfg-vswif –del vswif0[/sh]