cisco交换机开启dhcp服务

拓扑图如下:

上述设备用途说明:

1、使用R1做dhcp server

2、使用R2和R3代替电脑做dhcp client

3、SW1用做傻瓜交换机。

dhcp server配置(R1配置):

R1#disable
#############使用 disable 命令退出特权模式

R1>
R1>enable 
#############使用 enable 命令进入特权模式
   
R1#show privilege 
Current privilege level is 15
#############查看特权模式的级别

############# 进入配置模式
R1#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#exit

#############查看接口状态
R1#show ip interface brief
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            unassigned      YES unset  administratively down down    
FastEthernet0/1            unassigned      YES unset  administratively down down    
Serial1/0                  unassigned      YES unset  administratively down down    
Serial1/1                  unassigned      YES unset  administratively down down    
Serial1/2                  unassigned      YES unset  administratively down down    
Serial1/3                  unassigned      YES unset  administratively down down    

R1#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.

#############进入接口进行配置
R1(config)#int fastEthernet 0/0

R1(config-if)#no shutdown 
R1(config-if)#
*Aug  1 19:39:28.523: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Aug  1 19:39:29.523: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

R1(config-if)#ip address 123.1.1.1 255.255.255.0
R1(config-if)#
R1(config-if)#

#############在配置模式中查看接口状态需要加 do 前缀
R1(config-if)#do show ip interface brief
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            123.1.1.1       YES manual up                    up      
FastEthernet0/1            unassigned      YES unset  administratively down down    
Serial1/0                  unassigned      YES unset  administratively down down    
Serial1/1                  unassigned      YES unset  administratively down down    
Serial1/2                  unassigned      YES unset  administratively down down    
Serial1/3                  unassigned      YES unset  administratively down down    
R1(config-if)#

#############也可使用 end 命令退出配置模式
R1(config-if)#end
R1#
R1#
*Aug  1 19:43:17.991: %SYS-5-CONFIG_I: Configured from console by console
R1#

R1#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.

#############开启dhcp server 功能
R1(config)#service dhcp
R1(config)#ip dhcp pool R123

R1(dhcp-config)#network 123.1.1.0 255.255.255.0

#############将客户端的网关指向 dhcp server 接口的IP
R1(dhcp-config)#default-router 123.1.1.1

#############将客户端的DNS指向 dhcp server 接口的IP
R1(dhcp-config)#dns-server 123.1.1.1

#############设置租期为1天0时1分
R1(dhcp-config)#lease 1 0 1

#############配置域名为cisco.com
R1(dhcp-config)#domain-name cisco.com
R1(dhcp-config)#

dhcp client配置(R2和R3配置):

R2#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.

#############禁用ip routing路由转发表,将路由器模拟为pc
R2(config)#no ip routing 

R2(config)#int fastEthernet 0/0 
R2(config-if)#no shutdown
R2(config-if)#
*Aug  1 19:07:41.279: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Aug  1 19:07:42.279: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

#############开启dhcp动态获取
R2(config-if)#ip address dhcp
R2(config-if)#
*Aug  1 19:11:47.891: %DHCP-6-ADDRESS_ASSIGN: Interface FastEthernet0/0 assigned DHCP address 123.1.1.2, mask 255.255.255.0, hostname R2

R2(config-if)#end

#############查看接口状态
R2#show ip interface brief
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            123.1.1.2       YES DHCP   up                    up      
FastEthernet0/1            unassigned      YES unset  administratively down down    
Serial1/0                  unassigned      YES unset  administratively down down    
Serial1/1                  unassigned      YES unset  administratively down down    
Serial1/2                  unassigned      YES unset  administratively down down    
Serial1/3                  unassigned      YES unset  administratively down down    
R2#

#############查看单独接口状态
R2#show running-config interface fastEthernet 0/0
Building configuration...

Current configuration : 94 bytes
!
interface FastEthernet0/0
 ip address dhcp
 no ip route-cache
 duplex auto
 speed auto
end
时间: 2024-10-22 07:20:46

cisco交换机开启dhcp服务的相关文章

华为5700上开启DHCP服务

在华为5700上开启DHCP服务 1.dhcp enable    开启DHCP服务 2.ip pool office    建立地址池 3.network 192.168.0.0 mask 24    增加网络 4.gateway-list 192.168.0.50 6.dns-list 8.8.8.8 114.114.114.114 7.excluded-ip-address 192.168.0.1 192.168.0.49 8.lease day 8 hour 0 minute 0 ip

Cisco交换机开启远程登录

line vty 0 4           //设置允许登录数 password cisco         //设置登录密码 enable password cisco  //设置特权模式密码 login                  //开启服务 wr                     //保存配置

cisco思科开启dhcp,不同vlan确保全网互通(详细步骤)

使用cisco搭建实验环境       一. .配置 DHCP 客户端:   二,配置交换机sw1 sw1(config)#vlan 10 sw1(config-vlan)#ex sw1(config)#vlan 20 sw1(config-vlan)#ex sw1(config)#int fa0/1 sw1(config-if)#switchport mode   access sw1(config-if)#switchport  access vlan 10 sw1(config-if)#n

华为交换机S5700-52C-EI开启telnet服务

华为S5700交换机初始化和配置TELNET远程登录方法: 1,交换机开启Telnet服务 <Quidway>system-view       #进入系统视图 [Quidway]telnet server ?                    #查看有enable还是disable选项,选择对应的开启方式.[Quidway]telnet server enable                #enable选项开启Telnet服务 (普通系列一般为这个)[Quidway]undo te

DHCP服务过度方案(linux+dhcpd+failover)

一  现状分析 随着公司家属区接入用户的数量不断增加,以及公司网络的结构不断的复杂,静态ip地址的管理方式显得极不协调.不但配置麻烦管理不便也会造成额外的工作负担,因此对家属区提供dhcp服务十分必要. 经过对公司网络环境的研究以及现有资源的整合发现在不增加设备的前提下能够对用户提供有限的dhcp服务,但这会为将来在整个企业网中实现dhcp动态分配地址积累丰富的经验.可以先在家属区进行试点在逐步推广到全公司家属区乃至办公区. 二  网络设计与配置计划 经过对dhcp工做原理的研究发现dhcp r

实现不同vlan的DHCP服务

设置四台PC机IP为DHCP自动获取设置服务器的IP 192.168.6.1 子网 255.255.255.0 网关 192.168.6.254在服务器上开启DHCP服务并设置地址池SW1的配置:创建vlan10,20:SW1(config)#vlan 10#vlan 20 将交换机之间的链路设置为trunk:SW1(config)#interface range fa0/22,fa0/23,fa0/24#switchport mode trunk#switchport trunk allowe

Redhat6.5中搭建DHCP服务

DHCP是动态主机配置协议(Dynamic Host Configure Protocol)的缩写.是由Internet工作任务小组设计开发的,专门用于为TCP/IP网络中的计算机自动分配TCP/IP参数的协议.DHCP服务避免了因手动设置IP地址所产生的错误,同时也避免了把一个IP地址分配给多台工作站所造成的地址冲突.DHCP提供了安全.可靠且简单的TCP/IP网络设置,降低了配置IP地址的负担.下面我将结合GNS3和VMware模拟DHCP自动分配IP地址 实验拓扑图如下:三层交换机sw1上

实验:搭建DHCP服务

前期准备:centos7做服务器,centos6做客户端7的网段为(一个仅主机,一个自定义vmnet6),6的网段设为桥接(172网段),dhcp发送报文是基于广播机制,所以vmnet6必须是交换机,而不是路由器,使用vmnet6自己的仅主机和教室的上网环境不会冲突, 1.[[email protected] ~]# yum install dhcp[[email protected] ~]# rpm -ql dhcp/etc/NetworkManager/etc/NetworkManager/

Linux与Windows小型组合实验——DHCP服务

本篇博客是一个将微软系统以及Linux系统结合起来的实验组.即在局域网环境内使用Linux系统构建DHCP服务,并与微软客户端互联. 注意:本次实验均在虚拟机环境内进行!!!! 实验结构: GNS3中拓扑的构建 微软客户端的配置 DHCP服务的构建 二层.三层交换机的配置 互联互通验证 一.GNS3中拓扑的构建 OK,正式开始实验!打开GNS3进行本次实验拓扑结构的搭建,通过主界面左侧的图标栏,分别往工作界面内拖入两个路由镜像.三台HOST虚拟主机(HOST 1.2作为客户端,HOST 3为DH