IP Addressing and Sub
IP Addressing and Sub
Group : GEE-ET
Student : SANN SEYHA e20140592
2018 - 2019
Contents
I. Objective ................................................................................................................................................ 1
II. Benefit ................................................................................................................................................... 1
1.Addresing IP........................................................................................................................................... 1
2.Sub-netting ............................................................................................................................................. 1
2.1 Setting up logical divisions ............................................................................................................. 1
1.2 Improved network security ............................................................................................................ 2
1.3 Improved network performance .................................................................................................... 2
1.4 More or fewer IP addresses per subnet ......................................................................................... 2
III. Configuration and give an example in Packet Tracer ..................................................................... 2
HQ configuration: ................................................................................................................................. 4
Branch1 configuration: ........................................................................................................................ 6
Branche2 configuration: ....................................................................................................................... 7
IP addressing and Sub-netting
I. Objective
An IP address is an address used in order to uniquely identify a device on an IP network.
The address is made up of 32 binary bits, which can be divisible into a network portion and host
portion with the help of a subnet mask. The 32 binary bits are broken into four octets (1 octet = 8
bits). Each octet is converted to decimal and separated by a period (dot). For this reason, an IP
address is said to be expressed in dotted decimal format (for example, 172.16.81.100). The value
in each octet ranges from 0 to 255 decimal, or 00000000 - 11111111 binary.
Address: The unique number ID assigned to one host or interface in a network.
II. Benefit
1.Addresing IP
Addressing ip helps we can assign ip for determine our devices.
2.Sub-netting
2.1 Setting up logical divisions
Subnetting helps you maintain clean separations within a network. For example, you can
define boundaries between different departments in your organization, with one subnet for sales,
another for marketing, and a third for engineering.
Alternatively, you could divide your network by floors in a building, or even create
separate subnets for different device types such as VoIP phones, servers, and workstations.
1|P age
Additionally, your logically separated networks would behave almost as if they were physically
separate without the need to re-cable much networking gear to make a change.
2|P age
Scenario
In this lab, you have been given the network address 192.168.9.0/24 to subnet and provide the IP
addressing for the network shown in the Topology Diagram. The network has the following
addressing
requirements:
• The BRANCH1 LAN_GIM will require 10 host IP addresses.
• The BRANCH1 LAN_GIC will require 10 host IP addresses.
• The BRANCH2 LAN_GCA will require 10 host IP addresses.
• The BRANCH2 LAN_GCI will require 10 host IP addresses.
• The HQ LAN_GEE will require 20 host IP addresses.
• The link from HQ to BRANCH1 will require an IP address for each end of the link.
• The link from HQ to BRANCH2 will require an IP address for each end of the link.
3|P age
HQ configuration:
interface FastEthernet0/0
ip address 192.168.9.1 255.255.255.224
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.9.37 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.9.33 255.255.255.252
4|P age
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
passive-interface FastEthernet0/0
network 192.168.9.0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
5|P age
!
end
Branch1 configuration:
interface FastEthernet0/0
ip address 192.168.9.65 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.9.50 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.9.38 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
passive-interface FastEthernet0/0
passive-interface FastEthernet0/1
network 192.168.9.0
!
ip classless
!
ip flow-export version 9
!
!
line con 0
!
line aux 0
!
6|P age
line vty 0 4
login
!
end
Branche2 configuration:
interface FastEthernet0/0
ip address 192.168.9.102 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.9.85 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.9.34 255.255.255.252
duplex auto
speed auto
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
passive-interface FastEthernet0/0
passive-interface FastEthernet0/1
network 192.168.9.0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
7|P age