Home > Articles > Networking > Voice/IP Communications

This chapter is from the book

Using VLSM to Extend the IP Addresses Scheme

As IP subnets have grown, administrators have looked for ways to use their address space more efficiently and flexibly. One of the resulting techniques is called variable-length subnet masking (VLSM). VLSM is a method of designating a different subnet mask for the same network number on different subnets. Thus, a network administrator can use a long mask on networks with few hosts and a shorter mask on subnets with many hosts. If VLSM is not supported on your routers, your organization is stuck with the prospect of using a single subnet mask for an entire growing Class A, B, or C network. VLSM facilitates a hierarchical design that is more representative of an organization's logical network topology. Cisco supports VLSM with RIP version2, Open Shortest Path First (OSPF), Integrated Intermediate System-to-Intermediate System (IS-IS), Enhanced Interior Gateway Routing Protocol (EIGRP), and Border Gateway Protocol version 4 (BGP4), as well as with static routing. RIP version 1 and IGRP do not allow for VLSM because they are classful protocols, which do not transport subnet mask information in their updates. In Figure 3.2, RouterA has three subnets with two masks (/24 and /30).

Obviously, you want to use the available IP address space as efficiently as possible. A VLSM scheme is a much better method of allocating existing address space. In other words, you want to use the fewest number of subnet bits as necessary and the fewest number of host bits as necessary. A simple example of VLSM can be demonstrated through a connection between two Cisco routers over a wide area network (WAN) serial link. If you used a network address such as 172.16.2.0 with an 8-bit subnetting mask (the entire third octet), you would be wasting 252 addresses for a WAN point-to-point link that needs only two addresses. Because you need only two host addresses, you could use the following formula:

2n – 2 = 2 evaluates to:
2n = 4 which results in
n = 2

Figure 3.2Figure 3.2 A router with three subnets using different masks.


You need only 2 bits to represent two host addresses. Therefore, the subnet mask used for only two hosts is 255.255.255.252, or /30. If your network was originally using subnet 172.16.2.0 /24, you could reassign the following to your first two WAN interfaces using VLSM, as shown in Table 3.3 and Figure 3.3.



Table 3.3 Using VLSM to Apply a 30-bit Mask to Subnet 172.16.2.0 for More Efficient WAN Link Addressing

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.2.0 /30

.00000010.00000000

First WAN interface

172.16.2.1 /30

.00000010.00000001

Second WAN interface

172.16.2.2 /30

.00000010.00000010

Broadcast address

172.16.2.3 /30

.00000010.00000011



Figure 3.3 Figure 3.3 Using VLSM for WAN point-to-point serial links for more efficient address allocation.

You could then use the remaining subnetwork addresses for additional WAN point-to-point serial links as necessary. Here's an example:

172.16.2.4 /30
172.16.2.8 /30
172.16.2.12 /30
...
172.16.2.252 /30

Addresses need to be planned and assigned carefully because VLSM can add a higher level of complexity to your network administration. To really understand this process of subnetting a previously subnetted address, let's look at a practical scenario. Assume that you have been tasked by your CIO to redesign your existing Class B subnet of 172.16.1.0 /25. This 172.16.1.0 /25 scheme already gives your organization more than 500 subnets of 126 hosts each. However, you have been mandated to divide this one subnetwork into three departmental broadcast domains of 30 hosts each. In addition, you need to use this same address space for several WAN point-to-point serial links. Currently, your Class B subnet address of 172.16.1.0 with a subnet mask of 255.255.255.128 leaves you 7 bits for host addresses, or 126 hosts (27 – 2 = 126). Table 3.4 shows your present addressing scheme for subnet 172.16.1.0 /25.

Table 3.4 The Addressing Scheme for Subnet 172.16.1.0 /25

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.1.0

.00000001.00000000

First available host

172.16.1.1

.00000001.00000001

Second available host

172.16.1.2

.00000001.00000010

Last available host

172.16.1.126

.00000001.01111110

Broadcast address

172.16.1.127

.00000001.01111111


To subnet 172.16.1.0 /25 down to a VLSM to gain four subnets, you need to first write down the original subnetwork in its binary representation, like so:

10101100.00010000.00000001.00000000

Next, identify the bits that make up the original subnet mask with italics:

10101100.00010000.00000001.00000000

Because you need to borrow some bits from the remaining 7 bits for a VLSM mask, calculate the number you need:

2n = 4 results in
n = 2

So, you need two more bits for your VLSM mask, like so:

1 0 1 0 1 1 0 0.0 0 0 1 0 0 0 0.0 0 0 0 0 0 0 1.0 0 0 0 0 0 0 0
_____________network___________|______subnet_____|VSM|__hosts__|

Now that you have 5 bits remaining for the hosts, you can determine the number of available host addresses:

n is the remaining subnet bits, therefore:
n = 5
2n – 2 = 30 hosts per subnetwork

Therefore, you need the last 5 of the 7 original host bits to generate these 30 hosts per subnet. This combination works well for your needs.

Your new VLSM mask is 255.255.255.224, or /27. This is now the subnet mask for all the hosts in your three departments. As shown in Table 3.5, of the original 7 hosts bits, the first 2 bits are used to give you four new subnetworks and the remaining 5 bits are used for the 30 hosts on each subnet.

Table 3.5 The Binary Representation of Your Four New VLSM Subnets

Network

Subnet

VLSM

Host

First subnet 172.16.1.0/27

10101100.00010000

.00000001.0

00

00000

Second subnet 172.16.1.32/27

10101100.00010000

.00000001.0

01

00000

Third subnet 172.16.1.64/27

10101100.00010000

.00000001.0

10

00000

Fourth subnet 172.16.1.96/27

10101100.00010000

.00000001.0

11

00000


To reiterate, your four new VLSM subnets are

  • 172.16.1.0 /27 (the all-zeros subnet)

  • 172.16.1.32 /27

  • 172.16.1.64 /27

  • 172.16.1.96 /27 (this subnet can be used for WAN links)

Table 3.6 shows your new addressing scheme for the first subnet (subnet zero) of 172.16.1.0 /27.

Table 3.6 The Addressing Scheme for the First of Your Four New VLSM Subnets(Subnet Zero)

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.1.0

.00000001.00000000

First available host

172.16.1.1

.00000001.00000001

Second available host

172.16.1.2

.00000001.00000010

Last available host

172.16.1.30

.00000001.00011110

Broadcast address

172.16.1.31

.00000001.00011111


Table 3.7 shows the second subnet of 172.16.1.32 /27.

Table 3.7 The Addressing Scheme for the Second of Your Four New VLSM Subnets

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.1.32

.00000001.00100000

First available host

172.16.1.33

.00000001.00100001

Second available host

172.16.1.34

.00000001.00100010

Last available host

172.16.1.62

.00000001.00111110

Broadcast address

172.16.1.63

.00000001.00111111


Table 3.8 shows the third subnet of 172.16.1.64 /27.

Table 3.8 The Addressing Scheme for the Third of Your Four New VLSM Subnets

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.1.64

.00000001.01000000

First available host

172.16.1.65

.00000001.01000001

Second available host

172.16.1.66

.00000001.01000010

Last available host

172.16.1.94

.00000001.01011110

Broadcast address

172.16.1.95

.00000001.01011111


Table 3.9 shows the fourth subnet (all ones) of 172.16.1.96 /27, which is used for further VLSM subnetting WAN serial links.

Table 3.9 The Addressing Scheme for the Last of Your Four New VLSM Subnets

Description

Decimal

Subnetwork Binary

Subnetwork address

172.16.1.96

.00000001.01100000

First available host

172.16.1.97

.00000001.01100001

Second available host

172.16.1.98

.00000001.01100010

Last available host

172.16.1.126

.00000001.01111110

Broadcast address

172.16.1.127

.00000001.01111111


With that task accomplished, you now need to accommodate for your WAN serial links. However, it is critical that you understand that you can only further subnet a subnetwork that is presently unused. Therefore, you must use the fourth VLSM subnet, 172.16.1.96 /27, to create your WAN addressing scheme. As mentioned, these subnetworks need only two hosts each. Let's use the formula with two hosts:

2n –2 = 2 evaluates to:
2n = 4 which results in:
n = 2

Table 3.10 shows the efficient WAN link address assignments you can use now because of the flexibility of variable-length subnet masking.

Table 3.10 An Addressing Scheme for the WAN Serial Connections Using VLSMSubnets

Description

Decimal

Subnetwork Binary

WAN subnet 1

172.16.1.96 /30

.00000001.01100000

First WAN link on subnet 1

172.16.1.97 /30

.00000001.01100001

Second WAN link on subnet 1

172.16.1.98 /30

.00000001.01100010

Broadcast address on subnet 1

172.16.1.99 /30

.00000001.01100011

WAN subnet 2

172.16.1.100 /30

.00000001.01100100

First WAN link on subnet 2

172.16.1.101 /30

.00000001.01100101

Second WAN link on subnet 2

172.16.1.102 /30

.00000001.01100110

Broadcast address on subnet 2

172.16.1.103 /30

.00000001.01100111


Because you needed only 2 bits to represent two host addresses, the subnet mask for your WAN links is 255.255.255.252, or /30. Your network was originally using subnet 172.16.1.0 /25 for a single subnetwork of 126 hosts. You have now used VLSM to more efficiently reallocate your address pool with several contiguous (23 = 8) IP addresses left over for WAN connections. The flexibility of VLSM should be obvious by now, and you will be leveraging these techniques throughout the remaining chapters of this book. You can now start reassigning the new IP addresses and masks to your router interfaces, as shown in Listing 3.1. Remember that you must be running a routing protocol that supports VLSM and classless addresses, such as EIGRP or OSPF to name a few.

Listing 3.1 A Sample Router Configuration Using VLSM

RouterA(config)# interface ethernet 0/0
RouterA(config-if)# ip address 172.16.1.1 255.255.255.224
RouterA(config)# interface ethernet 0/1
RouterA(config-if)# ip address 172.16.1.33 255.255.255.224
RouterA(config)# interface ethernet 0/2
RouterA(config-if)# ip address 172.16.1.65 255.255.255.224
RouterA(config)# interface serial 0/0
RouterA(config-if)# ip address 172.16.1.97 255.255.255.252
RouterA(config)# interface serial 0/1
RouterA(config-if)# ip address 172.16.1.101 255.255.255.252

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020