From b74ae4d48e75b01e065b7584363f91cd7d8e45b4 Mon Sep 17 00:00:00 2001 From: jdubois Date: Thu, 27 Apr 2023 10:30:38 +0200 Subject: [PATCH] =?UTF-8?q?M=C3=A0J=20config=20VLAN=20et=20quelques=20corr?= =?UTF-8?q?ections?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HowtoOpenBSD/VLAN.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/HowtoOpenBSD/VLAN.md b/HowtoOpenBSD/VLAN.md index a2b5d937..00d9ae63 100644 --- a/HowtoOpenBSD/VLAN.md +++ b/HowtoOpenBSD/VLAN.md @@ -14,15 +14,15 @@ Création de 2 VLANs, 1 et 7, rattachés à l'interface bnx0 ~~~ # ifconfig vlan1 create # ifconfig vlan7 create -# ifconfig vlan1 parent bnx0 vnetid 1 -# ifconfig vlan7 parent bnx0 vnetid 7 +# ifconfig vlan1 vnetid 1 parent bnx0 +# ifconfig vlan7 vnetid 7 parent bnx0 ~~~ On configure ensuite l'interface de la même manière qu'une interface classique : ~~~ -# ifconfig vlan1 inet 10.10.10.1 netmask 255.255.255.0 -# ifconfig vlan7 inet 10.20.30.1 netmask 255.255.255.0 +# ifconfig vlan1 10.10.10.1/24 +# ifconfig vlan7 10.20.30.1/24 ~~~ ## Création définitive @@ -32,10 +32,14 @@ On configure ensuite l'interface de la même manière qu'une interface classique up # cat /etc/hostname.vlan1 -vlandev bnx0 description "VLAN1-Net1" -inet 10.10.10.1 255.255.255.0 10.10.10.255 +vnetid 1 parent bnx0 +up +description "VLAN1-Net1" +inet 10.10.10.1/24 # cat /etc/hostname.vlan7 -vlandev bnx0 description "VLAN1-Net2" -inet 10.20.30.1 255.255.255.0 10.20.30.255 +vnetid 7 parent bnx0 +up +description "VLAN7-Net1" +inet 10.20.30.1/24 ~~~