Progetto di reti locali/D1/en

Da WikiAppunti.
Jump to navigation Jump to search
Nota disambigua.svg Il titolo di questa pagina non è corretto per via delle caratteristiche del software MediaWiki. Il titolo corretto è D1. Virtual LANs.
Progetto di reti locali/en}}  [[{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}}/C3{{#ifcategory:Traduzioni|/en||Progetto di reti locali/en}}|C3. IGMP snooping]]Progetto di reti locali/en}}#C. Additional LAN standards  [[{{#ifcategory:Traduzioni|Progetto di reti locali/en|Progetto di reti locali/D1|Progetto di reti locali/en}}#C. Additional LAN standards|{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}} (C. Additional LAN standards)]][[{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}}/D4{{#ifcategory:Traduzioni|/en||Progetto di reti locali/en}}|D4. Redundancy and load balancing at layer 3 in LANs]]  Progetto di reti locali/en}}

6-7-8-9 Virtual LANs (VLAN) allow to share a single physical infrastructure (same devices, same cabling) among multiple logical LANs: just traffic of a certain LAN flows through some ports, just traffic of another LAN flows through other ports, and so on → each bridge has one filtering database for each VLAN.[1]

A data-link network made up of multiple VLANs is more advantageous with respect to:

  • 3 a network-layer network, thanks to mobility support: hosts can keep being reachable at the same address (their MAC addresses) when moving;
  • 4 a single physical LAN, thanks to:
    • greater scalability: broadcast traffic is confined within smaller broadcast domains;
    • greater security: a user belonging to a VLAN can not carry out a MAC flooding attack on other VLANs;
    • better policing: the network administrator can configure different policies based on VLAN;
  • 5 multiple LANs altogether separate from the physical point of view, thanks to a greater saving of resources and costs: bridges are not duplicate for each LAN but are shared among all VLANs, as well as cables between bridges can transport traffic of any VLAN.

An example of VLAN application is a campus network: a VLAN is reserved for students, another VLAN is reserved for teachers with less restrictive policies, and so on.

Interconnecting VLANs[modifica | modifica sorgente]

10 Data can not cross at the data-link layer the VLAN boundaries: a station in a VLAN can not send a frame to another station in a different VLAN, since VLANs have different broadcast domains. A possible solution may consist in connecting a port of a VLAN to a port of another VLAN, but in this way a single broadcast domain would form → the two VLANs would belong actually to the same LAN.

11-12 Therefore a station in a VLAN can send data to another station in a different VLAN just at the network layer → a router is needed to connect a port of a VLAN to a port of another VLAN: a station in a VLAN sends an IP[2] packet towards the router, then the latter re-generates the data-link-layer header of the packet (in particular it changes MAC addresses) and sends the packet to the station in the other VLAN. This solution however occupies two interfaces in a router and two ports in the same bridge, and requires two wires connecting these two network devices themselves → a one-arm router allows to interconnect two VLANs through a single wire, occupying a single bridge port and a single router interface: traffic of both the VLANs can flow through the single wire and through the bridge port.

13 Data-link-layer broadcast traffic still can not cross the VLAN boundaries, because the router do not propagate it to its other interfaces by splitting the broadcast domain → a station in a VLAN which wants to contact a station in another VLAN can not discover its MAC address by ARP protocol, but has to send a packet to its IP address, which has a different network prefix because the two VLANs must have different addressing spaces.

27 Assigning hosts to VLANs[modifica | modifica sorgente]

22 Every bridge makes available some ports, called access ports, which hosts can connect to. In access links untagged frames, that is without the VLAN tag, flow; access ports tag frames based on their membership VLANs.

When a host connects to an access port, its membership VLAN can be recognized in four ways:

14-28-29 Port-based assignment[modifica | modifica sorgente]

Every access port is associated to a single VLAN → a host can access a VLAN by connecting to the related bridge port.

Advantages
  • configuration: VLANs should not be configured on hosts → maximum compatibility with devices.
Disadvantages
  • security: the user can connect to any VLAN → different VLAN-based policies can not be set;
  • network-layer mobility: although the user can connect to any VLAN, he still can not keep the same IP address across VLANs.

30 Transparent assignment[modifica | modifica sorgente]

Every host is associated to a certain VLAN based on MAC address.

Disadvantages
  • configuration: a new user should contact the network administrator to record the MAC address of his device → finding the MAC address of his own device can not be simple for a user;
  • database cost: a server, along with management staff, storing a database containing boundings between MAC addresses and VLANs, is needed;
  • database maintenance: entries corresponding to MAC address no longer in use should be cleared, but often the user when dismissing its device forgets contacting back the network administrator to ask him to delete its MAC address → over time the database keeps growing;
  • security: the user can configure a fake MAC address and access another VLAN pretending to be another user.

31 Per-user assignment[modifica | modifica sorgente]

Every user owns an account, and every user account is associated to a certain VLAN. When he connects to a bridge port, the user authenticates himself by inserting his own login credentials by the 802.1x standard protocol, and the bridge is able to contact a RADIUS server to check credentials and assign the proper VLAN to the user if successful.

Disadvantages
  • compatibility: authentication is performed at the data-link layer directly by the network card → every device should have a network card compatible with the 802.1x standard;
  • configuration: the user has to set several configuration parameters (e.g. the authentication type) on his own device before being able to access the network.

32-33 Cooperative assignment[modifica | modifica sorgente]

Every user is associated by himself to the VLAN he wants: it is the operating system on the host which tags outgoing frames, so they will arrive through a trunk link to a bridge port already tagged.

Disadvantages
  • configuration: the user has to manually configure his own device before being able to access the network;
  • security: the user can connect to any VLAN → different VLAN-based policies can not be set.

15 Frame tagging[modifica | modifica sorgente]

16-17-19-20-21 Trunk links are links which can transport traffic of different VLANs:

In trunk links tagged frames, that is having VLAN tag standardized as IEEE 802.1Q (1998), flow:

VLAN tag format (4 bytes).
16 19 20 32
TPID (0x8100) PCP CFI VLAN ID

where fields are:

  • Tag Protocol Identifier (TPID) field (2 bytes): it identifies a tagged frame (value 0x8100);
  • Priority Code Point (PCP) field (3 bits): it specifies the user priority for quality of service: Human-edit-redo.svg Progetto di reti locali/C1/en#IEEE 802.1p;
  • Canonical Format Indicator (CFI) flag (1 bit): it specifies whether the MAC address is in canonical format (value 0, e.g. Ethernet) or not (value 1, e.g. token ring);
  • VLAN Identifier (VID) field (12 bits): it identifies the VLAN of the frame:
    • value 0: the frame does not belong to any VLAN → used in case the user just wants to set the priority for his traffic;
    • value 1: the frame belongs to the default VLAN;
    • values from 2 to 4094: the frame belongs to the VLAN identified by this value;
    • value 4095: reserved.

IEEE 802.1Q does not actually encapsulate the original frame; instead, it adds the tag between the source MAC address and the EtherType/Length fields of the original frame, leaving the minimum frame size unchanged at 64 bytes and extending the maximum frame size from 1518 bytes to 1522 bytes → on trunk links there can not be hubs because they do not support frames more than 1518 bytes long:

Insertion of VLAN tag in an Ethernet frame.

18-24 In the backbone[modifica | modifica sorgente]

Example of VLAN transport of a frame through a trunk link in the backbone.

Transporting a frame from a station to another through trunk links is performed in the following way:[3]

  1. the source host sends toward the access port an untagged frame;
  2. when the frame arrives at the access port, the bridge tags the frame by the tag corresponding to the VLAN associated to the port;
  3. the bridge sends the tagged frame to a trunk link;
  4. every bridge receiving the frame looks at the filtering database related to the VLAN specified by the tag:
    • if the destination is 'remote', the bridge propagates the frame to a trunk link leaving its VLAN tag unchanged;
    • if the destination is 'local', that is it can be reached through one of the access ports associated to the frame VLAN, the bridge removes the VLAN tag from the frame and sends the untagged frame to the access link toward the destination host.

Virtual network interfaces[modifica | modifica sorgente]

Example of VLAN transport of a frame through virtual network interfaces in a one-arm router and in a server.

34 Typically a server needs to be contacted at the same time by multiple hosts located in different VLANs → since just one VLAN can be associated to each network interface, the server would require to have a network interface for each VLAN, each one connected to the bridge by its own physical link. A similar problem applies to a one-arm router, which needs to receive and send traffic from/to multiple different VLANs to allow their interconnection.

35-36 Virtual network interfaces allow to have at the same time multiple logical network interfaces virtualized on the same physical network card, whose single physical interface is connected to the bridge through just one trunk physical link: the operating system sees multiple network interfaces installed on the system, and the network card driver based on VLAN tag exposes to the operating system every frame as if it had arrived from one of the virtual network interfaces.

Virtual network interfaces have different IP addresses, because every VLAN has its own addressing space, but they have the same MAC address, equal to the one of the physical network card; however this is not a problem as a MAC address just has to be unique within the broadcast domain (so within the VLAN).

58-59-60-61-62 Tag stacking[modifica | modifica sorgente]

Tag stacking (also known as 'provider bridging' or 'Stacked VLANs' or 'QinQ'), standardized as IEEE 802.1ad (2005), allows to insert multiple VLAN tags into the stack of a tagged frame, from the outer tag to the inner one:

Insertion of two VLAN tags in an Ethernet frame.

Tag stacking is useful to transport traffic from multiple customers using VLANs over a shared provider network: two different customers may decide to use the same VLAN Identifier within their company networks → bridges at the edges of the provider network add to incoming frames and remove from outgoing frames external tags which distinguish VLANs having the same VLAN Identifier but being of different customers.

61 Advantages
  • flexibility: tag stacking is more flexible and less disruptive with respect to defining another tagging format with a larger VLAN Identifier;
  • simplicity: tag stacking is simpler with respect to Ethernet tunneling:
    • Ethernet tunneling: edge bridges have to encapsulate the frame into a new Ethernet header → complex operation;
    • tag stacking: edge bridges just perform quicker push and pop operations in the tag stack;
  • VLAN scalability: tag stacking is more scalable with respect to VLAN translation:
    • VLAN translation: edge bridges change the VLAN Identifier in every frame so that each VLAN Identifier is unique within the provider network → scalability issue: just a maximum of 4094 VLANs are available;
    • tag stacking: edge bridges use an outer VLAN Identifier for each customer, regardless of the number of inner VLAN Identifiers each customer is using → the provider network can serve up to 4094 customers, each one with 4094 VLANs.
62 Disadvantages
  • MAC address scalability: tag stacking is less scalable with respect to Ethernet tunneling:
    • tag stacking: the filtering database in every bridge within the provider network should learn all the MAC addresses of the network interfaces located in all customers' VLANs → scalability problem: filtering databases of bridges are stored in limited-size TCAM memories;
    • Ethernet tunneling: the filtering database in every bridge within the provider network sees just MAC addresses of bridges at the edges of the network;
  • security: a broadcast storm on a customer's VLAN may impair other customers' traffic: Human-edit-redo.svg #Optimization of broadcast traffic.

PVST[modifica | modifica sorgente]

46 Standard STP and RSTP do not support VLANs: the spanning tree is unique across the network and the spanning tree algorithm works regardless of VLANs. Several vendors offer proprietary features for VLAN support: for example Cisco offers Per-VLAN Spanning Tree (PVST) and Per-VLAN Spanning Tree Plus (PVST+), based on STP, and Rapid Per-VLAN Spanning Tree Plus (Rapid-PVST+), based on RSTP.

47-48 PVST allows multiple spanning trees in the network, one for each VLAN; every tree is determined through per-VLAN configuration of spanning tree protocol parameters. In particular, priority of each bridge should be customized based on VLAN in order to differentiate the root bridge among different VLANs, otherwise the same tree would result for all VLANs, by identifying the priority value refers to by the STP Instance field (12 bits), introduced into Bridge Identifier by IEEE 802.1t (2001):

Bridge Identifier format settled by IEEE 802.1t.
4 16 64
Bridge Priority STP Instance Bridge MAC Address
Disadvantages
  • traffic optimization: optimization performed by PVST on traffic load is not so significant, even considering the high link bandwidth in modern networks:
    • 49 PVST optimizes the traffic load across the network: if spanning trees are well balanced, all links are used → there are not active active but altogether unused anymore;
    • PVST does not optimize the traffic load inside a VLAN: traffic in a VLAN is still bounded to a specific spanning tree → the shortest path toward the destination can not be chosen as it happens in IP networks;
  • CPU load: running multiple spanning tree protocol instances at the same time increases the load on bridge CPUs;
  • interoperability: coexistence within the same network of bridges having PVST support and bridges without it may lead to broadcast storms;
  • complexity: the network administrator has to manage multiple spanning trees in the same network → troubleshooting is more complicated: the traffic path is more difficult to understand, since frames cross different links depending on the VLAN they belong to.

Issues[modifica | modifica sorgente]

Optimization of broadcast traffic[modifica | modifica sorgente]

39 Broadcast traffic is sent on all trunk links, besides access links associated to the VLAN which the broadcast frame belongs to:

  • 50 a broadcast storm on a link, caused by traffic of one VLAN, may affect other VLANs by saturating trunk links → although frames can not go from a VLAN to another at the data-link layer, network isolation is not complete even with VLANs due to the fact that links are shared;
  • 38 a broadcast frame belonging to a certain VLAN can reach a bridge at the end of the network on which there are no access ports belonging to that VLAN → the filtering database in that bridge will insert through learning mechanisms a useless entry containing the source MAC address.

37-40 In order to reduce broadcast traffic on trunk links and avoid useless entries in filtering databases, every bridge needs to know of which VLANs to propagate broadcast traffic on each trunk port:

  • GVRP protocol: it is a standard, very complex protocol which allows bridges to exchange information about VLANs in the network topology;
  • proprietary mechanisms: they are used instead of GVRP protocol because they are simpler, although they introduce interoperability problems;
  • 41 manual configuration: the network administrator explicitly configures on every bridge the VLANs which to propagate broadcast traffic of → VLANs are statically configured and can not change in case of re-convergence of the spanning tree following a link fault.

Interoperability[modifica | modifica sorgente]

51 VLANs are not a plug-and-play technology (as STP was), and home users are not skilled enough to configure them → low-end bridges typically are without VLAN support, and may discard tagged frames because too big.

25 Another reason of incompatibility among network devices from different vendors is tagging on trunk ports: some bridges tag the traffic belonging to all VLANs, other ones leave the traffic belonging to VLAN 1 untagged.

References[modifica | modifica sorgente]

  1. In the real implementation, filtering database is unique and usually made with a single TCAM across the network device.
  2. For the sake of simplicity here IP protocol is considered as the network-layer protocol.
  3. It is assumed to adopt the port-based assignment.
Nota disambigua.svg Il titolo di questa pagina non è corretto per via delle caratteristiche del software MediaWiki. Il titolo corretto è D1. Virtual LANs.
Progetto di reti locali/en}}  [[{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}}/C3{{#ifcategory:Traduzioni|/en||Progetto di reti locali/en}}|C3. IGMP snooping]]Progetto di reti locali/en}}#C. Additional LAN standards  [[{{#ifcategory:Traduzioni|Progetto di reti locali/en|Progetto di reti locali/D1|Progetto di reti locali/en}}#C. Additional LAN standards|{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}} (C. Additional LAN standards)]][[{{#ifcategory:Traduzioni|Progetto di reti locali|Progetto di reti locali/D1|Progetto di reti locali/en}}/D4{{#ifcategory:Traduzioni|/en||Progetto di reti locali/en}}|D4. Redundancy and load balancing at layer 3 in LANs]]  Progetto di reti locali/en}}