Vous disposez d'une ou plusieurs
IPs supplémentaires que vous souhaitez attribuer comme interfaces virtuelles sur votre VDS.
L'interface principale de votre VDS est
eth0, les nouvelles interfaces virtuelles seront nommées
eth0:0,
eth0:1,
eth0:2,
eth0:3,
eth0:4,
eth0:5...
Sauvegarde du fichier :
cp /etc/rc.conf /etc/rc.confOLD
Edition du fichier :
nano /etc/rc.conf
Fichier /etc/rc.conf - Avant :
...
eth0="eth0 IP-du-VDS netmask 255.255.255.255"
INTERFACES=(eth0)
...
Fichier /etc/rc.conf - Après :
...
eth0="eth0 IP-du-VDS netmask 255.255.255.255"
eth0_0="eth0:0 IP-Supplémentaire netmask 255.255.255.255"
INTERFACES=(eth0 eth0_0)
...
Activation de l'interface virtuelle :
ifconfig eth0:0 up