⑴ 在思科模拟器上如何进行交换机的基本配置
楼主,你好x0dx0ax0dx0a在模拟器上添加思科交换机x0dx0ax0dx0a进行CLI输入x0dx0ax0dx0a用户模式hostname# ;x0dx0a特权模式hostname(config)# ;x0dx0a全局配置模式hostname(config-if)# ;x0dx0ax0dx0a交换机口令设置:x0dx0aswitch>enable ;进入特权模式x0dx0aswitch#config terminal ;进入全局配置模式x0dx0aswitch(config)#hostname csico ;设置交换机的主机名x0dx0aswitch(config)#enable secret csico1 ;设置特权加密口令x0dx0aswitch(config)#enable password csico8 ;设置特权非密口令x0dx0aswitch(config)#line console 0 ;进入控制台口x0dx0aswitch(config-line)#line vty 0 4 ;进入虚拟终端x0dx0aswitch(config-line)#login ;虚拟终端允许登录x0dx0aswitch(config-line)#password csico6 ;设置虚拟终端登录口令csico6x0dx0aswitch#exit ;返回命令x0dx0a交换机VLAN创建,删除,端口属性的设置,配置trunk端口,将某端口加入vlan中,配置VTP:x0dx0aswitch#vlan database ;进入VLAN设置x0dx0aswitch(vlan)#vlan 2 ;建VLAN 2x0dx0aswitch(vlan)#vlan 3 name vlan3 ;建VLAN 3并命名为vlan3x0dx0aswitch(vlan)#no vlan 2 ;删vlan 2x0dx0aswitch(config)#int f0/1 ;进入端口1x0dx0aswitch(config)#speed ? 查看speed命令的子命令x0dx0aswitch(config)#speed 100 设置该端口速率为100mb/s (10/auto)x0dx0aswitch(config)#plex ? 查看plex的子命令x0dx0aswitch(config)#plex full 设置该端口为全双工(auto/half)x0dx0aswitch(config)#description TO_PC1 这是该端口描述为TO_PC1x0dx0aswitch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2x0dx0aswitch(config-if)#switchport mode trunk ;设置为trunk模式(access模式)x0dx0aswitch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlanx0dx0aswitch(config-if)#switchport trunk encap dot1q ;设置vlan 中继x0dx0aswitch(config)#vtp domain vtpserver ;设置vtp域名相同x0dx0aswitch(config)#vtp password ;设置发vtp密码x0dx0aswitch(config)#vtp server ;设置vtp服务器模式x0dx0aswitch(config)#vtp client ;设置vtp客户机模式x0dx0ax0dx0a交换机设置IP地址,默认网关,域名,域名服务器,配置和查看MAC地址表:x0dx0aswitch(config)#interface vlan 1 ;进入vlan 1x0dx0aswitch(config-if)#ip address 192.168.1.1 255.255.255.0 ;设置IP地址x0dx0aswitch(config)#ip default-gateway 192.168.1.6 ;设置默认网关x0dx0aswitch(config)#ip domain-name cisco.com 设置域名x0dx0aswitch(config)#ip name-server 192.168.1.18 设置域名服务器x0dx0aswitch(config)#mac-address-table? 查看mac-address-table的子命令x0dx0aswitch(config)#mac-address-table aging-time 100 设置超时时间为100msx0dx0aswitch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3端口x0dx0aswitch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入静态地址目标端口f0/6源端口f0/7x0dx0aswitch(config)#endx0dx0aswitch#show mac-address-table 查看整个MAC地址表x0dx0aswitch#clear mac-address-table restricted static 清除限制性静态地址x0dx0a交换机显示命令:x0dx0aswitch#write ;保存配置信息x0dx0aswitch#show vtp ;查看vtp配置信息x0dx0aswitch#show run ;查看当前配置信息x0dx0ax0dx0aswitch#show vlan ;查看vlan配置信息x0dx0aswitch#show interface ;查看端口信息x0dx0aswitch#show int f0/0 ;查看指定端口信息x0dx0aswitch#show int f0/0 status;查看指定端口状态x0dx0aswitch#dir flash: ;查看闪存
⑵ 在思科模拟器上怎么进行交换机的基本配置
当创建vlan时,必须要决定是否使用VTP,使用VTP,能使配置在一个或多个交换机上被改变时,那些改变会自动传送给在同一个VTP域中的其他交换机。VTP 被组织成管理域(VTP Domain),相同域中的交换机能共享VLAN 信息。根据交换机在VTP 域中的作用不同,VTP 可以分为三种模式:服务器模式(Server),客户机模式(Client),透明模式。。。
1、首先,打开思科模拟器软件,连接三台交换机的连接线,将所有交换机互相连接起来,一台当服务器,一台当客户机,另外一台当透明模式。
2、把三台交换机的配置清除干净,重启交换机,配置命令为:
复制内容到剪贴板 S1#flash:vlan.dat S1#erasestartup-config S1#reload
配置S1 为VTP server,配置命令为:
复制内容到剪贴板 S1(config)#vtpmodeserver
3、配置S3 为VTP transparent,配置命令是:
复制内容到剪贴板 S3#vlandatabase S3(vlan)#vtptransparent S3(vlan)#vtppasswordcisco(配置交换机的密码)
4、配置S2 为VTP client,配置命令是:
复制内容到剪贴板 S2(config)#vtpmodeclient SettingdevicetoVTPCLIENTmode. S2(config)#vtpdomainVTP-TEST DomainnamealreadysettoVTP-TEST. S2(config)#vtppasswordcisco
5、在S1 上创建VLAN,检查S2、S3 上的VLAN 信息,配置命令是:
复制内容到剪贴板 S1(config)#vlan2 S1(config)#vlan3
查看s1,s2,s3的`VLAN配置信息。命令是:
复制内容到剪贴板 S1#showvlan S2#showvlan S3#showvlan
6、查看VTP 信息,查看交换机的vtp详细信息和版本等信息:
复制内容到剪贴板 S1#showvtpstatus
注意事项:
1、要成功配置vtp服务器,应确认 配置的所有交换机都已设置为默认设置。
2、在网络中配置至少两台vtp服务器交换机。
3、确保所有的交换机都配置相同的vtp协议版本。
4、配置交换机的vtp模式一定要在交换机的特权配置模式下配置。
⑶ 如何配置Cisco交换机的IP地址
大家知道如何配置Cisco交换机的IP地址的方法么?接下来是我为大家收集的如何配置Cisco交换机的IP地址方法,希望能帮到大家。
如何配置Cisco交换机的IP地址的方法
1. 计算机命令:
PCA login: root ;使用root用户
password: linux ;口令是linux
# shutdown -h now ;同init 0 关机
# logout
# login
# ifconfig ;显示IP地址
# ifconfig eth0 netmask ;设置IP地址
# ifconfig eht0 netmask down ; 删除IP地址
# route add 0.0.0.0 gw
# route del 0.0.0.0 gw
# route add default gw ;设置网关
# route del default gw ;删除网关
# route ;显示网关
# ping
# telnet
2. 交换机支持的命令:
交换机基本状态:
switch: ;交换机的ROM状态
rommon> ;路由器的ROM状态
hostname> ;用户模式
hostname# ;特权模式
hostname(config)# ;全局配置模式
hostname(config-if)# ;接口状态
交换机口令设置:
switch>enable ;进入特权模式
switch#config terminal ;进入全局配置模式
switch(config)#hostname ;设置交换机的主机名
switch(config)#enable secret xxx ;设置特权加密口令
switch(config)#enable password xxa ;设置特权非密口令
switch(config)#line console 0 ;进入控制台口
switch(config-line)#line vty 0 4 ;进入虚拟终端
switch(config-line)#login ;允许登录
switch(config-line)#password xx ;设置登录口令xx
switch#exit ;返回命令
交换机VLAN设置:
switch#vlan database ;进入VLAN设置
switch(vlan)#vlan 2 ;建VLAN 2
switch(vlan)#no vlan 2 ;删vlan 2
switch(config)#int f0/1 ;进入端口1
switch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2
switch(config-if)#switchport mode trunk ;设置为干线
switch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlan
switch(config-if)#switchport trunk encap dot1q ;设置vlan 中继
switch(config)#vtp domain ;设置发vtp域名
switch(config)#vtp password ;设置发vtp密码
switch(config)#vtp mode server ;设置发vtp模式
switch(config)#vtp mode client ;设置发vtp模式
交换机设置IP地址:
switch(config)#interface vlan 1 ;进入vlan 1
switch(config-if)#ip address ;设置IP地址
switch(config)#ip default-gateway ;设置默认网关
switch(config)#no shutdown
switch#dir flash: ;查看闪存
交换机显示命令:
switch#write ;保存配置信息
switch#show vtp ;查看vtp配置信息
switch#show run ;查看当前配置信息
switch#show vlan ;查看vlan配置信息
switch#show interface ;查看端口信息
switch#show int f0/0 ;查看指定端口信息
3. 路由器支持的命令:
路由器显示命令:
router#show run ;显示配置信息
router#show interface ;显示接口信息
router#show ip route ;显示路由信息
router#show cdp nei ;显示邻居信息
router#reload ;重新起动
路由器口令设置:
router>enable ;进入特权模式
router#config terminal ;进入全局配置模式
router(config)#hostname ;设置交换机的主机名
router(config)#enable secret xxx ;设置特权加密口令
router(config)#enable password xxb ;设置特权非密口令
router(config)#line console 0 ;进入控制台口
router(config-line)#line vty 0 4 ;进入虚拟终端
router(config-line)#login ;要求口令验证
router(config-line)#password xx ;设置登录口令xx
router(config)#(Ctrl+z) ; 返回特权模式
router#exit ;返回命令
路由器配置:
router(config)#int s0/0 ;进入Serail接口
router(config-if)#no shutdown ;激活当前接口
router(config-if)#clock rate 64000 ;设置同步时钟
router(config-if)#ip address ;设置IP地址
router(config-if)#ip address second ;设置第二个IP
router(config-if)#int f0/0.1 ;进入子接口
router(config-***if.1)#ip address ;设置子接口IP
router(config-***if.1)#encapsulation dot1q ;绑定vlan中继协议
router(config)#config-register 0x2142 ;跳过配置文件
router(config)#config-register 0x2102 ;正常使用配置文件
router#reload ;重新引导
路由器文件操作:
router# running-config startup-config ;保存配置
router# running-config tftp ;保存配置到tftp
router# startup-config tftp ;开机配置存到tftp
router# tftp flash: ;下传文件到flash
router# tftp startup-config ;下载配置文件
ROM状态:
Ctrl+Break ;进入ROM监控状态
rommon>confreg 0x2142 ;跳过配置文件
rommon>confreg 0x2102 ;恢复配置文件
rommon>reset ;重新引导
rommon> xmodem: flash: ;从console传输文件
看了“如何配置Cisco交换机的IP地址”还想看:
1. 思科cisco怎么配置WEB网管
2. cisco交换机设置
3. 思科IP-MAC地址绑定怎么配置
4. 交换机如何配置telnet
5. cisco交换机怎么配置vlan
⑷ 思科交换机怎么给端口配置ip
1、在思科模拟器上找到Cisco 2960交换机一台,PC 2台,直通线若干条,进行连接配置。
注意事项:
交换机根据工作位置的不同,可以分为广域网交换机和局域网交换机。广域的交换机就是一种在通信系统中完成信息交换功能的设备,它应用在数据链路层。交换机腊察有多个端口,每个端口都具有桥接功能,可以连接一个局域网或一台高性能服务器或工作站。实际上,交换机有时被称为多端口网桥。
⑸ 思科模拟器交换机的基本配置方法
交换机具有转化和接受资料的动能,在区域网中是不能没有的重要装置的睁枝,在生活中,交换机和路弊绝由器一样重要。接下来是我为大家收集的方法,希望能帮到大家。
:
首先找出一台2811类的路由器和一台2960类的交换机和3台pc,利用直通线使各个装置相互连线起来,如下图所示:
为交换机配置主机名,命令为:
Switch>enable
Switch#conf terminal
Enter configuration mands, one per line. End with CNTL/Z.
Switchconfig#hostname S1
如下图所示:
为交换机配置密码,命令为:
悉卜敏S1config#enable secret cisco
S1config#line vty 0 15
S1config-line#password cisco
S1config-line#login
如下图所示
配置交换机端口安全,配置命令是:
S1config#int f0/1
S1config-if#shutdown
S1config-if#switch mode access
S1config-if#switch port-securitiy
如下图所示
检查交换机的Mac地址表,命令是:
S1#show mac-address-table,如下图所示:
检视端口安全的设定情况,用命令为:show port-security,如下图所示:
⑹ Cisco交换机如何设置设置步骤有哪些
1 , 设置交换机名称
(config)#hostname hostname
2,设置log存放路径
(config)#logging 10.7.68.68 //将log档文件存在10.7.68.68
(config)#spanning-tree mode rapid-pvst // 设定 spanning-tree 的模式是 rapid-pvst
3,设置errdisable
(config)#errdisable recovery cause all //开启errdiable 恢复的原因
(config)#errdisable recovery interval 300 //errdisable后300秒恢复
4,设置snmp-server
(config)#snmp-server community askeymis RO //设置简单网络管理协议字符串为只读
5, 设置vtp
(config)#vtp domain askey // 设定VTP domain 名称
(config)vtp mode transparent // 设定 VTP 模式为透明模式
Vlan
1,创建Vlan
(config)#vlan 180 //创建Vlan ID号为180
(config-vlan)#name askey //Vlan 名称为液友askey
2,删除Vlan
(config)#no vlan 180
#show vlan brief //查看交换机当前Vlan 号及Vlan 下有哪些端口
3,配置管理IP
(config)#int vlan 180
(config-if)#ip address 192.168.1.251 255.255.255.0 //设置管理IP地址
(config)#ip default-gateway 192.168.1.254 //设置默认路由,供其他网段访问
4,将端口划至Vlan 180
4.1单一端口划分
(config)#int f0/1 //进入端口f0/1
(config-if)#sw mode access //设置访问模式档埋行
(cofnig-if)#sw ac vlan 180 //将其端口划入Vlan 180
4.2多端口划分
(config)#int range f0/1 _ 24 //端口范围为1-24
(config-if-range)#sw mode access
(config-if-range)#sw ac vlan 180
端口配置
1,端口配置
(cofnig)#interface FastEthernet0/1
(config-if)#switchport access vlan 33 // 划分VLAN
(config-if)# switchport mode access
(config-if)# switchport port-security maximum 2 //设定端口只允许接入2个PC
(config-if)# switchport port-security // 启用端口安全
(config-if)# switchport port-security violation restrict // 发生违例 端口进errdisable,并记录
(config-if)# storm-control broadcast level 0.80 //控制广播包的突发百分比
(config-if)# storm-control action shutdown //暴风控制的违例时端口进入errdisable
(config-if)# storm-control action trap //产行哗生snmp trap(抑制)消息来通告发生过量流量的情况
(config-if)# spanning-tree portfast // 配置接口为portfast模式
(config-if)# spanning-tree bpguard enable // 启用bpuguard 防护
(config-if)# spanning-tree guard root // 启用根桥防护
设置时间与同步
1 , 开启debug与log记录时间的服务
(config)#Service timestamps debug datetime localtime //开启debug记录时显示的时间
(config)#Service timestamps log datetime localtime //开启log记录时显示的时间
2,设置时间与时区
(config)# Clock timezone TAIWAN 8 //设置时区
(config)# Clock set 12:16:50 nov 27 2008 //设置时间(月,日,年)
#Show clock //查看交换机当前的时间
3,设置ntp server 实现时间同步
(config)# ntp server 10.1.71.249 //设置交换机与ntp server 实现时间同步
#show ntp stauts //查看交换机是否同步
Clock is synchronized, stratum 3, reference is 10.1.71.249(同步)
nominal freq is 119.2092 Hz, actual freq is 119.2093 Hz, precision is 2**17
reference time is CCD89F21.ECA0C247 (12:22:57.924 TAIWAN Thu Nov 27 2008)
clock offset is 8.4785 msec, root delay is 399.51 msec
root dispersion is 937.29 msec, peer dispersion is 885.30 msec
Password
1,开启明文密码加密服务
(config)#service password-encryption //将明文密码加密
2,设置控制台密码
(config)#line consloe 0 //进入控制台
(config-line)#login //登录
(config-line)#password cisco //设置密码
3,设置enable密码
(config)#enable password cisco
(config)#enable secret password cisco //给密码加密码 ,优先级高于enable password
4,设置Telnet 密码
(config)#line vty 0 4 //进入vty模式
(config-line)#login
(config-line)#password cisco //设置密码
(config-line)#exec-timeout 5 0 //telnet 5分钟超时。