Featured Posts

CCIE-Journals

CCIE-Journals
From Student to Engineer,a journey of discovery.

IP Connectivity - Prefix





In the field of networking, a prefix refers to the portion of an IP address that identifies the network segment to which the address belongs. A prefix is a sequence of bits that specifies the number of significant bits in the network portion of an IP address. In this article, we will cover the basics of prefixes and how they are used in routing.


What is a Prefix?

In networking, a prefix is a series of bits that identify the network segment to which an IP address belongs. The prefix is determined by the subnet mask, which is a 32-bit number that defines the number of bits used for the network portion of the IP address. For example, if the subnet mask is 255.255.255.0, the first 24 bits are used for the network portion of the address, and the last 8 bits are used for the host portion.


Types of Prefixes:

There are two types of prefixes: classful and classless. In classful routing, the subnet mask is determined by the class of the IP address, and the number of bits used for the network portion is fixed. Classful routing is no longer used in modern networks, as it does not allow for efficient use of IP addresses. Classless routing, on the other hand, allows for variable-length subnet masks, which means that the number of bits used for the network portion can vary depending on the size of the network.


Prefix Length:

The length of a prefix is the number of bits used for the network portion of the IP address. The prefix length is written as a slash followed by a number that represents the number of bits in the prefix. For example, a prefix length of /24 means that the first 24 bits of the IP address are used for the network portion, and the remaining 8 bits are used for the host portion.


Example:

Router# show ip route

Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
       + - replicated route, % - next hop override, p - overrides from PfR

Gateway of last resort is 10.0.0.1 to network 0.0.0.0

C    192.168.1.0/24 is directly connected, Ethernet0/0
C    192.168.2.0/24 is directly connected, Ethernet0/1
S    10.0.0.0/8 is directly connected, Serial0/0/0
S    172.16.0.0/16 [1/0] via 10.0.0.2
      192.168.3.0/24 is variably subnetted, 2 subnets, 2 masks
C       192.168.3.0/24 is directly connected, Loopback0
S       192.168.3.1/32 [1/0] via 10.0.0.2


In this example, we can see several different prefixes listed in the output of the "show ip route" command. Let's break them down:

The first two prefixes listed, 192.168.1.0/24 and 192.168.2.0/24, are both directly connected to the router's Ethernet interfaces. These are classful prefixes, meaning that they use a fixed-length subnet mask (in this case, /24).

The next two prefixes listed, 10.0.0.0/8 and 172.16.0.0/16, are both static routes. The /8 and /16 indicate the length of the prefix in bits.

The final two prefixes listed, 192.168.3.0/24 and 192.168.3.1/32, are both more complex. The first one is a directly connected network (like the first two), but it also includes a "variably subnetted" line that shows that there are multiple subnets within this prefix. The second line, 192.168.3.1/32, is a host route that indicates a specific IP address within the 192.168.3.0/24 network.

Route Table:

In a route table, prefixes are used to determine the path that a packet should take to reach its destination. The route table contains a list of network prefixes and the interface or next-hop address to which packets should be forwarded for each prefix. When a packet arrives at a router, the router looks up the destination IP address in its route table and forwards the packet to the appropriate interface or next-hop address.

Breakdown of Prefixes:

Prefixes are broken down into smaller prefixes to create subnets. A subnet is a portion of a network that has its own unique network address and subnet mask. Subnetting allows for more efficient use of IP addresses by dividing a large network into smaller subnets. For example, if we have a network with a prefix of 192.168.0.0/16, we can create smaller subnets by using a longer prefix length. A prefix length of /24 would create 256 subnets, each with 254 usable IP addresses.

Conclusion:

Prefixes are an important concept in networking, as they are used to identify network segments and determine the path that packets should take to reach their destination. Understanding prefixes is essential for anyone studying for the CCNA certification, as it is a fundamental concept in networking. By using the examples and route table provided in this article, you should have a basic understanding of how prefixes are used in routing.

 

0 comments:

Post a Comment