Flylib.com

Books Software

 
 
 

Assessing Your Readiness for Exam 310-044


Assessing Your Readiness for Exam 310-044

In addition to the general exam-readiness information in the previous section, other resources are available to help you prepare for the exam. Two good sites are www.solariscentral.org and www.solarisguide.com. The tek-tips forum at www. tek-tips .com has a forum relating to Sun certification and contains other people's useful comments about the Sun certification exams. Also, it is well worth consulting the comp newsgroups ” comp.unix.solaris and comp.sys.sun.admin ”available via news services or via Google Groups. These are excellent places to ask questions about topics you are having trouble understanding and get good answers, or simply to observe the questions that others ask. The Sun Blueprints program at www.sun.com/solutions/blueprints provides many in-depth articles on various Solaris topics as well.

One last note : I can't stress enough the importance of hands-on experience in the context of exams. As you review the material for the exam, you'll realize that hands-on experience with Solaris 9 commands, tools, and utilities is invaluable.


Onward, Through the Fog!

After you've assessed your readiness, undertaken the right background studies, obtained the hands-on experience that will help you understand the products and technologies at work, and reviewed the many sources of information to help you prepare for the test, you'll be ready to take a round of practice tests. When your scores come back high enough to get you through the exam, you're ready to go for the real thing. The Introduction of this book includes information about obtaining vouchers and scheduling the exam. If you follow my assessment regime , you'll not only know what you need to study, but when you're ready to make a test date at Prometric. Good luck!


Chapter 1. Local Area Networks

Terms you'll need to understand:

  • Local area network

  • Network topology

  • Hubs

  • Switches

  • Bridges

  • Routers

  • Network media

  • CSMA/CD

  • Ethernet frames

  • Ethernet addresses

  • Collision rates

Concepts you'll need to master:

  • Describe the features and functions of LAN components .

  • Describe network topologies, media, and network devices.

  • Describe ethernet concepts and major ethernet elements.

  • Describe the CSMA/CD access method.

  • Be familiar with the components of an ethernet frame.

  • Troubleshoot ethernet interfaces using ifconfig, snoop, netstat , and ndd .

The first part of this chapter is a stepping stone to the rest of the book. It introduces some of the fundamental building blocks of a local area network (LAN) and the hardware used in creating one. The second part of this chapter concentrates on Ethernet, the most prevalent network protocol in use today, ending with sections on gathering network statistics and troubleshooting problems that might be encountered on an ethernet network.

graphics/alert_icon.gif

The exam often contains a few questions that require you to match a number of networking elements with their associated descriptions, so knowledge of the terms introduced here, and in the Glossary, is an easy way to gain an extra point, but you have to get them ALL right to get the point.



Network Topologies

The topology of a network refers to how the physical layout is organized ”that is, how the nodes on the network are physically wired together. Some topologies are cheaper to implement than others; some require more maintenance; and some have single points of failure, making them less reliable and robust. When designing a network, it is important to consider how big the network is going to be, the levels of traffic, and whether any failover requirements exist. Each of these aspects influences the decision of which topology to use. The following sections describe some of the more common topologies.

Bus Topology

In a bus topology, hosts are connected to a single cable ”also known as a backbone ”that runs through an area. Each end of the bus is terminated to avoid data signals being reflected back along the network. This type of configuration makes maintenance difficult because the network cabling must be disconnected to add a new connection. The bus itself is also a single point of failure ”a fault on the bus renders the whole network unusable ”but it is a cheap option and easy to install for smaller networks. The bus topology is normally used in broadcast networks, allowing only one host to transmit at a time. Figure 1.1 shows an example of a typical bus configuration.

Figure 1.1. A bus configuration.

graphics/01fig01.gif

Star Topology

The star topology is the most common topology, mainly because it is cheap to install and easy to maintain. The hosts are connected to a central hub , which enables new hosts to be added without the need to interrupt the network's functionality. The number of hosts, or nodes, that can be used in a star network is limited by the number of connections on the central hub, although multiple hubs can be connected together to form larger networks. As with the bus configuration, a single point of failure, the hub itself, does exist. Figure 1.2 shows an example of a simple star network.

Figure 1.2. A star configuration.

graphics/01fig02.gif

Ring Topology

The ring network is a configuration in which the hosts are connected in a loop. Each host is directly connected to its two adjacent hosts, one on either side. This topology offers slightly better resilience than bus or star topologies because a single failure results only in a degradation of the network; it takes two cable breaks, in separate segments, before any hosts become disconnected from the network. Figure 1.3 shows an example of a simple ring configuration.

Figure 1.3. A ring configuration.

graphics/01fig03.gif

Two rings can also be used to provide added resilience. The Fiber Distributed Data Interface (FDDI) is the most common example of this, in which the second ring continues to function if the primary ring fails.

Mixed Topologies

Networks commonly use more than one topology because it is more practical and cost effective; this is called a mixed topology. For example, a department might use a bus configuration as its main backbone but have multiple star networks connecting the hosts in each section. In some colleges and universities, dual-ring networks, such as FDDI, are used as the backbone. Figure 1.4 shows how a mixed configuration may be used.

Figure 1.4. An example of a mixed configuration.

graphics/01fig04.gif

Virtual LAN Topologies

Virtual local area networks (VLANs) have become more popular, but they require the use of an intelligent central switch or hub. VLANs are similar in functionality to having multiple star networks, but in this case, they all use the same physical switch as the central hub. A VLAN is created by assigning specific ports on the central hub to separate networks. The hosts on each VLAN communicate with each other as if they were on the same physical network segment. An advantage of the VLAN concept is that the network traffic on one VLAN is separate from the network traffic on another VLAN, making more efficient use of the available bandwidth. A further advantage is that hosts can be moved between VLANs without requiring any hardware configuration. Of course, the central switch, or hub, remains a single point of failure. Figure 1.5 demonstrates how an intelligent hub can be used to create two separate VLANs, (the hosts are shaded and labeled to show to which network they belong).

Figure 1.5. An example of a VLAN configuration.

graphics/01fig05.gif