منتدي منظمة أقباط الولايات المتحدة

منتدي منظمة أقباط الولايات المتحدة (http://www.copts.net/forum/index.php)
-   العلوم وتكنولوجيا الاتصالات (http://www.copts.net/forum/forumdisplay.php?f=36)
-   -   Networking Basics (http://www.copts.net/forum/showthread.php?t=11333)

InnerPeace 25-02-2006 11:48 AM

Four-octet dotted decimal representation of 32-bit binary numbers
 
[COLOR="Blue"][LEFT][SIZE="5"]Four-octet dotted decimal representation of 32-bit binary numbers [/SIZE][/LEFT][/COLOR]
[LEFT][SIZE="4"]
[COLOR="Green"]This page will explain how binary numbers are represented in dotted decimal notation.[/COLOR]

Currently, [U]addresses assigned to computers on the Internet are 32-bit binary numbers[/U]. To make it easier to work with these addresses, [U]the 32-bit binary number is broken into a series of decimal numbers[/U]. First the binary number is split into four groups of eight binary digits. Then each [I]group of eight bits[/I], or [I]octet[/I], is converted into its decimal equivalent. This conversion can be performed as shown on the previous page.

When written, the complete binary number is represented as four groups of decimal digits separated by periods. This is called dotted decimal notation and provides a compact and easy way to refer to 32-bit addresses. This representation is used frequently later in this course, so it is necessary to understand it. For dotted decimal to binary conversions, remember that each group of one to three decimal digits represents a group of eight binary digits. If the decimal number that is being converted is less than 128, zeros will be needed to be added to the left of the equivalent binary number until there are a total of eight bits.

Try the following conversions for practice:

Convert 200.114.6.51 to its 32-bit binary equivalent.

Convert 10000000 01011101 00001111 10101010 to its dotted decimal equivalent. [/SIZE][/LEFT]

InnerPeace 01-03-2006 03:54 AM

[LEFT][SIZE="5"][COLOR="Blue"] Hexadecimal [/COLOR][/SIZE]

[SIZE="4"][COLOR="Green"]This page will teach you about the hexadecimal number system. You will also learn how hexadecimal is used to represent binary and decimal numbers.[/COLOR]

The [U]hexadecimal[/U] or [U]Base 16 [/U]number system is commonly used to[U] represent binary numbers in a more readable form[/U]. Computers perform computations in binary. However, there are several instances when the binary output of a computer is expressed in hexadecimal to make it easier to read.

The configuration register in [U]routers[/U] often requires hexadecimal to binary and binary to hexadecimal conversions. routers have a configuration register that is 16 bits long. [COLOR="DarkOrchid"]The 16-bit binary number can be represented as a four-digit hexadecimal number[/COLOR]. For example, [COLOR="Sienna"]0010[/COLOR][COLOR="Blue"]0001[/COLOR][COLOR="DarkRed"]0000[/COLOR][COLOR="Red"]0010[/COLOR] in binary equals [COLOR="sienna"]2[/COLOR][COLOR="blue"]1[/COLOR][COLOR="darkred"]0[/COLOR][COLOR="red"]2[/COLOR] in hexadecimal. A hexadecimal number is often indicated with a 0x. For example, the [U]hexadecimal number 2102[/U] would be written as [U]0x2102[/U].

Like the binary and decimal systems, the hexadecimal system is based on the use of symbols, powers, and positions. The [U]symbols that hexadecimal uses[/U] are [COLOR="DarkRed"]the digits 0 through 9 and the letters A through F[/COLOR].

All combinations of four binary digits can be represented with one hexadecimal symbol. These values require one or two decimal symbols. Two hexadecimal digits can efficiently represent any combination of eight binary digits. The decimal representation of an eight-bit binary number will require either two or three decimal digits. Since one hexadecimal digit always represents four binary digits, hexadecimal symbols are easier to use than decimal symbols when working with large binary numbers. Using hexadecimal representation also reduces the confusion of reading long strings of binary numbers and the amount of space it takes to write binary numbers. Remember that 0x may be used to indicate a hexadecimal value. The [U]hexadecimal number 5D[/U] might be written as [U]0x5D.[/U][/LEFT][/SIZE]

InnerPeace 01-03-2006 04:04 AM

Boolean or binary logic
 
[SIZE="5"][COLOR="Blue"][B][LEFT]Boolean or binary logic [/B][/COLOR][/SIZE]

[SIZE="4"][COLOR="Green"]This page will introduce Boolean logic and explain how it is used.[/COLOR]

Boolean logic is based on digital circuitry that accepts one or [U]two incoming voltages[/U]. Based on the input voltages, output voltage is generated. For computers the voltage difference is represented as an [U]ON or OFF[/U] state. These two states are associated with a binary [U]1 or 0[/U].

Boolean logic is a binary logic that allows two numbers to be compared and makes a choice based on the numbers. These choices are the logical AND, OR, and NOT. With the exception of the NOT, Boolean operations have the same function. They accept two numbers, which are 1 and 0, and generate a result based on the logic rule.

[U]The NOT operation [/U]takes the value that is presented and inverts it. A [U]1[/U] becomes a[U] 0 [/U]and a [U]0[/U] becomes a [U]1[/U]. Remember that the logic gates are electronic devices built specifically for this purpose. The logic rule that they follow is whatever the input is, the output is the opposite.

[U]The AND operation[/U] compares two input values. If [U]both values are 1[/U], [U]the logic gate generates a 1 as the output[/U]. [U]Otherwise it outputs a 0[/U]. There are four combinations of input values. Three of these combinations generate a 0, and one combination generates a 1.

[U]The OR operation[/U] also takes two input values. If[U] at least one of the input values is 1[/U], [U]the output value is 1[/U]. Again there are four combinations of input values. Three combinations generate a 1 and the fourth generates a 0.

The two networking operations that use Boolean logic are subnetwork and wildcard masking. The masking operations are used to filter addresses. The addresses identify the devices on the network and can be grouped together or controlled by other network operations.[/SIZE][/LEFT]

InnerPeace 01-03-2006 05:55 AM

IP addresses and network masks
 
[LEFT][SIZE="5"][B][COLOR="Blue"]IP addresses and network masks [/COLOR][/B][/SIZE]

[SIZE="4"][COLOR="Green"]This page will explain the relationship between IP addresses and network masks. [/COLOR]

When IP addresses are assigned to computers, [U]some of the bits on the left side of the 32-bit IP number represent a network[/U]. The number of bits designated depends on the address class. The bits left over in the 32-bit IP address identify a particular computer on the network. A computer is referred to as a host. The[U] IP address[/U] of a computer [U]consists of a network and a host part[/U].

To inform a computer how the 32-bit IP address has been split, a second 32-bit number called a subnetwork mask is used. This mask is a guide that determines how the IP address is interpreted. It indicates how many of the bits are used to identify the network of the computer. The subnetwork mask sequentially fills in the 1s from the left side of the mask. [U]A subnet mask[/U] will always be all [U]1s [/U]until the [U]network address [/U]is identified and then it will be all 0s to the end of the mask. The bits in the subnet mask that are [U]0 identify the computer or host[/U].

Some examples of subnet masks are as follows:

[COLOR="Red"]11111111[/COLOR]000000000000000000000000
written in dotted decimal as [COLOR="red"]255[/COLOR].0.0.0

[COLOR="Blue"]11111111[/COLOR][COLOR="Blue"]11111111[/COLOR]0000000000000000
written in dotted decimal as [COLOR="blue"]255[/COLOR].[COLOR="blue"]255[/COLOR].0.0

In the first example, the first eight bits from the left represent the [U]network portion [/U]of the address, and the last 24 bits represent the host portion of the address. In the second example the first 16 bits represent the network portion of the address, and the last 16 bits represent the host portion of the address.

The IP address [COLOR="Red"]10[/COLOR].[COLOR="RoyalBlue"]34[/COLOR].[COLOR="DarkOrchid"]23[/COLOR].134
in binary form is [COLOR="red"]00001010[/COLOR].[COLOR="royalblue"]00100010[/COLOR].[COLOR="darkorchid"]00010111[/COLOR].10000110.

A Boolean AND of the IP address 10.34.23.134 and the subnet mask [U]255.0.0.0[/U] produces the [COLOR="Purple"]network address[/COLOR] of this host:

[COLOR="Magenta"]00001010[/COLOR].[COLOR="Green"]00100010[/COLOR].[COLOR="DarkOrange"]00010111[/COLOR].[COLOR="Blue"]10000110[/COLOR]
[U][COLOR="magenta"]11111111[/COLOR].[COLOR="green"]00000000[/COLOR].[COLOR="darkorange"]00000000[/COLOR].[COLOR="blue"]00000000[/COLOR][/U]
[COLOR="magenta"]00001010[/COLOR].[COLOR="green"]00000000[/COLOR].[COLOR="darkorange"]00000000[/COLOR].[COLOR="blue"]00000000[/COLOR]

The dotted decimal conversion is 10.0.0.0 which is the network portion of the IP address when the 255.0.0.0 mask is used.

A Boolean AND of the IP address 10.34.23.134 and the subnet mask [U]255.255.0.0[/U] produces the network address of this host:

00001010.00100010.00010111.10000110
[U]11111111.11111111.00000000.00000000[/U]
00001010.00100010.00000000.00000000

The dotted decimal conversion is 10.34.0.0 which is the network portion of the IP address when the 255.255.0.0 mask is used.

This is a brief illustration of the effect that a network mask has on an IP address. The importance of masking will become much clearer as more work with IP addresses is done. For right now it is only important that the concept of the mask is understood.[/LEFT][/SIZE]

InnerPeace 01-03-2006 06:00 AM

Summary
 
[LEFT][SIZE="5"][B][CENTER]Summary [/CENTER][/B][/SIZE]


[SIZE="4"]Decimal representation of IP addresses and network masksThis page summarizes the topics discussed in this module.

A connection to a computer network can be broken down into the physical connection, the logical connection, and the applications that interpret the data and display the information. Establishment and maintenance of the physical connection requires knowledge of PC components and peripherals. Connectivity to the Internet requires an adapter card, which may be a modem or a network interface card (NIC).

In the early 1960s modems were introduced to provide connectivity to a central computer. Today, access methods have progressed to services that provide constant, high-speed access.

The logical connection uses standards called protocols. The Transmission Control Protocol/Internet Protocol (TCP/IP) suite is the primary group of protocols used on the Internet. TCP/IP can be configured on a workstation using operating system tools. The ping utility can be used to test connectivity.

A web browser is software that is installed on the PC to gain access to the Internet and local web pages. Occasionally a browser may require plug-in applications. These applications work in conjunction with the browser to launch the program required to view special or proprietary files.

Computers recognize and process data using the binary, or Base 2, numbering system. Often the binary output of a computer is expressed in hexadecimal to make it easier to read. The ablility to convert decimal numbers to binary numbers is valuable when converting dotted decimal IP addresses to machine-readable binary format. Conversion of hexadecimal numbers to binary, and binary numbers to hexadecimal, is a common task when dealing with the configuration register in routers.

Boolean logic is a binary logic that allows two numbers to be compared and a choice generated based on the two numbers. Two networking operations that use Boolean logic are subnetting and wildcard masking.

The 32-bit binary addresses used on the Internet are referred to as Internet Protocol (IP) addresses.[/SIZE]
[/LEFT]

InnerPeace 01-03-2006 06:28 AM

Module 2: Networking Fundamentals
 
[SIZE="4"][CENTER][COLOR="Red"][FONT="Impact"][SIZE="5"]Networking Terminology[/SIZE][/FONT][/COLOR][/CENTER]
[LEFT]
[SIZE="5"][COLOR="Blue"][B]Data networks [/B][/COLOR][/SIZE]


[COLOR="Green"]This page will discuss the evolution of data networks.[/COLOR]

Data networks developed as a result of business applications that were written for microcomputers. The microcomputers were not connected so there was no efficient way to share data among them. It was[U] not efficient[/U] or cost-effective for businesses [U]to use floppy disks to share data[/U]. Sneakernet created multiple copies of the data. Each time a file was modified it would have to be shared again with all other people who needed that file. If two people modified the file and then tried to share it, one of the sets of changes would be lost. Businesses needed a solution that would successfully address the following three problems:

How to avoid duplication of equipment and resources
How to communicate efficiently
How to set up and manage a network

Businesses realized that computer networking could increase productivity and save money. Networks were added and expanded almost as rapidly as new network technologies and products were introduced. The early development of networking was disorganized. However, a tremendous expansion occurred in the early 1980s.

In the mid-1980s, the network technologies that emerged were created with a variety of hardware and software implementations. Each company that created network hardware and software used its own company standards. These individual standards were developed because of competition with other companies. As a result, many of the network technologies were incompatible with each other. It became increasingly difficult for networks that used different specifications to communicate with each other. Network equipment often had to be replaced to implement new technologies.

One early solution was the creation of[U] local-area network [/U]([COLOR="Red"]LAN[/COLOR]) standards. LAN standards provided an open set of guidelines that companies used to create network hardware and software. As a result, the equipment from different companies became compatible. This allowed for stability in LAN implementations.

In a LAN system, each department of the company is a kind of electronic island. As the use of computers in businesses grew, LANs became insufficient.

A new technology was necessary to share information [U]efficiently [/U]and [U]quickly[/U] within a company and between businesses. The solution was the creation of [U]metropolitan-area networks [/U]([COLOR="red"]MANs[/COLOR]) and [U]wide-area networks [/U]([COLOR="red"]WANs[/COLOR]). Because WANs [U]could connect user networks over large geographic areas[/U], it was possible for businesses to communicate with each other across great distances.[/SIZE][/LEFT]

InnerPeace 01-03-2006 06:47 AM

Networking Terminology
 
[COLOR="Blue"][LEFT][SIZE="5"]Network history [/SIZE][/LEFT][/COLOR]

[LEFT][SIZE="4"]
[COLOR="Green"]This page presents a simplified view of how the Internet evolved. [/COLOR]

The history of computer networking is complex. It has involved many people from all over the world over the past 35 years. Presented here is a simplified view of how the Internet evolved. The processes of invention and commercialization are far more complicated, but it is helpful to look at the fundamental development.

[COLOR="Brown"]In the 1940s[/COLOR] computers were large electromechanical devices that were prone to failure.
[COLOR="Brown"]In 1947 [/COLOR]the invention of a semiconductor transistor opened up many possibilities for making smaller, more reliable computers.
[COLOR="Brown"]In the 1950s[/COLOR] large institutions began to use mainframe computers, which were run by punched card programs.
[COLOR="Brown"]In the late 1950s[/COLOR] the integrated circuit that combined several, and now millions, of transistors on one small piece of semiconductor was invented.
[COLOR="Brown"]In the 1960s[/COLOR] mainframes with terminals and integrated circuits were widely used.

[COLOR="Brown"]In the late 1960s and 1970s[/COLOR] smaller computers called [U]minicomputers [/U]were created. However, these minicomputers were still very large by modern standards.
[COLOR="Brown"] In 1977[/COLOR] the Apple Computer Company introduced the microcomputer, which was also known as the Mac.
[COLOR="Brown"]In 1981[/COLOR] [U]IBM introduced its first PC[/U]. The user-friendly Mac, the open-architecture IBM PC, and the further micro-miniaturization of integrated circuits led to widespread use of personal computers in homes and businesses.

[COLOR="Brown"]In the mid-1980s [/COLOR][U]PC users began to use modems to share files with other computers[/U]. This was referred to as point-to-point, or dial-up communication. This concept was expanded by the use of computers that were the central point of communication in a dial-up connection. These computers were called [U]bulletin boards[/U]. Users would connect to the bulletin boards, leave and pick up messages, as well as upload and download files. The drawback to this type of system was that there [U]was very little direct communication [/U]and then only with those who knew about the bulletin board. Another limitation was that the bulletin board computer [U]required one modem per connection[/U]. If five people connected simultaneously it would require five modems connected to five separate phone lines. As the number of people who wanted to use the system grew, the system was not able to handle the demand. For example, imagine if 500 people wanted to connect at the same time.

[COLOR="Brown"]From the 1960s to the 1990s [/COLOR]the U.S. Department of Defense ([COLOR="Red"]DoD[/COLOR]) [U]developed large, reliable, wide-area networks (WANs) for[U] military [/U]and scientific reasons[/U]. This technology was different from the point-to-point communication used in bulletin boards. [U]It allowed multiple computers to be connected together through many different paths[/U]. The network itself would determine how to move data from one computer to another. One connection could be used to reach many computers at the same time. [COLOR="Blue"]The WAN developed by the DoD eventually became the Internet[/COLOR].[/SIZE][/LEFT]

InnerPeace 01-03-2006 07:18 AM

Networking Terminology
 
[LEFT][SIZE="4"][COLOR="Blue"][B][SIZE="5"]Networking devices[/SIZE] [/B] [/COLOR]


[COLOR="Green"]This page will introduce some important networking devices.[/COLOR]

Equipment that connects directly to a network segment is referred to as a device. These devices are broken up into two classifications. [COLOR="DarkOrchid"]The first classification[/COLOR] [U]is end-user devices[/U]. End-user devices [COLOR="Blue"]include[/COLOR] [U]computers, printers, scanners, and other devices that provide services directly to the user[/U]. [COLOR="DarkOrchid"]The second classification is network devices[/COLOR]. Network devices [COLOR="Blue"]include[/COLOR] [U]all the devices [/U]that connect the end-user devices together to [U]allow them to communicate[/U].

End-user devices that provide users with a connection to the network are also referred to as hosts. [U]These devices allow users to share, create, and obtain information[/U]. The host devices can exist without a network, but without the network the host capabilities are greatly reduced. NICs are used to physically connect host devices to the network media. [U]They use this connection to send e-mails, print reports, scan pictures, or access databases[/U].

A NIC is a [U]printed circuit board [/U]that fits into the expansion slot of a bus on a computer motherboard. It can also be a peripheral device. NICs are sometimes called network adapters. Laptop or notebook computer NICs are usually the size of a PCMCIA card. Each NIC is [U]identified by[/U] a unique code called a Media Access Control ([COLOR="blue"]MAC[/COLOR]) address. This address is used to control data communication for the host on the network. More about the MAC address will be covered later. As the name implies, the NIC controls host access to the network.

There are no standardized symbols for end-user devices in the networking industry. They appear similar to the real devices to allow for quick recognition.

Network devices are used to extend cable connections, concentrate connections, convert data formats, and manage data transfers. Examples of devices that perform these functions are [COLOR="blue"]repeaters, hubs, bridges, switches, and routers[/COLOR]. All of the network devices mentioned here are covered in depth later in the course. For now, a brief overview of networking devices will be provided.

[COLOR="Red"]A repeater[/COLOR] is a network device [COLOR="blue"]used to regenerate a signal[/COLOR]. Repeaters regenerate analog or digital signals that are distorted by transmission loss due to attenuation. A repeater does [U]not make intelligent decision [/U]concerning [U]forwarding packets like a router[/U].

[COLOR="red"]Hubs[/COLOR] concentrate connections. In other words, they [U]take a group of hosts and allow the network to see them as a single unit[/U]. This is done passively, [U]without any other effect on the data transmission[/U]. Active hubs concentrate hosts and [U]also regenerate signals[/U].

[COLOR="red"]Bridges[/COLOR] [U]convert network data formats[/U] and perform basic data transmission management. Bridges provide connections between LANs. They also check data to [U]determine if it should cross the bridge[/U]. [U]This makes[/U] each part of [U]the network more efficient[/U].

[COLOR="red"]Workgroup switches[/COLOR] add more intelligence to data transfer management. They can determine if data should remain on a LAN and [U]transfer data only to the connection that needs it[/U]. [COLOR="RoyalBlue"]Another difference between a bridge and switch [/COLOR]is that a [U]switch does not convert data transmission formats[/U].

[COLOR="Red"]Routers[/COLOR] have all the capabilities listed above. [U]Routers can regenerate signals[/U], [U]concentrate multiple connections[/U], [U]convert data transmission formats[/U], and [U]manage data transfers[/U]. They can also connect to a WAN, which allows them to connect LANs that are separated by great distances. None of the other devices can provide this type of connection.



[/SIZE][/LEFT]

InnerPeace 01-03-2006 07:53 AM

Networking Terminology
 
[LEFT][SIZE="4"][COLOR="Blue"][SIZE="5"][B][FONT="Comic Sans MS"]Network topology [/FONT][/B][/SIZE][/COLOR]


[COLOR="Green"]This page will introduce you to the most common physical and logical network topologies.[/COLOR]

Network topology defines the structure of the network. One part of the topology definition is [COLOR="Blue"]the physical topology[/COLOR], which is the actual layout of [U]the wire or media[/U]. The other part is [COLOR="blue"]the logical topology[/COLOR], which defines [U]how the hosts access the media to send data[/U].
The physical topologies that are commonly used are as follows:

[CENTER][IMG]http://img69.imageshack.us/img69/2383/phys9sa.png[/IMG][/CENTER]

[COLOR="DarkOrchid"]A bus topology[/COLOR] uses a single backbone cable that is terminated at both ends. All the hosts connect directly to this backbone.
[COLOR="DarkOrchid"]A ring topology[/COLOR] connects one host to the next and the last host to the first. This creates a physical ring of cable.
[COLOR="DarkOrchid"]A star topology[/COLOR] connects all cables to a central point.
[COLOR="DarkOrchid"]An extended star topology[/COLOR] links individual stars together by connecting the hubs or switches.
[COLOR="DarkOrchid"]A hierarchical topology[/COLOR] is similar to an extended star. However, instead of linking the hubs or switches together, the system is linked to a computer that controls the traffic on the topology.
[COLOR="DarkOrchid"]A mesh topology[/COLOR] is implemented to provide as much protection as possible from interruption of service. For example, a nuclear power plant might use a mesh topology in the networked control systems. As seen in the graphic, each host has its own connections to all other hosts. Although the Internet has multiple paths to any one location, it does not adopt the full mesh topology.

The logical topology of a network determines how the hosts communicate across the medium.
The two most common types of logical topologies are [COLOR="DarkOrchid"]broadcast[/COLOR] and[COLOR="DarkOrchid"] token passing[/COLOR].

The use of a [COLOR="Blue"]broadcast topology[/COLOR] indicates that each host [U]sends its data to all other hosts on the network medium[/U]. There is no order that the stations must follow to use the network. It is first come, first serve. Ethernet works this way as will be explained later in the course.

The second logical topology is [COLOR="blue"]token passing[/COLOR]. In this type of topology, [U]an electronic token is passed sequentially to each host. When a host receives the token, that host can send data on the network. If the host has no data to send, it passes the token to the next host and the process repeats itself[/U]. [COLOR="Red"]Two examples of networks that use token passing [/COLOR]are [COLOR="blue"]Token Ring [/COLOR]and [COLOR="blue"]Fiber Distributed Data Interface (FDDI)[/COLOR]. A variation of Token Ring and FDDI is Arcnet. Arcnet is token passing on a bus topology.

[CENTER][IMG]http://img458.imageshack.us/img458/153/figure4vk.png[/IMG][/CENTER]

The diagram in Figure shows many different topologies connected by network devices. It shows a network of moderate complexity that is typical of a school or a small business. The diagram includes many symbols and networking concepts that will take time to learn.[/SIZE][/LEFT]

InnerPeace 01-03-2006 08:10 AM

Networking Terminology
 
[LEFT][SIZE="4"][SIZE="5"][COLOR="Blue"]Network protocols [/COLOR][/SIZE]

[COLOR="Green"]This page will explain what network protocols are and why they are important.[/COLOR]

Protocol suites are collections of protocols that enable network communication between hosts. A protocol is a formal de******ion of a set of rules and conventions that govern a particular aspect of how devices on a network communicate. Protocols determine the format, timing, sequencing, and error control in data communication. Without protocols, the computer cannot make or rebuild the stream of incoming bits from another computer into the original format.

Protocols control all aspects of data communication, which include the following:

How the physical network is built
How computers connect to the network
How the data is formatted for transmission
How that data is sent
How to deal with errors

These network rules are created and maintained by many different organizations and committees. Included in these groups are the Institute of Electrical and Electronic Engineers (IEEE), American National Standards Institute (ANSI), Telecommunications Industry Association (TIA), Electronic Industries Alliance (EIA) and the International Telecommunications Union (ITU), formerly known as the Comité Consultatif International Téléphonique et Télégraphique (CCITT).[/SIZE][/LEFT]

InnerPeace 01-03-2006 08:18 AM

Networking Terminology
 
[LEFT][SIZE="4"][COLOR="Blue"][SIZE="5"] Local-area networks (LANs)
[/SIZE][/COLOR]

[COLOR="Green"]This page will explain the features and benefits of LANs. [/COLOR]

LANs consist of the following components:

Computers
Network interface cards
Peripheral devices
Networking media
Network devices

LANs allow businesses to locally share computer files and printers efficiently and make internal communications possible. A good example of this technology is e-mail. LANs manage data, local communications, and computing equipment.

Some common LAN technologies include the following:

Ethernet
Token Ring
FDDI
[/SIZE][/LEFT]

smile 01-03-2006 09:24 AM

[B]بجد يا innerpeace456
معلومات جامدة[/B]

InnerPeace 04-03-2006 06:31 AM

Networking Terminology
 
[SIZE="4"]كويس يااسمايل ان الموضوع عجبك .. تابع بقى الباقى
___________________________[/SIZE]

[LEFT][SIZE="4"][COLOR="Blue"][B]Wide-area networks (WANs) [/B][/COLOR]


[COLOR="Green"]This page will explain the functions of a WAN. [/COLOR]

WANs interconnect LANs, which then provide access to computers or file servers in other locations. Because WANs [U]connect user networks over a large geographical area[/U], they make it possible for businesses to communicate across great distances. WANs allow computers, printers, and other devices on a LAN to be shared with distant locations. WANs provide instant communications across large geographic areas.

Collaboration software provides access to real-time information and resources and allows meetings to be held remotely. WANs have created a new class of workers called telecommuters. These people never have to leave their homes to go to work.

WANs are designed to do the following:

Operate over a large and geographically separated area
Allow users to have real-time communication capabilities with other users
Provide full-time remote resources connected to local services
Provide e-mail, Internet, file transfer, and e-commerce services

Some common WAN technologies include the following:

Modems
Integrated Services Digital Network (ISDN)
Digital subscriber line (DSL)
Frame Relay
T1, E1, T3, and E3
Synchronous Optical Network (SONET) [/SIZE][/LEFT]

InnerPeace 04-03-2006 06:36 AM

Networking Terminology
 
[SIZE="4"][LEFT]
[B][COLOR="Blue"]Metropolitan-area networks (MANs) [/COLOR][/B]


[COLOR="Green"]This page will explain how MANs are used.[/COLOR]

Wireless bridge technologies that send signals across public areas can also be used to create a MAN. A MAN usually consists of two or more LANs in a common geographic area. For example, a bank with multiple branches may utilize a MAN. Typically, a service provider is used to [U]connect two or more LAN [/U]sites using private communication lines or optical services. A MAN can also be created using wireless bridge technology by beaming signals across public areas.
[/LEFT][/SIZE]

InnerPeace 04-03-2006 06:48 AM

Networking Terminology
 
[LEFT][SIZE="4"][B][COLOR="Blue"]Storage-area networks (SANs) [/COLOR][/B]


[COLOR="Green"]This page will discuss the features of SANs.[/COLOR]

A storage-area network (SAN) is a dedicated, high-performance network used to[U] move data between servers and storage resources[/U]. Because it is a separate, dedicated network, it avoids any traffic conflict between clients and servers.
[CENTER][IMG]http://img137.imageshack.us/img137/2492/untitled1pc2.png[/IMG][/CENTER]

SAN technology allows high-speed server-to-storage, storage-to-storage, or server-to-server connectivity. This method uses a separate network infrastructure that relieves any problems associated with existing network connectivity.

SANs offer the following features:

[B]Performance [/B]– SANs allow concurrent access of disk or tape arrays by two or more servers at high speeds. This provides enhanced system performance.
[B]Availability[/B] – SANs have built-in disaster tolerance. Data can be duplicated on a SAN up to 10 km (6.2 miles) away.
[B]Scalability[/B] – A SAN can use a variety of technologies. This allows easy relocation of backup data, operations, file migration, and data replication between systems.
[/SIZE][/LEFT]


جميع الأوقات بتوقيت امريكا. الساعة الآن » 02:01 AM.

Powered by: vBulletin Version 3.8.6
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.

تـعـريب » منتدي الاقباط