VLAN : Créer une interface VLAN sous OpenBSD

From Deimos.fr / Bloc Notes Informatique
Jump to: navigation, search

1 Introduction

Un réseau local virtuel, communément appelé VLAN (pour Virtual LAN), est un réseau informatique logique indépendant. De nombreux VLAN peuvent coexister sur un même commutateur réseau (switch).

2 Configuration

2.1 Dynamique

Pour créer à la volée une interface vlan :

Command ifconfig
ifconfig vlan110 create

Puis assignez à ce VLAN un tag (vlan) ainsi que l'interface physique sur laquelle elle doit être créer :

Command ifconfig
ifconfig vlan110 vlan 110 vlandev sis1

Et enfin, affectez lui un adressage particulier :

Command ifconfig
ifconfig vlan110 inet 192.168.110.254 netmask 255.255.255.0

2.2 Statique

Maintenant, afin de garder cette configuration active au redémarrage de la machine :

Configuration File /etc/hostname.vlan110
inet 192.168.110.254 255.255.255.0 NONE vlan 110 vlandev sis1