LANs and VLANs A Simplified Tutorial

Size: px
Start display at page:

Download "LANs and VLANs A Simplified Tutorial"

Transcription

1 Application Note LANs and VLANs A Simplified Tutorial Version 3.0 May 2002 COMPAS ID Avaya Labs 1

2 Companion document IP Addressing: A Simplified Tutorial COMPAS ID

3 Introduction As the name implies, the purpose of this presentation is to provide a simplified tutorial on local area networks (LANs) and virtual local area networks (VLANs). The instructions and terminology used in this presentation attempt to comply with industry practices and written standards. They represent the generally accepted implementations of the written standards. It is important to understand that written standards are sometimes ambiguous, and are thus implemented differently among various vendors. This tutorial seeks to balance between the two and does not rely solely on written standards or specific implementations. All IP addresses and numbering schemes in this tutorial are hypothetical, and used for illustration purposes. 3

4 First, the basics 4

5 OSI and TCP/IP OSI Reference Model 7 Application 6 Presentation 5 Session TCP/IP Application Terms used in this tutorial 4 Transport Host to Host (TCP/UDP) 3 Network Internet (IP) router, subnet, IP address 2 Data Link Network Interface switch, VLAN, MAC address, Ethernet 1 Physical hub This table is presented for reference purposes. The first column shows the 7-layer OSI Reference Model, which is a model used to design protocols that make networking possible. The second column shows the TCP/IP protocol stack in reference to the OSI model. TCP/IP is the prevalent protocol stack for data networking. The third column shows the terms that will be used in this tutorial, in reference to both OSI and TCP/IP. 5

6 Hub (a collision domain) A hub is a L1 (physical layer) multi-port repeater. It receives a signal on one port, regenerates it, and transmits it out all ports. All devices connected to a hub receive any transmission on that hub, regardless of the intended recipient. Note: Simple hubs have a single bus that is capable of operating at either 10Mbps or 100Mbps, but not both. These are pure L1 devices, no smarter than the original coax Ethernet bus they replaced. The very common 10/100 hubs actually have two buses, a 10M bus and a 100M bus, which are bridged. This bridging function is a L2 function, so technically speaking 10/100 hubs are not pure L1 devices. Two or more devices on a hub cannot transmit at the same time. When two or more devices simultaneously transmit, there is a collision. The devices must back off and re-transmit at dispersed intervals, so that only one device is transmitting at any given time. Because of these characteristics, a hub (or a group of hubs connected together) is known as a collision domain. Hubs operate only at half duplex; attached devices cannot transmit and receive at the same time. Generally speaking, only four 10M hubs or two 100M hubs can be connected together. 6

7 Switch (a broadcast domain) A switch is more than just a repeater. It is a L2 (data link layer) bridge, which means that it is aware of L2 MAC addresses. MAC addresses and Ethernet frames will be discussed in more detail later. A switch keeps track of which devices are connected to which ports by maintaining a table of the MAC-address-to-switch-port mapping. We ll simply call this the MAC table. It is populated by recording the source MAC addresses of incoming Ethernet frames on each port. MAC table entries are designed to time out, typically after a few minutes, if no other frame from the same source is not received on that port. Transmissions on a switch are sent only to the intended recipients, determined by the destination MAC address. The exception to this is if the destination MAC address is not already in the MAC table, in which case the Ethernet frame is transmitted out all ports. Broadcasts are sent to all recipients, as they are intended to be. For this reason, a switch (or a group of switches connected together) is known as a broadcast domain. Switches can operate at full duplex; multiple attached devices can transmit and receive at the same time. 7

8 An overview of LANs 8

9 A single hub or switch is a physical LAN segment. Ethernet segment is more precise, but we ll use the general term. An IP endpoint (PC, server, IP phone, etc.) is a host and has an IP address. In this diagram the hub or switch itself is also a host, with an IP address. A LAN segment typically contains one IP network or sub-network. There is a difference between the two, but the term subnet is generally used. We will not address in detail the case of two or more subnets residing on one LAN segment, which is a valid but uncommon case. This subnet is with subnet mask , which implies Host addresses are through Broadcast address is , which is the IP address used to transmit to all hosts on the subnet. All hosts are aware of their individual subnet and mask, and what that implies. 9

10 Two or more hubs or switches connected together still constitute one physical LAN segment. The only differences between this diagram and the previous are Having two hubs or switches increases the port density. The up-link between the two devices may be a bottleneck. Note: It is not required that a hub or switch have an IP address. However, the device is very likely to have an IP address if it is remotely manageable (ie, configure, troubleshoot, view statistics, upgrade firmware, etc). Otherwise, the device must be managed via a console port or not at all. 1 0

11 Now we ve added a second LAN segment, which contains a different IP subnet. All hosts on the second subnet have addresses pertaining to that subnet. Hosts on one subnet cannot communicate with hosts on the other subnet. The obvious reason is that the two LAN segments are physically separated. However 1 1

12 Break for an explanation of ARP 1 2

13 IP addresses and MAC addresses An IP address is a 32-bit Network Layer (L3) address on the OSI model. It is configured on each IP host. A MAC address is a 48-bit Data Link Layer (L2) address on the OSI model. It is typically burned in to the network interface card or equivalent, and is a combination of the manufacturer ID and the board ID (serial number). An IP packet, with source and destination IP addresses, is encapsulated in an Ethernet frame, with source and destination MAC addresses. The Ethernet frame is then transmitted on the LAN segment. On a LAN segment, hosts communicate with one another using MAC addresses, even though applications use IP addresses. Therefore, each IP host must resolve the destination IP address to the destination MAC address before sending an IP packet. This is done using the Address Resolution Protocol (ARP). 1 3

14 How ARP works Host X needs to send an IP packet to host Y but only knows Y s IP address. X sends an ARP Request message containing Y s IP address, which is broadcast to all the hosts on the LAN segment. Remember that hosts communicate with each other using MAC addresses. This broadcast is a MAC broadcast, which means that the destination MAC address is a L2 broadcast address (all 48 address bits are ones). The source MAC address of this ARP Request message is X s MAC address. All hosts on the LAN segment receive the ARP Request message, but only Y recognizes the request as pertaining to its IP address. The ARP Request message contains X s MAC and IP addresses. All hosts make an entry with this mapping in their respective ARP caches. Y sends a unicast ARP Reply message containing its MAC and IP addresses directly to X. X now knows Y s MAC and IP addresses, and makes a corresponding entry in its ARP cache. Entries in ARP caches are designed to time out, typically after a few minutes. When this happens, the ARP process is repeated. 1 4

15 Back to LANs 1 5

16 Take the previous diagram and connect the two segments together to make one physical LAN segment (not recommended). Hosts on one subnet still could not communicate with hosts on the other subnet because Hosts are aware of their subnet and will only ARP for addresses in their subnet. For example, will not ARP for To get to hosts on another subnet, an IP gateway is required. But broadcasts (including ARPs) would be seen by all hosts because The broadcast is at the MAC layer (L2) and is seen by all hosts on the same physical LAN segment. 1 6

17 But wait. We said that each IP subnet had a broadcast IP address, so why doesn t that limit the broadcast to just one subnet? Yes, the broadcast address for subnet with mask is And the broadcast address for subnet with mask is But hosts can t communicate using IP addresses, so these IP broadcasts are converted to MAC broadcasts. The sequence is as follows Host sends a broadcast packet to The IP packet with destination broadcast IP address is encapsulated in an Ethernet frame with destination broadcast MAC address FFFFFFFFFFFF (hex for 48 binary ones). Every host on the LAN segment sees the MAC broadcast. Only hosts on subnet dig deeper into the IP packet. Hosts on subnet must examine the MAC broadcast, but ignore the IP broadcast because it pertains to a different subnet. 1 7

18 1 8 Now it should be more clear why a LAN segment typically has only one associated IP subnet. Why broadcast messages to hosts that don t need to see them? In most cases it is preferable to maintain a 1-to-1 mapping of a L2 broadcast domain (physical LAN segment) to a L3 broadcast domain (logical IP subnet). Note: Having two different routers with different subnets on one LAN segment can also cause serious problems with routing in rare configurations, which will not be discussed in detail here.

19 Enter the router - the IP gateway. This is a L3 (network layer) device. Now when host wants to send an IP packet to host , host 1.11 forwards the packet to the gateway (1.254 in this diagram). This router forwards the packet directly to the 2.11 host because the subnet is directly connected. Otherwise, the packet would be forwarded to the next hop router en route to that subnet. The router, which is a L3 boundary, is a broadcast barrier. Broadcasts on one subnet are not transmitted across the router to the other subnet, unless specifically configured to do so. 1 9

20 What if we were to connect the two LAN segments together? (again, not recommended, and might produce an error condition on the router) Hosts on one subnet would still require the router to communicate with hosts on the other subnet. But now the broadcasts would leak from one subnet to the other, because we ve created one LAN segment. We have one L2 broadcast domain (LAN segment) with two L3 broadcast domains (IP subnet) :-( 2 0

21 Transition to VLANs 2 1

22 A smart L2 switch is required to implement VLANs, which are specified in the IEEE 802.1Q standard. Hubs no longer apply, because they are simply dumb repeaters that operate at L1. Simple switches with no 802.1Q intelligence also do not apply. A filtering database resident on the switch keeps track of which ports belong on which VLAN. Every port belongs to at least one VLAN, which is the port/native VLAN. The 802.1Q standard and most Cajun switches call this the port VLAN, with an associated port VLAN ID (PVID). Cisco switches call this the native VLAN. Although VLAN1 is the default port/native VLAN, this can be changed on a per port basis by configuration. What was once a physical LAN segment is now a logical VLAN. 2 2

23 If we want to add a second VLAN, we don t need a second switch. We simply create another VLAN on the same switch and assign the desired ports to that VLAN (we change the port/native VLAN on the desired ports). The switch s filtering database maintains the port-to-vlan mapping. This diagram is analogous to having two separate switches or LAN segments. By default a host pertains to the port/native VLAN of the connected port, and must be configured with the proper IP address for that VLAN. In this diagram hosts on VLAN1 are on one IP subnet, and hosts on VLAN2 are on a different IP subnet, which is the correct implementation. In this diagram the switch itself is configured to be a host on VLAN1. 2 3

24 Continuing with the same diagram... What was before two separate LAN segments is now two VLANs, and all the same conditions apply. Hosts on VLAN1 cannot communicate with hosts on VLAN2 without an IP gateway. This would be true even if we physically connected the two VLANs together with a cross-over cable. Broadcasts on VLAN1 do not leak onto VLAN2, but they would if we were to connect the two VLANs together with a cross-over cable. What if we did connect the two VLANs together with a cross-over cable? In effect, this results in one VLAN (one L2 broadcast domain) with two subnets (two L3 broadcast domains), which is not desired. No different than connecting two physical LAN segments together. 2 4

25 So how do we get the two subnets to talk to each other? Again, an IP gateway is required. And as before with two LAN segments, an external router could be used to provide the gateway function. However, this is not how it is typically accomplished. This diagram is here mainly so that the reader can make a connection between an external router servicing two LAN segments, and one servicing two VLANs. There is no difference. 2 5

26 Today it is more common to see switches with both L2 and L3 functions (Avaya Cajun, Cisco Catalyst, and many others). The switching function (L2) continues to maintain a filtering database to keep track of VLANs and ports, just as before. The routing function (L3) resident on the switch fills the gateway role previously filled by an external router, and performs many of the other functions previously performed by an external router. Instead of physical router interfaces, we now have virtual router interfaces. Instead of physical connections between the router and the switch(es), we now have logical connections. 2 6

27 Continuing with the same diagram... One major difference is the mapping between L2 and L3 domains. Remember before that it was possible for one LAN segment to have two connections from an external router to service two IP subnets, which was not recommended. In this case, we could not create another virtual router interface (L3) for VLAN1 or VLAN2 (L2), nor would we want to. Each L2 entity (VLAN) can have only one L3 (virtual router) interface with only one IP subnet. This maintains the 1-to-1 mapping between L2 and L3 broadcast domains. The only way to add a second IP subnet to a VLAN (not recommended) would be to use an external router. 2 7

28 Let s recap before moving on... A hub is a L1 device, a switch a L2 device, and a router a L3 device. A hub is a collision domain (all devices see all transmissions), so by default it has the characteristics of a broadcast domain (all devices see broadcast transmissions). A physical LAN segment (with at least one switch, let s say, to avoid argument) is a L2 broadcast domain, and so is a VLAN. Hence a VLAN is the logical equivalent of a physical LAN segment with the caveat that a VLAN is always switched, whereas a LAN segment may contains switches and hubs. An IP subnet is a L3 broadcast domain. Under most circumstances, we prefer to maintain a 1-to-1 mapping of a L2 broadcast domain to a L3 broadcast domain. Therefore A physical LAN segment contains one IP subnet. A VLAN contains one IP subnet. Each upper layer device/function is a boundary for the lower layer device/function. A router is a boundary between broadcast domains. A switch is a boundary between collision domains. 2 8

29 Move forward to 802.1Q trunking 2 9

30 3 0 How do we interconnect two or more of these smart L2 switches together? Physically connecting the VLANs together is one way, but it is not the recommended way. This slide and the following are primarily for illustration purposes! Do not try this in your enterprise :-) This creates two VLANs that traverse multiple switches. Note: This scenario requires multiple instances of the Spanning Tree Protocol - one instance per VLAN on each switch. Otherwise, a single Spanning Tree process running on each switch would cause them to block one of these links to prevent a Spanning Tree loop. Most advanced switches implement per-vlan Spanning Tree in a proprietary implementation, as it is not yet standard.

31 But we don t want to have to do this This creates five VLANs that traverse multiple switches. BUT... A simple wiring error through the closets could end up in this. This is a technically valid configuration. VLANs are local to the Ethernet switch and do not have to match across switches. But probably no one would intentionally do something like this. 3 1

32 3 2 So how do we connect two or more smart L2 switches together and maintain VLAN numbering consistency? We trunk the VLANs. On each switch we configure a trunk port (can be any Ethernet port) that is logically connected to multiple VLANs. Then we connect the trunk ports together. The numbering is kept consistent through the use of 802.1Q tags.

33 Terminology check access port / link Q terms to define a port with one or more untagged VLANs, and a link connecting two such ports. trunk port / link Q term to define a port with multiple VLANs that are all tagged, and a link connecting two such ports. hybrid port / link Q term to define a port with both untagged and tagged VLANs, and a link connecting two such ports. VID Q acronym for VLAN ID PVID Q acronym for port VLAN ID tagged frame - An Ethernet or frame with the 802.1Q tag. clear frame - An Ethernet or frame with no tag. VLAN trunking - a generic networking vernacular term to describe the process of forwarding multiple VLANs across a single link, whether via 802.1Q or proprietary protocols like Cisco s ISL. 3 3

34 802.1Q tag 3 4

35 802.1Q tag continued The preceding diagram shows the IEEE 802.1Q tag and its insertion point within the Ethernet and frames. (The term Ethernet is commonly used to describe both types of frames, although the two are different.) The 802.1Q tag contains 3 priority bits and 12 VLAN ID bits. The priority bits are the reason why 802.1Q is often referred to as 802.1p/Q. The VID bits make trunking possible. Ethernet switches and endpoints must be capable of interpreting the 802.1Q tag to make use of the tag. If an Ethernet switch or an endpoint cannot interpret the 802.1Q tag, the presence of the tag may cause problems. 3 5

36 3 6 How VLAN trunking works w/ 802.1Q Continuing with the previous trunking diagram... When one switch sends an Ethernet frame to the other, the transmitting switch inserts the 802.1Q tag with the appropriate VID (with the exception of the PVID/native VID in some cases). The receiving switch reads the VID and forwards the Ethernet frame to the appropriate VLAN.

37 VLAN trunking is not the same as VLAN configuration. The VLANs must be configured independently on each switch, using any of the following methods. manually via the CLI or web interface. with a VLAN management tool provided by the vendor. automatically with a standard protocol like GVRP (GARP VLAN Registration Protocol), which works in conjunction with 802.1Q. automatically with a proprietary protocol like Cisco s VTP (Virtual Trunking Protocol), which works in conjunction with Cisco s proprietary ISL (Inter- Switch Link) trunking protocol Q trunking simply matches VIDs across switches. It does not help if the VIDs cannot be matched 3 7

38 Default tagging behavior on most Catalyst switches Every port, including hybrid/trunk ports, has a native VLAN. By default, enabling 802.1Q trunking on most Catalyst switches results in a hybrid configuration. The transmitting switch does not tag frames originating from the native VLAN of the egress port, but tags all other VLANs. The receiving switch forwards all clear frames to the native VLAN of the ingress port, and all tagged frames to the appropriate VLAN. Because the native VLAN is not tagged, the native VIDs do not have to match. Both of the following scenarios are technically valid, but probably no one would intentionally implement the second scenario. 3 8

39 Default tagging behavior on Avaya s Cajun switches Every port, including trunk ports, has a port VLAN. Other VLANs are added to a port via the bind-to-xxxx commands. In terms of egress There is no hybrid scenario on Cajun switches. An access port with just the port VLAN sends the port-vlan frames clear. An access port bound to multiple VLANs sends all frames clear, including port-vlan frames. A trunk port sends all frames tagged, including port-vlan frames. Note: Whether in a single-vlan or multi-vlan configuration, 802.1Q trunking must not be enabled on Cajun switches when connecting to an Avaya TM IP phone with an attached PC, because the PC cannot interpret the tag. In terms of ingress An access port with just the port VLAN accepts clear frames and prioritytagged frames (frames with VID zero - discussed in the next slide). An access port bound to multiple VLANs accepts clear frames or prioritytagged frames on the port VLAN, and VLAN-tagged frames on the other VLANs. A trunk port behaves exactly like an access port in terms of ingress traffic. 3 9

40 VLAN ID zero (0) VID 0 is the null VID. It is used when the 802.1Q tag contains only priority information. The VID field cannot be removed from the tag, so zero is used to indicate that there is no VID. Because there is no VID, it is treated like a clear frame and associated with the port/native VLAN of the ingress port Q trunking may or may not be enabled when using the null VID, provided the receiving switch is capable of interpreting the tag. The null VID should be used to associate priority-tagged frames to the port/native VLAN of the ingress port. The point of the null VID is that the frame belongs on the port/native VLAN, regardless of what it may be. It should not be necessary to tag a frame with the PVID/native VID; the switch should associate VID zero with the port/native VLAN. This becomes critical for PCs with NICs that are capable of tagging the priority value but not the VID, and thus leave the field as zero. Although zero should be used, tagging with the PVID/native VID instead of zero typically does not hinder operation. Some Cisco switches actually require this because they don t understand VID zero. Note: There is no null priority. Priority zero is a priority with value zero. 4 0

41 4 1 Sample of how Cisco handles VLAN ID zero (results from lab testing) Catalyst 6509 w/ CatOS 6.1(2): Accepted VID zero for the native VLAN when 802.1Q trunking was enabled on the port. In this case, all but the native VLAN should be cleared off the trunk. Catalyst 4000 w/ CatOS 6.3(3): Would not accept VID zero for the native VLAN. Opened a case with Cisco TAC, and TAC engineer said it was a hardware problem in the Bug ID is CSCdr Workaround is to enable 802.1Q trunking and tag with native VID instead of zero. Again, clear all but the native VLAN off the trunk. Catalyst 3500XL w/ IOS 12.0(5)WC2: Accepted VID zero for the native VLAN when 802.1Q trunking was disabled on the port. Conclusion: Note the hardware platform and OS version and consult Cisco s documentation, or call TAC.

42 4 2 How Cajun handles VLAN ID zero All Cajun switches accept VID 0 as pertaining to the port VLAN, regardless of how the Cajun is configured.

43 To tag or not to tag To tag Tag with the proper VID and desired priority when transmitting to a hybrid port and the frame belongs on a VLAN other than the port/native VLAN. Tag with VID 0 and the desired priority when transmitting to a hybrid port and the frame belongs on the port/native VLAN. Tag with VID 0 and the desired priority when transmitting to an access port. The switch should accept this and forward the frame to the port/native VLAN. This would only be done if the priority value is significant (non-zero). Otherwise, there should be no tag at all. On hybrid ports, a Catalyst switch tags the non-native-vlan egress traffic with the proper VID and priority. 4 3

44 To tag or not to tag Not to tag Do not tag when transmitting to a hybrid port and the frame belongs on the port/native VLAN and has no special priority requirement. Do not tag when transmitting to an access port and the frame has no special priority requirement. By default, Catalyst switches do not tag native-vlan egress traffic at all, even if the frame has a non-zero priority. Cajun switches do not tag port-vlan egress traffic unless 802.1Q trunking is enabled. This is to accommodate devices that do not understand the tag, and would thus misinterpret or discard the tagged frame. To forward priority information from the port/native VLAN to another switch, the link must be a trunk link, meaning that the port/native VLAN must also be tagged. Pure speculation: The 802.1Q tag came after the Ethernet frame to facilitate VLAN trunking and L2 priority tagging. The tag is not integrated into the Ethernet frame but is added to it when necessary. As VLAN trunking and priority tagging become commonplace with the proliferation of 802.1Q-capable NICs and network devices, we may see the 802.1Q tag become integrated into the Ethernet frame. 4 4

45 Finally, some scenarios 4 5

46 Here are two variations of a common scenario. Routing between VLANs is performed by the L2/L3 switch. This is the distribution switch. Users connect to L2 switches. These are access switches that may or may not be VLAN-capable. This can be expanded out to many more VLANs than shown. 4 6

47 Here is another variation of the same scenario. Routing between VLANs is still performed by the L2/L3 distribution switch. But now the access switches have multiple VLANs, and the uplinks to the distribution switch are hybrid or trunk links. VLAN1 is the management VLAN in this setup. The access switches are hosts on VLAN1. Management stations, such as an SNMP server, are connected to VLAN1. VLANs 2-5 are user VLANs for devices such as user PCs. 4 7

48 Here is a different scenario. Now the access switches are also L2/L3 switches. Each access switch routes its own user VLANs ( ). The distribution switch routes between access switches and other external networks. VLANs 1-5 are uplink VLANs; there are no users on these VLANs. Each uplink VLAN connects a group of access switches to the distr switch. VLANs are user VLANs. These VLANs are local to their respective access switches. Broadcasts from these VLANs are not transmitted across the uplinks. In the previous scenario the user VLANs traverse the access and distribution switches, which results in broadcasts across the uplinks. 4 8

49 Here we ve added an IP telephony twist. The even-numbered user VLANs are data VLANs. The odd-numbered user VLANs are voice VLANs. PCs are connected into the even VLANs and IP phones are connected into the odd VLANs. But some of the PCs must piggyback on the phones to share a common port. So we make the shared ports hybrid or multi-vlan ports, make the even VLAN the port/native VLAN, and tag the phone traffic with the odd VID. The clear PC traffic is forwarded to the port/native VLAN, and the tagged phone traffic is forwarded to the appropriate VLAN. 4 9

50 Conclusion At first the Ethernet LAN was a shared coax bus (thick-net, thin-net). The hub replaced the coax bus, but there were still collisions on the hub. The switch replaced the hub and removed the collisions, but the switch itself was one L2 broadcast domain. Then smart L2 switches came along that could create multiple VLANs (multiple L2 broadcast domains) on a single switch. IEEE 802.1Q is the standard that brought this about. The 802.1Q tag facilitates VLAN trunking between these switches. At some point L3 (routing) functionality was added to these switches to remove the need for an external router in many cases. Real-time applications, such as IP telephony, have increased the practice of using the 802.1Q tag for priority tagging as well as VLAN trunking. NICs with priority-tagging capability already exist. It s probably only a matter of time before PCs are able to assign different priority values to different applications and tag them accordingly. Is it a stretch to speculate that one day endpoints will have the capability to tag different applications to different VLANs and source them from different IP addresses? 2002 Avaya Inc. All Rights Reserved. DA/LHP 7/8/02 5 0

IP Addressing A Simplified Tutorial

IP Addressing A Simplified Tutorial Application Note IP Addressing A Simplified Tutorial July 2002 COMPAS ID 92962 Avaya Labs 1 All information in this document is subject to change without notice. Although the information is believed to

More information

hp ProLiant network adapter teaming

hp ProLiant network adapter teaming hp networking june 2003 hp ProLiant network adapter teaming technical white paper table of contents introduction 2 executive summary 2 overview of network addressing 2 layer 2 vs. layer 3 addressing 2

More information

Zarząd (7 osób) F inanse (13 osób) M arketing (7 osób) S przedaż (16 osób) K adry (15 osób)

Zarząd (7 osób) F inanse (13 osób) M arketing (7 osób) S przedaż (16 osób) K adry (15 osób) QUESTION NO: 8 David, your TestKing trainee, asks you about basic characteristics of switches and hubs for network connectivity. What should you tell him? A. Switches take less time to process frames than

More information

VLAN 802.1Q. 1. VLAN Overview. 1. VLAN Overview. 2. VLAN Trunk. 3. Why use VLANs? 4. LAN to LAN communication. 5. Management port

VLAN 802.1Q. 1. VLAN Overview. 1. VLAN Overview. 2. VLAN Trunk. 3. Why use VLANs? 4. LAN to LAN communication. 5. Management port 1. VLAN Overview 2. VLAN Trunk 3. Why use VLANs? 4. LAN to LAN communication 5. Management port 6. Applications 6.1. Application 1 6.2. Application 2 6.3. Application 3 6.4. Application 4 6.5. Application

More information

CCT vs. CCENT Skill Set Comparison

CCT vs. CCENT Skill Set Comparison Operation of IP Data Networks Recognize the purpose and functions of various network devices such as Routers, Switches, Bridges and Hubs Select the components required to meet a given network specification

More information

CCNA R&S: Introduction to Networks. Chapter 5: Ethernet

CCNA R&S: Introduction to Networks. Chapter 5: Ethernet CCNA R&S: Introduction to Networks Chapter 5: Ethernet 5.0.1.1 Introduction The OSI physical layer provides the means to transport the bits that make up a data link layer frame across the network media.

More information

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev.

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev. Management Software AT-S106 Web Browser User s Guide For the AT-GS950/48 Gigabit Ethernet Smart Switch Version 1.0.0 613-001339 Rev. A Copyright 2010 Allied Telesis, Inc. All rights reserved. No part of

More information

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved.

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved. IP Addressing and Subnetting 2002, Cisco Systems, Inc. All rights reserved. 1 Objectives Upon completion, you will be able to: Discuss the Types of Network Addressing Explain the Form of an IP Address

More information

VLANs. Application Note

VLANs. Application Note VLANs Application Note Table of Contents Background... 3 Benefits... 3 Theory of Operation... 4 IEEE 802.1Q Packet... 4 Frame Size... 5 Supported VLAN Modes... 5 Bridged Mode... 5 Static SSID to Static

More information

What is VLAN Routing?

What is VLAN Routing? Application Note #38 February 2004 What is VLAN Routing? This Application Notes relates to the following Dell product(s): 6024 and 6024F 33xx Abstract Virtual LANs (VLANs) offer a method of dividing one

More information

Exhibit n.2: The layers of a hierarchical network

Exhibit n.2: The layers of a hierarchical network 3. Advanced Secure Network Design 3.1 Introduction You already know that routers are probably the most critical equipment piece in today s networking. Without routers, internetwork communication would

More information

Overview of Routing between Virtual LANs

Overview of Routing between Virtual LANs Overview of Routing between Virtual LANs This chapter provides an overview of virtual LANs (VLANs). It describes the encapsulation protocols used for routing between VLANs and provides some basic information

More information

Networking Devices. Lesson 6

Networking Devices. Lesson 6 Networking Devices Lesson 6 Objectives Exam Objective Matrix Technology Skill Covered Exam Objective Exam Objective Number Network Interface Cards Modems Media Converters Repeaters and Hubs Bridges and

More information

The IP Transmission Process. V1.4: Geoff Bennett

The IP Transmission Process. V1.4: Geoff Bennett The IP Transmission Process V1.4: Geoff Bennett Contents Communication Between Hosts Through a MAC Bridge Through a LAN Switch Through a Router The tutorial is divided into four sections. Section 1 looks

More information

"Charting the Course...

Charting the Course... Description "Charting the Course... Course Summary Interconnecting Cisco Networking Devices: Accelerated (CCNAX), is a course consisting of ICND1 and ICND2 content in its entirety, but with the content

More information

Implementation of Virtual Local Area Network using network simulator

Implementation of Virtual Local Area Network using network simulator 1060 Implementation of Virtual Local Area Network using network simulator Sarah Yahia Ali Department of Computer Engineering Techniques, Dijlah University College, Iraq ABSTRACT Large corporate environments,

More information

IT-AD08: ADD ON DIPLOMA IN COMPUTER NETWORK DESIGN AND INSTALLATION

IT-AD08: ADD ON DIPLOMA IN COMPUTER NETWORK DESIGN AND INSTALLATION IT-AD08: ADD ON DIPLOMA IN COMPUTER NETWORK DESIGN AND INSTALLATION Objective of the course: This course is designed to impart professional training to the students of computer Science, computer applications,

More information

Interconnecting Cisco Network Devices 1 Course, Class Outline

Interconnecting Cisco Network Devices 1 Course, Class Outline www.etidaho.com (208) 327-0768 Interconnecting Cisco Network Devices 1 Course, Class Outline 5 Days Interconnecting Cisco Networking Devices, Part 1 (ICND1) v2.0 is a five-day, instructorled training course

More information

How To Configure Voice Vlan On An Ip Phone

How To Configure Voice Vlan On An Ip Phone 1 VLAN (Virtual Local Area Network) is used to logically divide a physical network into several broadcast domains. VLAN membership can be configured through software instead of physically relocating devices

More information

UPPER LAYER SWITCHING

UPPER LAYER SWITCHING 52-20-40 DATA COMMUNICATIONS MANAGEMENT UPPER LAYER SWITCHING Gilbert Held INSIDE Upper Layer Operations; Address Translation; Layer 3 Switching; Layer 4 Switching OVERVIEW The first series of LAN switches

More information

Computer Networks. Definition of LAN. Connection of Network. Key Points of LAN. Lecture 06 Connecting Networks

Computer Networks. Definition of LAN. Connection of Network. Key Points of LAN. Lecture 06 Connecting Networks Computer Networks Lecture 06 Connecting Networks Kuang-hua Chen Department of Library and Information Science National Taiwan University Local Area Networks (LAN) 5 kilometer IEEE 802.3 Ethernet IEEE 802.4

More information

Easy Smart Configuration Utility

Easy Smart Configuration Utility Easy Smart Configuration Utility REV1.1.0 1910010977 CONTENTS Chapter 1 About this Guide...1 1.1 Intended Readers... 1 1.2 Conventions... 1 1.3 Overview of This Guide... 1 Chapter 2 Getting Started...4

More information

100-101: Interconnecting Cisco Networking Devices Part 1 v2.0 (ICND1)

100-101: Interconnecting Cisco Networking Devices Part 1 v2.0 (ICND1) 100-101: Interconnecting Cisco Networking Devices Part 1 v2.0 (ICND1) Course Overview This course provides students with the knowledge and skills to implement and support a small switched and routed network.

More information

How To Learn Cisco Cisco Ios And Cisco Vlan

How To Learn Cisco Cisco Ios And Cisco Vlan Interconnecting Cisco Networking Devices: Accelerated Course CCNAX v2.0; 5 Days, Instructor-led Course Description Interconnecting Cisco Networking Devices: Accelerated (CCNAX) v2.0 is a 60-hour instructor-led

More information

Cisco Data Centre: Introducing Cisco Data Center Networking

Cisco Data Centre: Introducing Cisco Data Center Networking coursemonster.com/uk Cisco Data Centre: Introducing Cisco Data Center Networking View training dates» Overview In the Introducing Cisco Data Center Networking training course, delegates will learn to:â

More information

LAN Switching and VLANs

LAN Switching and VLANs 26 CHAPTER Chapter Goals Understand the relationship of LAN switching to legacy internetworking devices such as bridges and routers. Understand the advantages of VLANs. Know the difference between access

More information

Network Discovery Protocol LLDP and LLDP- MED

Network Discovery Protocol LLDP and LLDP- MED Network LLDP and LLDP- MED Prof. Vahida Z. Attar College of Engineering, Pune Wellesely Road, Shivajinagar, Pune-411 005. Maharashtra, INDIA Piyush chandwadkar College of Engineering, Pune Wellesely Road,

More information

Network Discovery Protocol LLDP and LLDP- MED

Network Discovery Protocol LLDP and LLDP- MED Network LLDP and LLDP- MED Prof. Vahida Z. Attar College of Engineering, Pune Wellesely Road, Shivajinagar, Pune-411 005. Maharashtra, INDIA Piyush chandwadkar College of Engineering, Pune Wellesely Road,

More information

SSVP SIP School VoIP Professional Certification

SSVP SIP School VoIP Professional Certification SSVP SIP School VoIP Professional Certification Exam Objectives The SSVP exam is designed to test your skills and knowledge on the basics of Networking and Voice over IP. Everything that you need to cover

More information

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6)

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6) Cisco Certified Network Associate Exam Exam Number 200-120 CCNA Associated Certifications CCNA Routing and Switching Operation of IP Data Networks Operation of IP Data Networks Recognize the purpose and

More information

Procedure: You can find the problem sheet on Drive D: of the lab PCs. Part 1: Router & Switch

Procedure: You can find the problem sheet on Drive D: of the lab PCs. Part 1: Router & Switch University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 Lab. 2 Network Devices & Packet Tracer Objectives 1. To become familiar with

More information

2. What is the maximum value of each octet in an IP address? A. 28 B. 255 C. 256 D. None of the above

2. What is the maximum value of each octet in an IP address? A. 28 B. 255 C. 256 D. None of the above CCNA1 V3.0 Mod 10 (Ch 8) 1. How many bits are in an IP C. 64 2. What is the maximum value of each octet in an IP A. 28 55 C. 256 3. The network number plays what part in an IP A. It specifies the network

More information

Lab 10.4.1 IP Addressing Overview

Lab 10.4.1 IP Addressing Overview Lab 10.4.1 IP ing Overview Estimated time: 30 min. Objectives: Background: This lab will focus on your ability to accomplish the following tasks: Name the five different classes of IP addresses Describe

More information

GVRP Overview. Overview

GVRP Overview. Overview 3 GVRP Contents Overview...................................................... 3-2................................................... 3-3 General Operation........................................... 3-4

More information

Configuring Network Address Translation (NAT)

Configuring Network Address Translation (NAT) 8 Configuring Network Address Translation (NAT) Contents Overview...................................................... 8-3 Translating Between an Inside and an Outside Network........... 8-3 Local and

More information

FSM73xx GSM73xx GMS72xxR Shared access to the Internet across Multiple routing VLANs using a Prosafe Firewall

FSM73xx GSM73xx GMS72xxR Shared access to the Internet across Multiple routing VLANs using a Prosafe Firewall FSM73xx GSM73xx GMS72xxR Shared access to the Internet across Multiple routing VLANs using a Prosafe Firewall This document describes how to: - Create multiple routing VLANs - Obtain Internet access on

More information

SSVVP SIP School VVoIP Professional Certification

SSVVP SIP School VVoIP Professional Certification SSVVP SIP School VVoIP Professional Certification Exam Objectives The SSVVP exam is designed to test your skills and knowledge on the basics of Networking, Voice over IP and Video over IP. Everything that

More information

Abstract. MEP; Reviewed: GAK 10/17/2005. Solution & Interoperability Test Lab Application Notes 2005 Avaya Inc. All Rights Reserved.

Abstract. MEP; Reviewed: GAK 10/17/2005. Solution & Interoperability Test Lab Application Notes 2005 Avaya Inc. All Rights Reserved. Configuring Single Instance Rapid Spanning Tree Protocol (RSTP) between an Avaya C360 Converged Switch and HP ProCurve Networking Switches to support Avaya IP Telephony Issue 1.0 Abstract These Application

More information

Lab - Using IOS CLI with Switch MAC Address Tables

Lab - Using IOS CLI with Switch MAC Address Tables Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.1.1 255.255.255.0 N/A S1 VLAN 1 192.168.1.11 255.255.255.0 192.168.1.1 S2 VLAN 1 192.168.1.12

More information

ANZA Formación en Tecnologías Avanzadas

ANZA Formación en Tecnologías Avanzadas INTRODUCING CISCO DATA CENTER NETWORKING (DCICN) Temario This new assoicate level course has been designed to introduce delegates to the three primary technologies that are used in the Cisco Data Center.

More information

How To Understand and Configure Your Network for IntraVUE

How To Understand and Configure Your Network for IntraVUE How To Understand and Configure Your Network for IntraVUE Summary This document attempts to standardize the methods used to configure Intrauve in situations where there is little or no understanding of

More information

Catalyst Layer 3 Switch for Wake On LAN Support Across VLANs Configuration Example

Catalyst Layer 3 Switch for Wake On LAN Support Across VLANs Configuration Example Catalyst Layer 3 Switch for Wake On LAN Support Across VLANs Configuration Example Document ID: 91672 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information

More information

Configure IOS Catalyst Switches to Connect Cisco IP Phones Configuration Example

Configure IOS Catalyst Switches to Connect Cisco IP Phones Configuration Example Configure IOS Catalyst Switches to Connect Cisco IP Phones Configuration Example Document ID: 69632 Introduction Prerequisites Requirements Components Used Conventions Background Information Configure

More information

Device Interface IP Address Subnet Mask Default Gateway

Device Interface IP Address Subnet Mask Default Gateway Felix Rohrer Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 192.168.99.11 255.255.255.0 192.168.99.1 S2 VLAN 99 192.168.99.12 255.255.255.0 192.168.99.1

More information

- Hubs vs. Switches vs. Routers -

- Hubs vs. Switches vs. Routers - 1 Layered Communication - Hubs vs. Switches vs. Routers - Network communication models are generally organized into layers. The OSI model specifically consists of seven layers, with each layer representing

More information

VMware ESX Server 3 802.1Q VLAN Solutions W H I T E P A P E R

VMware ESX Server 3 802.1Q VLAN Solutions W H I T E P A P E R VMware ESX Server 3 802.1Q VLAN Solutions W H I T E P A P E R Executive Summary The virtual switches in ESX Server 3 support VLAN (IEEE 802.1Q) trunking. Using VLANs, you can enhance security and leverage

More information

INTERCONNECTING CISCO NETWORK DEVICES PART 1 V2.0 (ICND 1)

INTERCONNECTING CISCO NETWORK DEVICES PART 1 V2.0 (ICND 1) INTERCONNECTING CISCO NETWORK DEVICES PART 1 V2.0 (ICND 1) COURSE OVERVIEW: Interconnecting Cisco Networking Devices, Part 1 (ICND1) v2.0 is a five-day, instructor-led training course that teaches learners

More information

Ethernet Local Area Networks (LANS) Two basic ways to cable an 10 Mb/s Ethernet LAN: Bus-style (large Ethernet cable, or thin Ethernet cable)

Ethernet Local Area Networks (LANS) Two basic ways to cable an 10 Mb/s Ethernet LAN: Bus-style (large Ethernet cable, or thin Ethernet cable) Ethernet Local Area Networks (LANS) Two basic ways to cable an 10 Mb/s Ethernet LAN: Bus-style (large Ethernet cable, or thin Ethernet cable) Large Ethernet cable is bulky, uses cable-taps. Smaller cable

More information

VXLAN: Scaling Data Center Capacity. White Paper

VXLAN: Scaling Data Center Capacity. White Paper VXLAN: Scaling Data Center Capacity White Paper Virtual Extensible LAN (VXLAN) Overview This document provides an overview of how VXLAN works. It also provides criteria to help determine when and where

More information

IP Networking. Overview. Networks Impact Daily Life. IP Networking - Part 1. How Networks Impact Daily Life. How Networks Impact Daily Life

IP Networking. Overview. Networks Impact Daily Life. IP Networking - Part 1. How Networks Impact Daily Life. How Networks Impact Daily Life Overview Dipl.-Ing. Peter Schrotter Institute of Communication Networks and Satellite Communications Graz University of Technology, Austria Fundamentals of Communicating over the Network Application Layer

More information

CHAPTER 10 LAN REDUNDANCY. Scaling Networks

CHAPTER 10 LAN REDUNDANCY. Scaling Networks CHAPTER 10 LAN REDUNDANCY Scaling Networks CHAPTER 10 10.0 Introduction 10.1 Spanning Tree Concepts 10.2 Varieties of Spanning Tree Protocols 10.3 Spanning Tree Configuration 10.4 First-Hop Redundancy

More information

Networking 4 Voice and Video over IP (VVoIP)

Networking 4 Voice and Video over IP (VVoIP) Networking 4 Voice and Video over IP (VVoIP) Course Objectives This course will give delegates a good understanding of LANs, WANs and VVoIP (Voice and Video over IP). It is aimed at those who want to move

More information

6/8/2011. Document ID: 12023. Contents. Introduction. Prerequisites. Requirements. Components Used. Conventions. Introduction

6/8/2011. Document ID: 12023. Contents. Introduction. Prerequisites. Requirements. Components Used. Conventions. Introduction Page 1 of 9 Products & Services Understanding EtherChannel Load Balancing and Redundancy on Catalyst Switches Document ID: 12023 Contents Introduction Prerequisites Requirements Components Used Conventions

More information

Chapter 2 TCP/IP Networking Basics

Chapter 2 TCP/IP Networking Basics Chapter 2 TCP/IP Networking Basics A network in your home or small business uses the same type of TCP/IP networking that is used for the Internet. This manual provides an overview of IP (Internet Protocol)

More information

One of the most important topics in any discussion of TCP/IP is IP. IP Addressing

One of the most important topics in any discussion of TCP/IP is IP. IP Addressing IP Addressing 125 machine, called a RARP server, responds with the answer, and the identity crisis is over. RARP uses the information it does know about the machine s MAC address to learn its IP address

More information

TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa

TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa Education & Training Plan CompTIA N+ Specialist Program Student Full

More information

BLADE PVST+ Spanning Tree and Interoperability with Cisco

BLADE PVST+ Spanning Tree and Interoperability with Cisco BLADE PVST+ Spanning Tree and Interoperability with Cisco Technical Brief Industry-standard PVST+ Spanning Tree Protocol with Cisco interoperability Introduction...1 Spanning Tree Protocol (IEEE 802.1d)...1

More information

Configuring EtherChannel and 802.1Q Trunking Between Catalyst L2 Fixed Configuration Switches and Catalyst Switches Running CatOS

Configuring EtherChannel and 802.1Q Trunking Between Catalyst L2 Fixed Configuration Switches and Catalyst Switches Running CatOS Configuring EtherChannel and 802.1Q Trunking Between Catalyst L2 Fixed Configuration Switches and Catalyst Switches Running CatOS Document ID: 23408 Contents Introduction Prerequisites Requirements Components

More information

2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 D. None of the above

2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 D. None of the above 1. How many bits are in an IP address? A. 16 B. 32 C. 64 2. What is the maximum value of each octet in an IP address? A. 128 B. 255 C. 256 3. The network number plays what part in an IP address? A. It

More information

How To Balance On A Cisco Catalyst Switch With The Etherchannel On A Fast Ipv2 (Powerline) On A Microsoft Ipv1 (Powergen) On An Ipv3 (Powergadget) On Ipv4

How To Balance On A Cisco Catalyst Switch With The Etherchannel On A Fast Ipv2 (Powerline) On A Microsoft Ipv1 (Powergen) On An Ipv3 (Powergadget) On Ipv4 Cisco - Understanding EtherChannel Load Balancing and Redundancy on Catalyst Switch...Page 1 of 10 Understanding EtherChannel Load Balancing and Redundancy on Catalyst Switches Document ID: 12023 Contents

More information

Layer 3 Network + Dedicated Internet Connectivity

Layer 3 Network + Dedicated Internet Connectivity Layer 3 Network + Dedicated Internet Connectivity Client: One of the IT Departments in a Northern State Customer's requirement: The customer wanted to establish CAN connectivity (Campus Area Network) for

More information

Switching in an Enterprise Network

Switching in an Enterprise Network Switching in an Enterprise Network Introducing Routing and Switching in the Enterprise Chapter 3 Version 4.0 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectives Compare the types of

More information

Virtual LANs. http://www.cis.ohio-state.edu/~jain/cis788-97/ or http://www.netlab.ohio-state.edu/~jain/cis788-97/ Raj Jain

Virtual LANs. http://www.cis.ohio-state.edu/~jain/cis788-97/ or http://www.netlab.ohio-state.edu/~jain/cis788-97/ Raj Jain Virtual LANs Professor of Computer and Information Sciences Please download and print the handouts from: http://www.cis.ohio-state.edu/~jain/cis788-97/ or http://www.netlab.ohio-state.edu/~jain/cis788-97/

More information

QoS Switching. Two Related Areas to Cover (1) Switched IP Forwarding (2) 802.1Q (Virtual LANs) and 802.1p (GARP/Priorities)

QoS Switching. Two Related Areas to Cover (1) Switched IP Forwarding (2) 802.1Q (Virtual LANs) and 802.1p (GARP/Priorities) QoS Switching H. T. Kung Division of Engineering and Applied Sciences Harvard University November 4, 1998 1of40 Two Related Areas to Cover (1) Switched IP Forwarding (2) 802.1Q (Virtual LANs) and 802.1p

More information

Interconnecting Cisco Networking Devices, Part 1 (ICND1) v3.0

Interconnecting Cisco Networking Devices, Part 1 (ICND1) v3.0 Interconnecting Cisco Networking Devices, Part 1 (ICND1) v3.0 COURSE OVERVIEW: Interconnecting Cisco Networking Devices, Part 1 (ICND1) v3.0 is a five-day, instructor-led training course that teaches learners

More information

- Virtual LANs (VLANs) and VTP -

- Virtual LANs (VLANs) and VTP - 1 - Virtual LANs (VLANs) and VTP - Collision vs. Broadcast Domains A collision domain is simply defined as any physical segment where a collision can occur. Hubs can only operate at half-duplex, and thus

More information

This topic lists the key mechanisms use to implement QoS in an IP network.

This topic lists the key mechanisms use to implement QoS in an IP network. IP QoS Mechanisms QoS Mechanisms This topic lists the key mechanisms use to implement QoS in an IP network. QoS Mechanisms Classification: Each class-oriented QoS mechanism has to support some type of

More information

Region 10 Videoconference Network (R10VN)

Region 10 Videoconference Network (R10VN) Region 10 Videoconference Network (R10VN) Network Considerations & Guidelines 1 What Causes A Poor Video Call? There are several factors that can affect a videoconference call. The two biggest culprits

More information

Networking Test 4 Study Guide

Networking Test 4 Study Guide Networking Test 4 Study Guide True/False Indicate whether the statement is true or false. 1. IPX/SPX is considered the protocol suite of the Internet, and it is the most widely used protocol suite in LANs.

More information

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs Tasks: 1 (10 min) Verify that TCP/IP is installed on each of the computers 2 (10 min) Connect the computers together via a switch 3 (10 min)

More information

ProSafe Plus Switch Utility

ProSafe Plus Switch Utility ProSafe Plus Switch Utility User Guide 350 East Plumeria Drive San Jose, CA 95134 USA September 2010 202-10524-03 v1.0 ProSafe Plus Switch Utility User Guide 2010 NETGEAR, Inc. All rights reserved. No

More information

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials.

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. CHAPTER 5 OBJECTIVES Configure a router with an initial configuration. Use the

More information

vsphere Networking ESXi 5.0 vcenter Server 5.0 EN-000599-01

vsphere Networking ESXi 5.0 vcenter Server 5.0 EN-000599-01 ESXi 5.0 vcenter Server 5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Level 2 Routing: LAN Bridges and Switches

Level 2 Routing: LAN Bridges and Switches Level 2 Routing: LAN Bridges and Switches Norman Matloff University of California at Davis c 2001, N. Matloff September 6, 2001 1 Overview In a large LAN with consistently heavy traffic, it may make sense

More information

Best Practice Recommendations for Implementing VLANs in a ShoreTel VoIP Environment with IP Phones

Best Practice Recommendations for Implementing VLANs in a ShoreTel VoIP Environment with IP Phones Application Note ST-0131 April 28, 2006 Best Practice Recommendations for Implementing VLANs in a ShoreTel VoIP Environment with IP Phones This application note discusses the use of LANs and DHCP scopes

More information

ENTERASYS WEBVIEW WEB-BASED MANAGEMENT FOR THE VH-2402S/VH-2402S2 WEB MANAGEMENT GUIDE

ENTERASYS WEBVIEW WEB-BASED MANAGEMENT FOR THE VH-2402S/VH-2402S2 WEB MANAGEMENT GUIDE ENTERASYS WEBVIEW WEB-BASED MANAGEMENT FOR THE VH-2402S/VH-2402S2 WEB MANAGEMENT GUIDE 9033821 Notice NOTICE Enterasys Networks reserves the right to make changes in specifications and other information

More information

1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet

1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet Review questions 1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet C Media access method D Packages 2 To which TCP/IP architecture layer

More information

Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs

Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs How To Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs Introduction In a large network where internal users cannot be trusted, it is nearly impossible to stop a host from

More information

Building Secure Network Infrastructure For LANs

Building Secure Network Infrastructure For LANs Building Secure Network Infrastructure For LANs Yeung, K., Hau; and Leung, T., Chuen Abstract This paper discusses the building of secure network infrastructure for local area networks. It first gives

More information

OSBRiDGE 5XLi. Configuration Manual. Firmware 3.10R

OSBRiDGE 5XLi. Configuration Manual. Firmware 3.10R OSBRiDGE 5XLi Configuration Manual Firmware 3.10R 1. Initial setup and configuration. OSBRiDGE 5XLi devices are configurable via WWW interface. Each device uses following default settings: IP Address:

More information

Technical Support Information Belkin internal use only

Technical Support Information Belkin internal use only The fundamentals of TCP/IP networking TCP/IP (Transmission Control Protocol / Internet Protocols) is a set of networking protocols that is used for communication on the Internet and on many other networks.

More information

Can PowerConnect Switches Be Used in IP Multicast Networks?

Can PowerConnect Switches Be Used in IP Multicast Networks? PowerConnect Application Note #6 January 2004 Can PowerConnect Switches Be Used in IP Multicast Networks? This Application Note relates to the following Dell PowerConnect products: PowerConnect 33xx PowerConnect

More information

Source net: 200.1.1.0 Destination net: 200.1.2.0 Subnet mask: 255.255.255.0 Subnet mask: 255.255.255.0. Router Hub

Source net: 200.1.1.0 Destination net: 200.1.2.0 Subnet mask: 255.255.255.0 Subnet mask: 255.255.255.0. Router Hub then to a router. Remember that with a Class C network address, the first 3 octets, or 24 bits, are assigned as the network address. So, these are two different Class C networks. This leaves one octet,

More information

Lab 10.3.5a Basic Subnetting

Lab 10.3.5a Basic Subnetting Lab 10.3.5a Basic Subnetting Objective How to identify reasons to use a subnet mask How to distinguish between a default subnet mask and a custom subnet mask What given requirements determine the subnet

More information

Lab 9.1.1 Organizing CCENT Objectives by OSI Layer

Lab 9.1.1 Organizing CCENT Objectives by OSI Layer Lab 9.1.1 Organizing CCENT Objectives by OSI Layer Objectives Organize the CCENT objectives by which layer or layers they address. Background / Preparation In this lab, you associate the objectives of

More information

VLAN and QinQ Technology White Paper

VLAN and QinQ Technology White Paper VLAN and QinQ Technology White Paper Issue 1.01 Date 2012-10-30 HUAWEI TECHNOLOGIES CO., LTD. 2012. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

JOB READY ASSESSMENT BLUEPRINT COMPUTER NETWORKING FUNDAMENTALS - PILOT. Test Code: 4514 Version: 01

JOB READY ASSESSMENT BLUEPRINT COMPUTER NETWORKING FUNDAMENTALS - PILOT. Test Code: 4514 Version: 01 JOB READY ASSESSMENT BLUEPRINT COMPUTER NETWORKING FUNDAMENTALS - PILOT Test Code: 4514 Version: 01 Specific Competencies and Skills Tested in this Assessment: PC Principles Identify physical and equipment

More information

Configuring IPS High Bandwidth Using EtherChannel Load Balancing

Configuring IPS High Bandwidth Using EtherChannel Load Balancing Configuring IPS High Bandwidth Using EtherChannel Load Balancing This guide helps you to understand and deploy the high bandwidth features available with IPS v5.1 when used in conjunction with the EtherChannel

More information

AT-S41 Version 1.1.4 Management Software for the AT-8326 and AT-8350 Series Fast Ethernet Switches. Software Release Notes

AT-S41 Version 1.1.4 Management Software for the AT-8326 and AT-8350 Series Fast Ethernet Switches. Software Release Notes AT-S41 Version 1.1.4 Management Software for the AT-8326 and AT-8350 Series Fast Ethernet Switches Software Release Notes Please read this document before you begin to use the AT-S41 management software.

More information

CCNA 1: Networking Basics. Cisco Networking Academy Program Version 3.0

CCNA 1: Networking Basics. Cisco Networking Academy Program Version 3.0 CCNA 1: Networking Basics Cisco Networking Academy Program Version 3.0 Table of Contents CCNA 1: NETWORKING BASICS...1 TARGET AUDIENCE...3 PREREQUISITES...3 COURSE DESCRIPTION...3 COURSE OBJECTIVES...3

More information

Interconnecting Cisco Networking Devices Part 2

Interconnecting Cisco Networking Devices Part 2 Interconnecting Cisco Networking Devices Part 2 Course Number: ICND2 Length: 5 Day(s) Certification Exam This course will help you prepare for the following exam: 640 816: ICND2 Course Overview This course

More information

Protocol Data Units and Encapsulation

Protocol Data Units and Encapsulation Chapter 2: Communicating over the 51 Protocol Units and Encapsulation For application data to travel uncorrupted from one host to another, header (or control data), which contains control and addressing

More information

How To Configure InterVLAN Routing on Layer 3 Switches

How To Configure InterVLAN Routing on Layer 3 Switches How To Configure InterVLAN Routing on Layer 3 Switches Document ID: 41860 Contents Introduction Prerequisites Requirements Components Used Conventions Configure InterVLAN Routing Task Step by Step Instructions

More information

IP Office Technical Tip

IP Office Technical Tip IP Office Technical Tip Tip no: 195 Release Date: October 26, 2007 Region: GLOBAL Using Packet Capture Software To Verify IP Network VoIP Quality Of Service (QoS) Operation Converged networks can experience

More information

Candidates should attempt FOUR questions. All questions carry 25 marks.

Candidates should attempt FOUR questions. All questions carry 25 marks. UNIVERSITY OF ABERDEEN Exam 2010 Degree Examination in ES 3567 Communications Engineering 1B Xday X Notes: 9.00 a.m. 12 Noon (i) CANDIDATES ARE PERMITTED TO USE APPROVED CALCULATORS (II) CANDIDATES ARE

More information

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance CHAPTER 4 Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance This chapter describes how to configure the switch ports and VLAN interfaces of the ASA 5505 adaptive

More information

Ethernet. Ethernet. Network Devices

Ethernet. Ethernet. Network Devices Ethernet Babak Kia Adjunct Professor Boston University College of Engineering ENG SC757 - Advanced Microprocessor Design Ethernet Ethernet is a term used to refer to a diverse set of frame based networking

More information

network infrastructure: getting started with VoIP

network infrastructure: getting started with VoIP hp procurve networking business may 2003 network infrastructure: getting started with VoIP technical brief table of contents introduction 2 network optimization for VoIP 2 bandwidth provisioning 3 end-to-end

More information

Advanced VSAT Solutions Bridge Point-to-Multipoint (BPM) Overview

Advanced VSAT Solutions Bridge Point-to-Multipoint (BPM) Overview 2114 West 7 th Street Tempe, AZ 85281 USA Voice +1.480.333.2200 E-mail sales@comtechefdata.com Web www.comtechefdata.com Advanced VSAT Solutions Bridge Point-to-Multipoint (BPM) Overview January 2014 2014

More information