Questions tagged [vlan]

In computer networking, a single layer-2 network may be partitioned to create multiple distinct broadcast domains, which are mutually isolated so that packets can only pass between them via one or more routers; such a domain is referred to as a virtual local area network, virtual LAN or VLAN.

In computer networking, a single layer-2 network may be partitioned to create multiple distinct broadcast domains, which are mutually isolated so that packets can only pass between them via one or more routers; such a domain is referred to as a virtual local area network, virtual LAN or VLAN.

This is usually achieved on switch or router devices. Simpler devices only support partitioning on a port level (if at all), so sharing VLANs across devices requires running dedicated cabling for each VLAN. More sophisticated devices can mark packets through tagging, so that a single interconnect (trunk) may be used to transport data for various VLANs.

Grouping hosts with a common set of requirements regardless of their physical location by VLAN can greatly simplify network design. A VLAN has the same attributes as a physical local area network (LAN), but it allows for end stations to be grouped together more easily even if they are not on the same network switch. VLAN membership can be configured through software instead of physically relocating devices or connections. Most enterprise-level networks today use the concept of virtual LANs. Without VLANs, a switch considers all interfaces on the switch to be in the same broadcast domain.

To physically replicate the functions of a VLAN would require a separate, parallel collection of network cables and equipment separate from the primary network. However, unlike physically separate networks, VLANs share bandwidth, so VLAN trunks may require aggregated links and/or quality of service prioritization.

Source: http://en.wikipedia.org/wiki/Virtual_LAN

182 questions
0
votes
1 answer

What is the maximum number of subnets that can be assigned to a single VLAN?

When configuring a VLAN in SVI (Switch Virtual Interface) in layer 3 switch, what is the maximum number of subnets that can be assigned to a single VLAN?
Dilki
  • 27
  • 6
0
votes
2 answers

Mininet pingall fails

I am to Mininet and I am trying to set up a VLAN. It has four host h1, h2, h3, and h4 connected to one switch. I want h1 and h3 on VLAN 100 and h2 and h4 on VLAN 200. I am having trouble with writing the code under runExperiment. I updated my code…
axesspwns
  • 113
  • 2
  • 14
0
votes
1 answer

Create intranet site to manage vlans

I work with a retirement home that has many apartments in one building. The goal is for each apartment to have the semblance of a home network(printer, computer chromecast). The problem is we have a bridge in each apartment that takes our wifi…
0
votes
1 answer

default vlan span status

the correct result of vlan spanning status is like this: import SoftLayer username='xxxxxx' key='xxxxxx' client = SoftLayer.create_client_from_env(username=username, api_key=key, timeout=600) account =…
0
votes
1 answer

Why can't VLAN tagging work on a wifi SSID interface?

A little while I ago I issued a check-up/rundown/audit on our firewall environment. One of the things that popped up is the fact that we use a wifi SSID interface where VLAN tagging is happening on. But I don't quite understand why this is useless…
Lennert
  • 3
  • 1
0
votes
0 answers

Scanning Switch for IP and VLAN Details

I've got a Raspberry Pi with Raspbian. I was hoping to be able to use it to pull a few details from a switch using one of the ports. Similar to the Fluke LinkRunner. I'm using Python (which I've never used before) and can only get the port IP. I've…
lee-ds
  • 1
  • 2
0
votes
2 answers

How to forward packets between VLANs on Open vSwitch router?

I'm trying to configure an OVS router. I want to achieve that, by adding flows on the OVS router, the devices connected with switch ports (port 2-5) can access to the internet, if the internet cable is inserted into the WAN port (port 1). My VLAN…
YU Liu
  • 45
  • 3
  • 10
0
votes
1 answer

Writing Netfilter module to accept only vlan packets

I'm trying to build Netfilter. First stage is to accept only vlan packets, and then check if it is the correct vlan ID. the problem i dont get any vlan packets. simple example for code: #include #include #include…
Izik
  • 746
  • 1
  • 9
  • 25
0
votes
1 answer

How to get the VLAN ID in snort alert?

I am trying to parse snort alerts and filter necessary information such as vlan id where a malicious internal machine belong to! However, I only can get the message, source and destination IPs, I need to get the VLAN ID too. Thanks
Adel
  • 11
  • 3
0
votes
1 answer

for a Trunk port, does vlan id and tagging matter at all?

In normal conditions (multiple tagged traffic is expected on a trunk port, we shouldn't plug an untagged traffic into a trunk port), why does trunk need a vlan id of itself, and what's the point of tagging on trunk port?
eliu
  • 2,390
  • 1
  • 17
  • 29
0
votes
1 answer

Q on priority between the frame with VLAN tag and the frame without VLAN tag

Ethernet experts, I have basic question. I'm now studying VLAN tag for Ethernet. One field of the VLAN tag is PCP(Priority Code Point), which is 3 bit field and indicates the frame priority. How about the priority between frame with VLAN tag and…
John
  • 41
  • 6
0
votes
1 answer

How 8021q tagged frame making in NDIS NET_BUFFER LIST of Ethernet field?

I am testing my virtual driver to get HLK certification. In HLK, they have 2c_priority test which will check the sending of 802.1 p tagged packet. Initially i am not supporting 802.1p . In order to support 802.1p , I added…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
1 answer

Insufficient resources for SoftLayer VLAN issue

When I attempted to create an autoscale group with one VM, Softlayer complained about the message below. There are insufficient resources behind router bcr02.wdc01 to fulfill the request for the following guests: sltest-8f0e I know that it most…
Fan Zhang
  • 59
  • 7
0
votes
1 answer

snmp cisco switch oid for multiVlans

I'm using snmp to go through a switch and get some info. i use: for searching Names : Oid: iso.3.6.1.2.1.2.2.1.2 for searching a Single Vlan: Oid: iso.3.6.1.4.1.9.9.68.1.2.2.1.2 What i want is for multiple Vlans what is the oid. Does anyone knows?
pzmq
  • 35
  • 8
0
votes
1 answer

VLAN annotation information

We have some VLANs, and I would like to add some annotation for each VLAN, for example, to add information about which team it belongs to and the purpose. It could be a list of key:value1,value2 pairs or some way to derive that information. After I…