标签:text 添加 分享 连接 proc ffffff 服务 pre ip add
实验名称:简单的DHCP 中继实验 (思科)实验拓扑:
实验需要:
1、按图中所示配置设网络备vlan,IP地址,路由器R1做为DHCP服务器来使用
2、通过DHCP服务:
能够使pc-1获取到192.168.20.0网段的地址。
pc-2,PC-3获取到192.168.10.0网段的地址,
并且为.11 或者之后的地址。
获取的网关地址都为 .254
获取的dns地址为8.8.8.8
实验步骤:
1、配置终端设备:
将所有pc机都设置为自动获取IP地址
2、配置网络设备
#配置交换机SW1
vlan 10 //创建vlan
vlan 20
interface fa0/2 //给连接PC端的接口赋予vlan
sw mode access
sw access vlan 10
interface fa0/4
sw mode access
sw access vlan 20
interface vlan 10 //配置pc端的网关并,配置DHCP中继
ip address 192.168.10.254 255.255.255.0
ip helper-address 10.10.1.1
interface vlan 20
ip address 192.168.20.254 255.255.255.0
ip helper-address 10.10.1.1
interface fa0/3 配置与路由R2 之间的端口
no sw
IP address 192.168.30.1 255.255.255.0
ip routing //开启交换机的三层功能
ip route 10.10.1.0 255.255.255.0 192.168.30.2 //添加路由条目
#配置路由器 R2
interface g0/0 //配置与sw1连接的端口
ip address 192.168.30.2 255.255.255.0
no shutdown
interface g0/1 //配置与DHCP服务器 R1连接 的端口
ip address 10.10.1.254 255.255.255.0
no shutdown
ip route 192.168.10.0 255.255.255.0 192.168.30.1
ip route 192.168.20.0 255.255.255.0 192.168.30.1
//添加路由条目
#配置作为DHCP服务器来使用的路由器 R2
interface g0/0 //配置端口
ip address 10.10.1.1 255.255.255.0
ip route 0.0.0.0 0.0.0.0 10.10.1.254 // 添加路由条目
ip dhcp excluded-address 192.168.10.1 192.168.10.10
ip dhcp excluded-address 192.168.20.1 192.168.20.10
ip dhcp excluded-address 192.168.10.254
ip dhcp excluded-address 192.168.20.254 //从地址池中去掉不用地址
ip dhcp pool vlan-10 //配置 vlan-10的地址池
default-router 192.168.10.0 255.255.255.0
dns-server 8.8.8.8
ip dhcp pool vlan-20 //配置 vlan-20的地址池
default-router 192.168.20.0 255.255.255.0
dns-server 8.8.8.8
server dhcp //开启 dhcp服务
实验验证:
pc获得了地址
标签:text 添加 分享 连接 proc ffffff 服务 pre ip add
原文地址:http://blog.51cto.com/14029008/2321854