clip_p_w_picpath003
实验目的:在三层交换机上实现 dhcp服务,为采购部客户机提供动态分配ip地址服务
实验内容:在核心交换机配置 dhcp服务,为采购部所有电脑提供dhcp服务
实验概述:
动态主机配置协议(Dynamic Host Configuration Protocol, DHCP
主要用途:给内部网络计算机自动分配IP地址给用户,而不用用户设置ip地址选项。从而实现在大型网络里减轻网络管理员的管理负担,简化网络管理的功能。
通常, DHCP 服务器至少向客户端提供以下基本信息:
clip_p_w_picpath001  IP 地址
clip_p_w_picpath001  子网掩码
clip_p_w_picpath001  默认网关
它还可以提供其他信息,如域名服务 (DNS) 服务器的地址和 Windows Internet 名称服务 (WINS) 服务器的地址。
配置过程
采购部交换机我们不做配置
路由器也不做配置
配置要点:在f0/1上把默认的二层接口转换为三层接口(no switchport)才可在该接口设置ip地址
我们来对核心交换机配置
Switch>enable<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Switch#config terminal

Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#ip ?         //不支持ip命令,因为三层交换机默认没有开启三层功能。相当于二层交换端口
% Unrecognized command

Switch(config-if)#
Switch(config-if)#no switchport    //在该端口开启三层接口功能
Switch(config-if)#ip address 192.168.1.252 255.255.255.0     //可以配置ip地址了

Switch(config-if)#no shutdown
Switch(config-if)#eixt

 

为采购部pc配置分配ip地址
Switch(config)#ip dhcp ?
  excluded-address  Prevent DHCP from assigning certain addresses
  pool              Configure DHCP address pools
Switch(config)#ip dhcp pool ?

  WORD  Pool name
Switch(config)#ip dhcp pool caigou

Switch(dhcp-config)#network 192.168.1.0 255.255.255.0   //直连网段,为下面网络分配这个网段的ip地址,地址池
Switch(dhcp-config)#
Switch(dhcp-config)#default-router 192.168.1.252                 //默认网关
Switch(dhcp-config)#dns-server 219.149.194.55                            //dns地址为电信dns服务器地址
Switch(dhcp-config)#
Switch(dhcp-config)#exit

witch(config)#ip dhcp ?
  excluded-address  Prevent DHCP from assigning certain addresses
  pool              Configure DHCP address pools
Switch(config)#ip dhcp excluded-address ?

  A.B.C.D  Low IP address
Switch(config)#ip dhcp excluded-address 192.168.1.250 192.168.1.254  //添加排除地址192.168.1.250 192.168.1.254
Switch(config)#ip dhcp excluded-address 192.168.1.1 192.168.1.10             //添加排除地址192.168.1.1 192.168.1.10
Switch(config)#
Switch(config)#exit

 

实验结果:

在李四客户机能获取ip地址信息,如下所示:

 

clip_p_w_picpath005