openbsd:vlan_configuratie
Table of Contents
VLAN configuratie
context
dit document beschrijft hoe je extra VLANs aanmaakt op OpenBSD.
Hier vind je hoe je je de eerste VLAN activeert.
ad-hoc
- maak een vlan interface aan:
ifconfig <vlanNaam> create vb: ifconfig vlan5 create
- geef vlanID en de fysieke interface op:
ifconfig <vlanNaam> parent <interface> vnetid <vlanID> vb: ifconfig vlan5 parent em0 vnetid 5
- ken een ip adres toe aan de VLAN interface:
ifconfig <vlanNaam> <ip adres>/<subnet> vb: ifconfig vlan5 10.11.5.100/24
</code>
Note: zolang de host niet herstart wordt, is dit adres geldig.
permanent
- maak een bestand /etc/hostname.<vlanNaam>
- voeg onderstaande inhoud toe:
inet <ip adres> <netmask> <broadcast> vnetid <vlanid> parent <interface> vb: inet 10.11.5.100 255.255.255.0 10.11.110.255 vnetid 5 parent em0
meer info
openbsd/vlan_configuratie.txt · Last modified: 2024/11/16 18:14 by 127.0.0.1