1. 在思科模拟器上如何进行交换机的基本配置
楼主,你好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: ;查看闪存
2. 在思科模拟器上如何进行交换机的基本配置
楼主,你好
在模拟器上添加思科交换机
进行CLI输入
用户模式hostname# ;
特权模式hostname(config)# ;
全局配置模式hostname(config-if)# ;
交换机口令设置:
switch>enable ;进入特权模式
switch#config terminal ;进入全局配置模式
switch(config)#hostname csico ;设置交换机的主机名
switch(config)#enable secret csico1 ;设置特权加密口令
switch(config)#enable password csico8 ;设置特权非密口令
switch(config)#line console 0 ;进入控制台口
switch(config-line)#line vty 0 4 ;进入虚拟终端
switch(config-line)#login ;虚拟终端允许登录
switch(config-line)#password csico6 ;设置虚拟终端登录口令csico6
switch#exit ;返回命令
交换机VLAN创建,删除,端口属性的设置,配置trunk端口,将某端口加入vlan中,配置VTP:
switch#vlan database ;进入VLAN设置
switch(vlan)#vlan 2 ;建VLAN 2
switch(vlan)#vlan 3 name vlan3 ;建VLAN 3并命名为vlan3
switch(vlan)#no vlan 2 ;删vlan 2
switch(config)#int f0/1 ;进入端口1
switch(config)#speed ? 查看speed命令的子命令
switch(config)#speed 100 设置该端口速率为100mb/s (10/auto)
switch(config)#plex ? 查看plex的子命令
switch(config)#plex full 设置该端口为全双工(auto/half)
switch(config)#description TO_PC1 这是该端口描述为TO_PC1
switch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2
switch(config-if)#switchport mode trunk ;设置为trunk模式(access模式)
switch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlan
switch(config-if)#switchport trunk encap dot1q ;设置vlan 中继
switch(config)#vtp domain vtpserver ;设置vtp域名相同
switch(config)#vtp password ;设置发vtp密码
switch(config)#vtp server ;设置vtp服务器模式
switch(config)#vtp client ;设置vtp客户机模式
交换机设置IP地址,默认网关,域名,域名服务器,配置和查看MAC地址表:
switch(config)#interface vlan 1 ;进入vlan 1
switch(config-if)#ip address 192.168.1.1 255.255.255.0 ;设置IP地址
switch(config)#ip default-gateway 192.168.1.6 ;设置默认网关
switch(config)#ip domain-name cisco.com 设置域名
switch(config)#ip name-server 192.168.1.18 设置域名服务器
switch(config)#mac-address-table? 查看mac-address-table的子命令
switch(config)#mac-address-table aging-time 100 设置超时时间为100ms
switch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3端口
switch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入静态地址目标端口f0/6源端口f0/7
switch(config)#end
switch#show mac-address-table 查看整个MAC地址表
switch#clear mac-address-table restricted static 清除限制性静态地址
交换机显示命令:
switch#write ;保存配置信息
switch#show vtp ;查看vtp配置信息
switch#show run ;查看当前配置信息
switch#show vlan ;查看vlan配置信息
switch#show interface ;查看端口信息
switch#show int f0/0 ;查看指定端口信息
switch#show int f0/0 status;查看指定端口状态
switch#dir flash: ;查看闪存
3. 思科模拟器怎么还原端口配置
在思科模拟器的特权模式中;输入Router#ersce startup-config 目的是删除startup-config配置文件
然后输入Router#reload 重新引导系统。
4. 思科模拟器怎么将数据包从一台pc发送到多台pc
照以下步骤可以将数据包从一台pc发送到多台pc。
第一首先在Cisco准备三个路由器R1,R2和R3。还有两个电脑PC1和PC2。
第二然后配置两个PC电脑的IP地址。
第三然后再配置R1,R2和R3的IP地址。
注意:在配置IP地址的时候,要确定输入的IP地址无误。
第四然后再配置PC1去往PC2的单向路由。用命令ip route还有两个路由器的IP地址。
第五然后再配置PC2到PC1的单向路由。要注意在配置单向路由的时候,IP地址不可以打错。
第六然后点击PC1的run窗口。用ipconfig和ping查询PC1和PC2的连通性。
5. 思科模拟器中一台电脑怎么通过交换机和路由器连接另一台电脑 配置很重要
思科模拟器,一台电脑想要通过交换机和路由器到另外一台电脑的话,首先要设计网段,其次电脑要配置好网络信息。交换机要划分VLAN,给VLAN设置IP地址。路由器要把access口封装成trunk口,还要配置路由。
6. 在思科模拟器上怎么进行交换机的基本配置
交换机是局域网中最重要的设备,交换机是基于MAC 来进行工作的。和路由器类似,交换机也有IOS,IOS 的基本使用方法是一样的,交换机是第二层的设备,可以隔离冲突域。交换机是基于收到的数据帧中的源MAC 地址和目的MAC 地址来进行工作。 软件名称:思科模拟器 Cisco Packet Tracer 6.0 正式版软件大小:56MB更新时间:2013-05-22 1、首先找出一台2811类的路由器和一台2960类的交换机和3台pc,利用直通线使各个设备相互连接起来,如下图所示: 2、为交换机配置主机名,命令为 复制内容到剪贴板 Switchenable Switch#confterminal Enterconfigurationcommands,oneperline.EndwithCNTL/Z. Switch(config)#hostnameS1 如下图所示: 3、为交换机配置密码,命令为: 复制内容到剪贴板 S1(config)#enablesecretcisco S1(config)#linevty015 S1(config-line)#passwordcisco S1(config-line)#login 如下图所示 复制内容到剪贴板 S1(config)#intf0/1 S1(config-if)#shutdown S1(config-if)#switchmodeaccess S1(config-if)#switchport-securitiy 如下图所示 5、检查交换机的Mac地址表,命令是:S1#show mac-address-table,如下图所示: 6、查看端口安全的设置情况,用命令为:show port-security,如下图所示: 注意事项:连接各个设备一定要用准双绞线,同种设备用交叉线,不同种设备用直通线。
7. 在思科模拟器上怎么进行交换机的基本配置
当创建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模式一定要在交换机的特权配置模式下配置。
8. 思科模拟器怎么实现地址转换
1、NAT地址转换。
2、两个路由内网的ip是不能直接互通的,可以是DMZ或者虚拟端口来端口转换。
3、互联网上有两个192.168.1.100的pc,能彼此通信。这里的有一个中间服务器。
9. 在思科模拟器,把这个拓扑图配置出来,把所有设备和PC及Server的配置内容及测试结果复制下来,存到WORD文
你好!
如果想让全网互通,那么只需要配置动态选择协议了好了!(静态路由相对麻烦点)
全路由器都配置如下命令:
enable
configure terminal
router rip
version 2
network 0.0.0.0
no auto-summary
exit
即可。
10. Cisco Packet Tracer如何将计算机名称配置改写
打开CiscoPacketTracer(思科模拟器),然后新建一个文件,在模拟器软件上点下方的设备栏,我们选择一个router,型号为2811的。
把其拖到工作区上。
然后选择:CLI这个进行命令操作。
按回车,跳到:router>这个位置,我们输入:en进入路由特权模式:router#。
进入全局配置模式,我们给路由器名字,输入:hostnamechenpi,然后回车就可以给路由命名成:chenpi了。