Thursday, July 29, 2010
Saturday, March 6, 2010
Classless vs Classful
What is Classful Routing Protocol? What is Classless Routing Protocol? What is the difference between classful and classless with regards IP addressing, routing, subnetting. The difference between classful IP addressing and classless IP addressing is in selecting the number of bits used for the network ID portion of an IP address. In classful IP addressing, the network ID portion can take only the predefined number of bits 8, 16, or 24. In classless addressing, any number of bits can be assigned to the network ID. Classful protocols cannot carry a network mask as part of the routing advertisement. This limits the routing protocol to only supporting a single subnetting scheme within the autonomous system. Additionally, when advertising network addresses between different major network spaces, the routing protocol will summarize the routing information to the natural class (A, B, C) of the network address. It must do this since there is no method for one major class network to be updated with the network mask from another major class network. The best the routing protocol can do is summarized based on the class of the network (derived from the initial bits of the address) and the natural network mask associated with the network class. A classless protocol has the ability to carry network mask information as part of the routing update. Since the network mask for each routing entry precisely describes the network being advertised and the address range it covers, a network address range can be subnetted using multiple network masks. Example : For example:
Additionally, it is possible to carry "subnet" information between network address spaces that formerly would have crossed major network boundaries. Essentially, removing the implied network mask based on network class allows the routing protocol to both summarize and subnet an address space based on the network masks associated with each routing table entry.
Classfull IPs are are thing of the past (almost).
Class A addresses: 1.x.x.x to 127.y.y.y and have a /8 net mask. For example, all the IPs in the 24.x.x.x range are one class A network .
Class B addresses: 128.0.x.x to 191.255.y.y have a /16 net mask.
Class C addresses: 192.0.0.x to 223.255.255.y, /24 net mask.
Of course, they could be subnetted internally in your network.
It's in the routing table that difference appear. with classfull
addresses, your routing table will contain only one route to whole
classfull networks for networks it's not participating in.
| |
| e0 --------- s0 s0 --------- e0 |
|---| router1 |----------| router2 |---|
| --------- --------- |
| |
10.1.1.0/26 192.168.1.0/30 172.1.1.0/26
Using "no ip classless" in your routers and isssuing a "show ip routes" on router 1 would yield something like:
Network 10.0.0.0 is subnetted
10.1.1.0/26 via e0
Network 192.168.1.0 is subnetted
192.168.1.0/20 via s0
172.1.0.0 via 192.168.1.2
(there is no subnetting for network 172.1.0.0)
Whereas with "ip classless", the routing table would include only a route to 172.1.1.0/26 and would also allow you to use 172.1.1.128/26 on another interface of router1.
Posted by Putra90 at 11:09 PM 0 comments