Kamis, 01 Agustus 2013

DHCP Server

To administer a small network, providing a static ip very easy for network administrators. However, if the network has wide ranging possibilities for using the same ip will be large, causing conflict. On this basis, the use of DHCP (Dynamic Host Configuration Protocol) server is highly recommended.
The main function of this is to provide a DHCP server IP to the host or computer connected to the network automatically. This only applies if the computer is using IP settings with DHCP or in Windows to enable the option "Obtain IP Address Automatically". What if the computer still want to use a static IP? IP could thus not be given on the computer that will ask the DHCP Server IP or change the IP of a host that has been using the same IP with a static IP is used.
 If there is a DHCP server with the IP range 192.168.1.22 to 192.168.1.50 then any computer connected to the network and enable the use of DHCP, the DHCP server will assign IP addresses in the range above that is between 22-50, usually DHCP server assigns IP at the top of the range first. If in our example is a new one that uses DHCP then most likely get IP 192.168.1.50. If in the network there is a computer with Static IP and still within range of the IP DHCP Server DHCP Server will not use the IP to be given to any other DHCP users.
 What about Slackware 12.2 Linux itself? By default DHCP Server already installed on your Slackware machine, ie dhcp-3.0.6-i486-1.
smkn3tkj root @ server :/ # ls / var / log / packages / | grep dhcp
dhcp-3.0.6-i486-1
dhcpcd-2.0.8-i486-1
 You see that on the machines we have installed the package dhcp-3.0.6-i486-1. There is one file that we will edit as needed in building a DHCP Server, namely:
/ Etc / dhcpd.conf
If we look at the contents of the file with the command glittering cat / etc / dhcpd.conf
# Dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd.conf')
#
dhcpd.conf file is still empty means now we will take dhcpd contained on / usr/doc/dhcp-3.0.6/examples/dhcpd.conf through ways:
smkn3tkj root @ server :/ # cp / usr/doc/dhcp-3.0.6/examples/dhcpd.conf / etc
now you have to edit the dhcpd.conf file in the directory / etc / dhcpd.conf
Penegditannya way like this:
smkn3tkj root @ server :/ # mcedit / etc / dhcpd.conf
Here's the parts you want to edit:
# Option definitions common to all supported networks ...
line: 1: option domain-name "example.org";
line: 2: option domain-name-servers ns1.example.org, ns2.example.org;
 The first two lines are setting the gateway, line 1 is the domain-search, specify the domain name you read back on the previous tutorial here for setting up DNS. While line 2 is namaservernya. Please feel free to edit as needed. This is an example of DHCP that have been made:
option domain-name "TKJ-smk3bgr.net";
option domain-name-servers 192.168.1.21;
 The second line should be filled with the IP address or a valid nameserver, or DHCP Client we can not access the public domain. Since in this example already exists in the DNS Server IP Address 192.168.1.21 then it will use.
We are also required to add the following line according to the rules of the Internet Systems Consortium. If you do not believe put a # to make comments and guaranteed dhcp server will not start.
ddns-update-style ad-hoc;
 Option to specify the time of the DHCP Server to IP administration and re-checking of Host is still active or not.
default-lease-time 600;
max-lease-time 7200;
Next is the determination of the range of IP addresses or subnets known as:
This example from dhcpd.conf default
# This is a very basic subnet declaration.
subnet 10.254.239.0 netmask 255.255.255.224 {
range 10.254.239.10 10.254.239.20;
option routers-rtr-1.example.org 239-0, 239-0-rtr-2.example.org;
}
edit as below:
# This is a very basic subnet declaration.
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.22 192.168.1.50;
option routers 192.168.1.21;
}
 On the subnet configuration above, we make the DHCP Server on the network 192.168.1.0 with netmask 255.255.255.0 with DHCP IP range is 192.168.1.22 - up to 192.168.1.50 In this section there is also a significant option routers ip gateway from DHCP IP. Option routers can also be placed outside (Global) so by default will put option routers on the subnet unless explicitly stated.
Here is the complete config of dhpcd.conf that have been made:
option domain-name "TKJ-smk3bgr.net";
option domain-name-servers 192.168.1.21;
ddns-update-style ad-hoc;
default-lease-time 600;
max-lease-time 7200;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.22 192.168.1.50;
option routers 192.168.1.21;
}
The next course dhpcd activate the server:
Command to enable dhcp on your Slackware system:
smkn3tkj root @ server :/ # / usr / sbin / dhcpd
This command to enable dhcp on reboot when system slackware.
echo "/ usr / sbin / dhpcd" >> / etc / rc.d / rc.local

READ MORE - DHCP Server
READ MORE - DHCP Server

A modem connects



A modem connects
A modem connects your computer to your Internet service provider or ISP. The connection is established through your phone lines. You must have seen a line taken from your phone going into the modem. It simply converts the signals coming from your phone into signals that can be understood by your computer. A router on the other hand assists the connection between computer networks. This device does not do any conversions. It 'routes' signals to a particular network or a computer in the network. Therefore it is called a router. Also read about how does a wireless router work.

Type of Connection
As the router and the modem are establishing a connection between different things, the type of connection they use is also different. The modem connects to the computer (through a router or directly) using a type of connection called RJ45. But it connects to the telephone line through a connection known as RJ11. RJ stands for 'Registered Jack' and its different types are used for different types of network interfaces. The Router on the other hand utilizes only the RJ45 type of connection. This is because it does not have to interact with telephone lines. It deals with computer signals only.

Function
The router vs modem differ in their functionality also. Rather that is the most important difference between them. A modem receives signals from a telephone line which carries analog signals. While delivering this signal to a computer, the modem converts the signal to digital signal. Because a computer can understand only digital signals. This process is known as modulation and demodulation of signals and thus it is called MoDem. Read what does modem stand for? These days cable modems have arrived which work differently. Read what is cable modem. They receive signals from the cables that deliver various channels to your computer. The basic working of the modem still remains same.

The function of a router is to just pass on signals coming from a modem to the right computer network or computer. That is, it just routes data so it is called a router. The router does not perform any conversions but it does filter the data while passing it on. Security measures like firewalls are implemented in the router. Though necessary, a router is not mandatory for establishing an Internet connection. Whereas, a modem is mandatory for an Internet connection. Although, a modem only converts and sends data, so it cannot be used to add security to your network or computer. Also, if you want to use wireless Internet, you have to use a router.

So this was the basic comparison of router vs modem. But you should note that this was only a broad overview and that the topic runs deeper still. There is another comparison, cable modem vs wireless router that talks about a little more details, and you can go through it for more information.
READ MORE - A modem connects
READ MORE - A modem connects

WEP key

The first and simplest thing you can do is check your wireless network connection and see if it is safe. When you install your router, you are given the option key setting wireless encryption protocol (WEP). Basically this is a password-protected method to log on to your own wireless network. If you do not have it, you operate an open network. That means anyone within range can use your wireless for free. While this is not hacking, but it is debatable whether this is actually a steal. In any case, if you do not have a WEP key, then you are vulnerable to illegal access of WiFi network connection.

 Even if you have a WEP key, it does not mean that your neighbors can not pass it. To determine whether someone is logged into your wireless network, you can do so by checking the logs your wireless network. To do so, click the Start Menu in Microsoft Windows, then double-click My Network Places. Next, double-click View Entire Network. If there are more devices connected than you have or allowed on your network, then it seems there is a WiFi thief.

 A similar method for determining the status of WiFi user list is to check your router's DHCP client table. Just as I view the network, the DHCP client table would list the machines on your network connection. If the number exceeds what you set up, it is possible someone is stealing your WiFi.
READ MORE - WEP key
READ MORE - WEP key

DHCP works

TCP / IP (Transmission Control Protocol / Internet Protocol) is a group of protocols that govern data communications computers on the Internet. Computers that are connected to the Internet to communicate with TCP / IP, because it uses the same language different types of computers and operating systems is not a problem. PC computer with Windows operating system can communicate with Macintosh computers or the Sun SPARC running Solaris. So, if a computer using TCP / IP and is connected directly to the internet, the computer can be connected to a computer anywhere in the world that is also connected to the internet The characteristics of computer networks:
1. share hardware (hardware).
2. sharing software (software).
3. shared communication channels (internet).
4. share data easily.
5. facilitate communication among network users. Local Area Network (LAN) is the number of computers that are linked together in a specific area that is not so broad, as in an office or building.
Broadly speaking there are two types of network or LAN, the network Peer to Peer and Client-Server network. In the peer to peer network, each computer connected to the network can act both as a workstation or server. While on the Client-Server network, only one computer that serves as a server and other computers acting as workstations. Between the two types of networks each have advantages and disadvantages, where each will be explained. LAN is composed of several basic elements that include hardware and software components, namely: Physical Components Personal Computer (PC), Network Interface Card (NIC), cable, network topology Software Components Network Operating System, Network Adapter Driver, Network Protocols. Personal Computer (PC) Type used in personal computers in the network will largely determine the performance of the network. Computers with high performance will be able to send and access data in the network quickly. In the type of Client-Server network, server computer that functioned as an absolute must have higher performance than other komputerkomputer as his workstation, because the server will be responsible for providing facilities and manage the network operations. Network Interface Card (NIC) Based on the type of bus, there are several types of network interface card (nic) or a network card, the ISA and PCI. Currently there are many types of network card is used, the PCI Type Ethernet network card Type of Wiring There are several types of wiring used and can be used to apply the Network, namely: Thin Ethernet (Thinnet) Thin Ethernet or Thinnet has advantages in terms of cost is relatively cheaper compared to other types of cabling, and installation of components easier. Coaxial/RG-58 thin cable length between 0.5 - 185 m and a maximum of 30 computers connected. Thick Ethernet (Thicknet) With thick Ethernet or Thicknet, the number of computers that can be connected in the network will be more distance between the computer and can be enlarged, but the cost of procurement is more expensive wiring and installation is relatively more difficult than Thinnet. At Thicknet transceiver used to connect each computer to the network system and connectors used are type DIX connector.
The maximum transceiver cable length of 50 m, a maximum cable length of 500 m Thick Ethernet with a maximum of 100 transceiver connected. Twisted Pair Ethernet Twisted Pair cable is divided into two types: shielded and unshielded. Shielded cable is a type that has a sheath wrapping while unshielded sheath has no wrapper. For this type of cable connection using RJ-11 or RJ-45. On twisted pair (10 BaseT) networks, computers arranged in a star pattern. Each PC has a single twisted pair cable that runs to a HUB. Twisted pair is generally more reliable (reliable) than thin coax for HUB has the capability of correcting data errors and increase the speed of transmission. Currently there are several different grades, or categories of twisted pair cable. Category 5 is the most reliable and have high compatibility, and is highly recommended. Good runs at 10Mbps and Fast Ethernet (100Mbps). Category 5 cable can be made straight-through or crossed. Straight-through cable is used to connect computers to the HUB. Crossed cables are used to connect the HUB to HUB and Broadband Modem directly to a PC (without HUB). The maximum cable length Twisted-Pair cable is 100 m. Fiber Optic A network using Fiber Optic (FO) are usually large companies, because of the price and installation process more difficult. However, using the FO network in terms of reliability and speed of doubt. Speed ​​data transmission by more than 100Mbps FO media and influence-free environment. TCP / IP Because an important role in the Windows operating system as well as TCP / IP is the protocol of choice (the default) on Windows. TCP is the transport layer of the OSI model (Open Systems Interconnection), while IP is the Network layer of the OSI mode IP Address IP address is the address given on computer networks and network devices using TCP / IP.
IP address consists of 32-bit binary number that can be written as four decimal digit groups separated by dots such as 192.168.0.1. Network ID Host ID IP address consists of two parts: network ID and a host ID, which determine the network ID address of the computer network, while the host ID determines host addresses (computers, routers, switches).
Therefore the IP address of the host to provide a complete address and the addresses in the network where the host is located. Classes of IP Address For ease of use, depending on the needs of the user, the IP address is divided into three classes as shown in Table 1.2. Network ID Host ID Class Default Subnet Mask A xxx.0.0.1 s / d xxx.255.255.254
- Defaul subnet mask: 255.0.0.0 B xxx.xxx.0.1 s / d xxx.xxx.255.254
- Defaul subnet mask: 255.255.0.0 C xxx.xxx.xxx.1 s / d xxx.xxx.xxx.254
- Defaul subnet mask: 255.255.255.0 Class A IP address is given to the network with a very large number of hosts. 1.xxx.xxx.xxx IP range.
- 126.xxx.xxx.xxx, there were 16,777,214 (16 million) on each IP address class A. Class A IP address is given to the network with a very large number of hosts. A class on the IP address, network ID is the 8-bit first, while the 24-bit host ID is next. Thus, how to read a class A IP address, for example 113.46.5.6 is: Network ID = 113 Host ID = 46.5.6 So that means the host IP address on the network number number 113 46.5.6. Class B IP address is usually allocated for medium-sized and large networks. In the class B IP address, network ID is the first 16 bits, while the host ID is 16 bits the next. Thus, how to read a class B IP address, such as 132.92.121.1 Network ID = 132.92 Host ID = 121.1 So that means the IP address on the host number 121.1 on 132.92 network number. with a length of 16 bits of host ID, network with class B IP address can accommodate about 65000 hosts. IP Range 128.0.xxx.xxx - 191.255.xxx.xxx Class C IP address originally used for small networks (LAN). Host ID is the last 8 bits. With this configuration, can be formed about 2 million networks with each network has 256 IP addresses. IP Range 192.0.0.xxx - 223.255.255.x. IP address allocation is basically the process of selecting the network id and the host ID is right for a network. Whether or not this exact configuration depends on the goals to be achieved, which allocates IP addresses as efficiently as possible. Domain Name System (DNS) Domain Name System (DNS) is a system that allows the host name of a computer on a network or the Internet are translated into IP addresses. In giving a name, DNS uses a hierarchy architecture.
1. Root-level domains: a top rate is displayed as a period (.).
2. Top level domain: organization category or country code eg. Com to be used by the company;. Edu for use by the college;. Gov for use by government agencies. In addition to distinguishing the use of the name by a country to another country to use such marks. Id to Indonesia or. Au for Australia.
3. Second level domains: a name for the organization or company, for example: microsoft.com; yahoo.com, and others. DHCP (Dynamic Host Configuration Protocol) IP address and subnet mask can be assigned automatically using Dynamic Host Configuration Protocol or entered manually. DHCP is used to assign IP addresses automatically on computers that use TCP / IP. DHCP works with the client-server relationship, where the DHCP server provides an IP group address that can be assigned to a DHCP client. In providing this IP address, DHCP IP address only lend it. So this last provision IP addresses dynamically. Network topology is the physical description of the pattern of relationships between network components, which include servers, workstations, hubs and pengkabelannnya. There are three kinds of commonly used network topology, ie Bus, Star and Ring. Bus Topology In the bus topology is used a single cable or cable in the center where all workstations and servers are connected. Excellence is a bus topology network expansion or addition of new workstations can be done easily without disturbing other workstations. The drawback of this topology is that if there is interference in the cable along the center of the whole network will be impaired.
1. Star Topology In the star topology, each workstation is connected directly to a server or hub. Advantage of this topology is that Star type with a separate cable for each workstation to the server, then the bandwidth or communication bandwidth in the cable will be more wide that will improve the overall network performance. And, if there is an interruption in the cable path interference will only occur within the communication between the workstation is concerned with the server, the network as a whole is not impaired. The weakness of the star topology is the need for larger cable than other topologies.
2. Ring Topology In the ring topology all workstations and servers are connected to form a circle or ring pattern. Each workstation or server will receive and pass information from one computer to another, if the addresses match then the information is received and when the information is not to be missed. The drawback of this topology is each node in the network will always follow and manage the information that is passed in the network, so that if there is interference in a node then the entire network will be disrupted. Ring topology excellence is not the collision or the collision of data transmission such as the bus topology, since only one node can transmit data at a time. Network Adapter Card (LAN Card) Each network card will have a driver or program that serves to activate and configure the network adapter is adapted to the environment in which the network card is installed so that it can be used to perform data communication. Network Operating Systems Required to manage a network of any network operating system. Network operating systems can be divided into two types based jaringannnya, the client-server operating systems and network operating systems peer to peer.
1. Client-Server Network Servers are computers that provide facilities for other computers on the network and client computers that are receiving or using the facilities provided by the server. Dijaringan Server client-server type referred to as pure Dedicated Server acts as a server that provides the facility to the workstation and the server can not act as a workstation. Excellence Higher access speeds due to the provision of network facilities and management is done exclusively by a single computer (server) that is not burdened with other tasks as workstations. Security system and network administration is better, because there is a user who served as a network administrator, who manages administration and network security systems. Better data backup system, because the client-server network backup is done centrally on the server, which will backup all the data used in the network. Weakness
1. Operational costs are relatively more expensive. 2. It takes a special computer-enabled one more to be assigned as a server. 3. Survival is highly dependent on the network server. When the server to crash the whole network will be disrupted.
 
2.1. Setting Local Computer Networks (LAN - Local Area Network) using Windows XP The procedure is performed to configure the Network Adapter Card (can be seen in the picture as above).
1. Click Start à Settings à Control Panel to exit the Control Panel dialog box (like the one drawn below)
2. Double-Click the Network Connection icon to exit the Network Connection dialog box
3. Double-click Local Area Connection icon to exit the dialog box Local Area Connection Status
4. Click to exit the Properties dialog box Local Area Connection Properties
5. Double-Click Internet Protocol (TCP / IP) in the Local Area Connection dialog box to exit the Properties dialog box recently: Internet Protocol (TCP / IP) Protocol Enter the IP address data as shown above. Data IP Address every UAD will be different and unique (not to be equal between the AUD Campus Campus III with other UAD). The IP data, will be provided during the installation of Broadband is complete (when network activation) IP data is most needed by each PC that will be set in each remote UAD is as follows: 
1. À Default Gateway IP Address from the Broadband modem. Moment came after activation.
2. IP Address IP Address à this is a class with a Broadband Modem IP (IP Default Gateway) later.
3. Subnet Mask à Data Block IP to be given, it must ingclude-right-clicking the data the Subnet Mask.
4. After the data the TCP / IP is entered, click OK to close the dialog box Internet Connection (TCP / IP) Properties
5. click OK to close the dialog box "Local Area Connection Properties"
6. Click Star à Run à RUN to exit the dialog box, and then type CMD to exit the dialog box a new "command"
7. In the dialog box "Command" earlier, type: ipconfig If the computer has not been connected Ethernet from the LAN, it will come out the result as shown below.

7.1. If the PING test is done when the conditions have not been connected to the LAN Computer, will get the results as shown below.
7.2. Once the computer is connected to LAN, type IPCONFIG / ALL to see the IP address attached to the computer user. The result will be as shown below. If the ping test results obtained (Request timed out), might be a problem in the local network. Problem could there be of the following: - Connector cable network (wired LAN) installed less tight. Tighten à wiring connections to the LAN port and the Ethernet Hub to the LAN PC Card - Wired LAN is not good (no pin-pin connection cable that broke in the middle) Replace with another great LAN cable - Port Ethernet Hub which is not good (loose or bad contact) à Try moving the port If the ping test results obtained as shown above (Reply from xxxx), we can be sure that the network is operating normally. Every user on the remote network UAD, expected at least, can do action as above. UAD is the target user in ensuring local network connected to the LAN IP of Ethernet Broadband Modem Gateway is a network of leading UAD UAD Center Network Server and Internet. If a PC user has to perform ping test as above, and get results Reply from xxxx à (Ip modem), then surely the LAN network in the UAD no problem. After making sure in the LAN network is not problematic, in UAD user is directed to the TEST PING IP Address Server Center. How to perform ping test is the same as the ping test IP Modem on a local network. The difference is only in the IP ADDRESS that will ping the IP address entered in the computer's central office, or the IP address on the Internet. Furthermore dilakuka test application - Internet applications.
READ MORE - DHCP works
READ MORE - DHCP works

Senin, 01 Juli 2013

2ND Generation Robot

The 2ND Generation Robot for Compounding Non-Hazardous IV Preparations, represents a revolutionary approach in the quest for safe, accurate, efficient, cost effective, and ready-to-administer IV Admixtures. Constructed around a scalable, distributed, and fail-safe architecture, i.v.STATION® offers unprecedented final container flexibility, life-critical patient safety, and robotic precision and performance. i.v.STATION® may be deployed in a variety of locations, including central and satellite pharmacies and direct patient care areas, due to its self-contained form, ISO Class 5 environment, and small “foot print”. i.v.STATION® is an automated robotic system designed for the preparation of injectable drugs within an ISO-5 air-controlled environment. The automated functions include the following: + Automatic dosing of medications from their commercial containers (vials only, ampoules are not supported); + Automatic reconstitution of powder drugs with appropriate diluents; + Identification of final containers (syringes, IV bags) with Bar-Code labels; + Handling of the preparation cycle within a ISO 14644-1 Class 5 air quality environment. + Overnight sterility control by UV-C lamps; + Controlled access with real-time identification of authorized users by multiple ID / password credentials (optional support of common readers such as biometric face recognition, magnetic or RFID badge).
READ MORE - 2ND Generation Robot
READ MORE - 2ND Generation Robot

Kamis, 25 Oktober 2012

Cabling type Lan


Cabling type Lan
Several physical data-transmission media are available to connect together the various devices on a network. One possibility is to use cables. There are many types of cables, but the most common are:

Coaxial cable
Double twisted pair
Optical fibre
Coaxial cable
Coaxial cable has long been the preferred form of cabling, for the simple reason that it is inexpensive and easily handled (weight, flexibility, ...).

A coaxial cable is made of up a central copper wire (called a core) surrounded by an insulator, and then a braided metal shield.


The jacket protects the cable from the external environment. It is usually made of rubber (or sometimes Polyvinyl Chloride (PVC) or Teflon).
The shield (metal envelope) surrounding the cables protects the data transmitted on the medium from interference (also called noise) that could corrupt the data.
The insulator surrounding the central core is made of a dielectric material that prevents any contact with the shield that could cause electrical interactions (short circuit).
The core, which actually transports the data, generally consists of a single copper strand or of several braided strands.
Thanks to its shield, coaxial cable can be used over long distances at high speed (unlike twisted pair cable), however it is usually used for basic installations.

Note that there are also coaxial cables that have a double shield (one insulating layer, one shield layer) and coaxial cables with four shields (two insulating layers, two shield layers).

Normally, two types of coaxial cable are used:

10Base2 - thin coaxial cable (called Thinnet or CheaperNet) is a thin cable (6 mm in diameter), that is white (or grayish) by convention. It is very flexible and can be used in most networks by connecting it directly to the network card. It is able to transport a signal up to around 185 metres without line loss.
It is part of the RG-58 family whose impedance (resistance) is 50 ohms. The different types of thin coaxial cables are differentiated by the central part of the cable (core).
Cable Description
RG-58 / U Central core consisting of a single copper strand
RG-58 A/U Braided
RG-58 C/U Military version of RG-58 A/U
RG-59 Wide band transmission (cable television)
RG-6 Thicker diameter, recommended for higher frequencies than RG-59
RG-62 Arcnet Network



10Base5 - thick coaxial cable (Thicknet or Thick Ethernet and also called Yellow Cable, because of its yellow colour - by convention) is a shielded cable with a thicker diameter (12 mm) and 50 ohm impedance. It was used for a long time in Ethernet networks, which is why it is also known as "Standard Ethernet Cable". Given that it has a larger-diameter core, it is able to carry signals over long distances: up to 500 meters without line loss (and without signal reamplification). It has a bandwidth of 10 Mbps and is very often used as a backbone to connect networks whose computers are connected with Thinnet. However, because of its diameter, it is less flexible than Thinnet.
Transceiver: the connection between Thinnet and Thicknet
Thinnet and Thicknet are connected using a transceiver. It is equipped with a so-called "vampire" plug that makes the real physical connection to the central part of the Thinnet by piercing the insulating envelope. The transceiver cable (drop cable) connects to an AUI (Attachment Unit Interface) connector, also called a DIX (Digital Intel Xerox) connector or a DB 15 (SUB-D 15) connector.


Coaxial cable connectors
Thinnet and Thicknet both use BNC (Bayonet-Neill-Concelman or British Naval Connector) connectors to hook up the cables to computers.
The following connectors are in the BNC family:

BNC cable connector: this is soldered or crimped to the end of the cable.
BNC T-connector: this connects the computer's network card to the network cable.
BNC Extender: this joins two coaxial cable segments to form a longer one.
BNC terminator: this is placed at each end of a cable in a Bus network to absorb interference signals. It is connected to earth. A bus network cannot function without them. It would stop working.



Twisted pair cabling
In its simplest form, twisted-pair cable consists of two copper strands woven into a braid and covered with insulation.

Two types of twisted pair cable are generally recognized:

Shielded Twisted Pair (STP);
Unshielded Twisted-Pair (UTP ).
A cable is often made of several twisted pairs grouped together inside a protective jacket. The twisting eliminates noise (electrical interference) due to adjacent pairs or other sources (motors, relays, transformers).

Twisted pair is therefore suitable for a local network with few nodes, a limited budget and simple connectivity. However, over long distances at high data rates it does not guarantee data integrity (i.e. loss-less data transmission).

Unshielded Twisted Pair (UTP)
UTP cable complies with the 10BaseT specification. This is the most commonly used twisted pair type and the most widely used on local networks. Here are some of its characteristics:

Maximum segment length: 100 metres
Composition: 2 copper wires covered with insulation
UTP Standards: determine the number of twists per foot (33 cm) of cable depending on the intended use
UTP: collected in the EIA/TIA (Electronic Industries Association / Telecommunication Industries Association) Commercial Building Wiring Standard 568. The EIA/TIA 568 standard used UTP to create standards applicable to all sorts of spaces and cabling situations, thereby guaranteeing the public homogeneous products. These standards include five categories of UTP cables:
Category 1: Traditional telephone cable (voice but no data transmission)
Category 2: Data transmission up to a maximum of 4 Mbit/s (RNIS). This type of cable contains 4 twisted pairs
Category 3: 10 Mbit/s maximum. This type of cable contains 4 twisted pairs and 3 twists per foot
Category 4: 16 Mbit/s maximum. This type of cable contains 4 copper twisted pairs
Category 5: 100 Mbit/s maximum. This type of cable contains 4 copper twisted pairs
Category 5e: 1000 Mbit/s maximum. This type of cable contains 4 copper twisted pairs
Most telephone installations use UTP cable. Many buildings are pre-wired for this type of installation (often in sufficient number to satisfy future requirements). If the pre-installed twisted pair is of good quality, it can be used to transfer data in a computer network. Attention must be paid, however, to the number of twists and other electrical characteristics required for quality data transmission.

UTP's major problem is that it is particularly susceptible to interference (signals from one line mixing with those of another line). The only solution to this is shielding.

Shielded Twisted Pair (STP)
STP (Shielded Twisted Pair) cable uses a copper jacket that is of better quality and more protective that the jacket used for UTP cable. It contains a protective envelope between the pairs and around the pairs. In an STP cable, the copper wires of one pair are themselves twisted, which provides STP cable with excellent shielding, (in other words, better protection against interference). It also allows faster transmission over a longer distance.

Twisted pair connectors
Twisted pair cable is connected using an RJ-45 connector. This connector is similar to the RJ-11 used in telephony, but differs on a few points: RJ-45 is slightly larger and cannot be inserted into an RJ-11 jack. In addition, the RJ-45 has eight pins while the RJ-11 has no more than six, usually only four.

Fibre optics
Optical fibre is a cable with numerous advantages:

Light-weight
Immune to noise
Low attenuation
Tolerates data rates on the order of 100 Mbps
Bandwidth from tens of megahertz to several gigahertz (monomode fibre)
Fibre optic cabling is particularly suited to links between distributors (central link between several buildings, known as backbone) as it allows connections over long distances (from several kilometres to 60 km in the case of single-mode fibre) without requiring earthing. Furthermore, this type of cable is very secure as it is extremely difficult to tap in to such a cable.

However, despite its mechanical flexibility, this cable type is not suitable for local network connections as it is difficult to install and is very expensive. For this reason, twisted pair or coaxial cable are preferred for short links.


READ MORE - Cabling type Lan
READ MORE - Cabling type Lan

Client computer


The computer network is a system that consists of computers and other network devices are connected to each other, working together to achieve a goal. Network devices is critical to the ongoing relationship or communication between computers.

Information moved from computer to computer using a network rather than through human intermediaries. So make information exchange easier and faster.

Most basic network has two computers that communicate with each other by cable medium or any other medium. When your computer is connected to another computer, you can move information quickly and efficiently.

In the book "Networking Complete" explained that a bunch of computers and other equipment are connected together is called network, while the concept of the connected computer and share resources (resources) is called networking.

Network Building Blocks
All of the network, be it large or small, require specialized hardware network. For small networks, the hardware may consist of nothing more than a network interface card (NIC) on each computer, cable for each computer and network switch where all the computers are connected. Large networks may be artifacts of additional components such as a router or repeater.

Small or large, all networks are built from the following basic building blocks:

Client computer
Computers are used by end users to access existing resources dijaringan. Client computer is sometimes designated as a workstation.

Computer server
The computer that provides resources used to be together, such as disk storage and printers, as well as network services, such as e-mail and Internet access. Server computers running the operating system in particular specialized tissues such as Windows Server 2003, NetWare, or Linux, as well as special software to provide network services. For example, the server may be running Microsoft Exchange to provide e-mail to the network, or run the Apache Web Server so that computers can serve Web pages.

Network interface card (NIC)
Network interface card installed in the computer allows computers to communicate over a network. Almost every NIC implements networking standard called Ethernet. Each client computer and the server must
has a network interface card (or built-in network port) if you want to be part of the network.

Cable
Computers in a network are usually physically connected to each other by using a cable. Although there are some popular types of cables, wires commonly used today is a twisted pair or also called 10BaseT. Other cable types are also commonly used is coaxial or also called 10Base2. For high-speed network connection, sometimes used fiber-optic cables. In most cases, cable laid through the wall and collected diruangan called central wiring closet. But for smaller networks, cable is usually just laid on the floor.

Switch
Cable networks are usually not connected directly to the computer. Instead, each computer is connected by cable to a device called a switch. Switch, instead, connect to the network. Each switch contains multiple ports, typically 8 or 16. Thus we can use
8 port switch to connect eight computers.

Switches can be connected to each other to build a larger network. Old network might still exist that use a tool called a hub than a switch. Hub provides the same function as a switch but not seefesien switch.

Wireless networks
On the wireless computer network to communicate with other computers via radio signals. In wireless networks, radio transmitter and a radio receiver replacing the cable. The main advantage is the flexibility of the wireless network. With a wireless network, we do not need to pull the wires through the walls or the ceiling, and a client computer can be located anywhere as long as the broadcast network distance. The main disadvantage of the wireless network is less secure than wired network.

Software Network
Despite the critical network hardware, in fact actually running the network is the software. Many software must be set up according to the order for the network to work. Computer servers in particular uses a special operating system network (network operating system or NOS) to function efficiently, and the client computer requires a properly configured network settings in order to access the network.

The purpose and benefits of building a computer network
In building a computer network must have a purpose and benefits that are very helpful to us as follows:

Sharing resources
We can divide the existing resources in the sense that it can be used together as the program, equipment, or other peripherals that enable every person who is on a computer network without having to be affected by the location.

Media communication
May allow for communication between network users, both for teleconferencing, instant messaging, chat, send electronic mail (e-mail) or send other important information.

Data Integration
Can prevent reliance on a central computer, each process data should not be done on one computer but can be distributed to other places or in other words can be done by the other computers in the
tissue.

Security of data
Computer network system can provide protection against data through setting user permissions and passwords, as well as other protection techniques.

Web Browsing
To access information on the network, such as web browsing. Almost everyone who reads this article may never use a web browser (such as Internet Explorer, Mozilla Firefox, Netscape, Opera and others). The web browser enables us to see the information in a web server somewhere on the Internet.

Development and maintenance easy and cost-saving.
For example, a company can save on equipment that must be used.

Network-Based Application
Network is used to provide network services for network users. Applications available networks in general, ie file services, print services, web services, e-mail, file transfer service.

File Service
The computer where the file is stored is called a file server. The other computer (the access) is called the client, and that can be done is to read and write to these files, without the need to create a local copy of the file on the disk drive client. The service is usually transparent to the end user.

Print Service
Printers are connected to a computer called a print server. Client computer can send a file to the print server, which then prints the file to the printer. This server is usually transparent to the user.

Web Service
The server stores a variety of information, including text, graphics, animations, images, video, and audio. End user uses a web browser to request information from a server. The server returns information displayed by the web browser.

E-mail
End users create e-mail using the e-mail client and send e-mails to a particular person. E-mail server to help the process of sending e-mail.

File Transfer Service
Files are also stored on the server. This server allows a computer (client) to copy the files from the server to their local disk drive and replace the contents of the file on the file server with the files on the local disk drive client.

Classification of computer networks based on area
Computer networks can be classified based on the size of the network area LAN, MAN, WAN.

LAN (Local Area Networking)
Local Area Network is a network of personal property in a single location, usually on one floor of a building, campus, or all the computers in an enterprise. The magnitude of the coverage area of ​​a LAN network can be several kilometers.

MAN (Metropolitant Area Networking)
Metropolitan Area Network is basically a larger version of LAN and generally using the same technology. And coverage may be a group of adjacent branches.

WAN (Wide Area Networking)
Wide Area Network to reach a large geographical area, usually a country or continent.

Computer Networks Based on Role (function)
Based on the role then there are three types of computer networks, the client-server (sometimes also called server-based), peer-to-peer, hybrid network:

Client-Server
That computer networks where the network is there a dedicated computer as a server. The server has a responsibility to provide a service / services provided to other computers.

Common services provided by servers typically provide services such as file services, print services, web services, e-mail, file transfer service. Where will the computer (client) can access the services provided by the server.

Peer-to-peer
Is a network of computers where each computer can be a server and a client simultaneously. For example, the file sharing between computers on the network Windows Network Neighbourhood there are 5 computers (we named A, B, C, D and E) are granted access to the files they have. At one point A to access the file share of B named data_nilai.xls filesoal_uas.doc and also gives access to C. When accessing a file from B then A serves as a client and as a give file access to C then A is acting as a server. Both functions were performed by the same A network like this so called peer to peer.

Hybrid Network
Most of the network is actually in fact a hybrid network. In this network generally have active domains and workgroups. Hybrid network is a network-based client-server which in addition to the network servers provide resources most needed by the user, but the user is still
can access the resources provided by other users (peer-to-peer) in a workgroup.

Network topology
Based on the network topology, computer networks can be distinguished:

Bus Topology
Star Topology
Topology Ring
Mesh Topology (Random)
Topology Tree (Hirarkies)
Linear Topology
READ MORE - Client computer
READ MORE - Client computer
.::BY JUMBHO MY AT HOME IN THE JEPARA CITY OF BEAUTIFUL::.