
IMPLEMENTATION OF DHCP IN CISCO PACKET TRACER
DHCP can be implemented on networks ranging in size from home networks to large campus networks and regional Internet service provider networks. A router or a residential gateway can be enabled to act as a DHCP server. Most residential network routers receive a globally unique IP address within the ISP network. Within a local network, a DHCP server assigns a local IP address to each device connected to the network.

- Select 2 PCs , 1 Routers and 1 Switches .
- Make all the necessary connections .
- Assign IP addresses , subnets and gateways .
- In pc , goto IP Configuration and select DHCP .
- After all the connections are made and all the configuration is done goto the command line of router 1 .

Commands :
Router>enableRouter#config t
Router(config)#int gig 0/1
Router(config-if)#ip address 192.168.1.2 255.255.255.0
Router(config-if)#no shut
Router(config-if)#exit
Router(config)#ip dhcp pool IP1
Router(dhcp-config)#net 192.168.1.0 255.255.255.0
Router(dhcp-config)#default 192.168.1.100
Router(dhcp-config)#exit
Router(config)#ip dhcp exc 192.168.1.2 192.168.1.10
Router(config)#exi
Comments
Post a Comment