Ⅰ 思科实验用的交换机和路由和家庭用的有什么不同啊
思科的交换机和路由器基本上都是企业级以上级别客户用的机子,性能比较好。
而家庭用的是傻瓜式的 基本上不用自己配置什么,接上去就可以用,功能也不多,性能比思科的肯定差多了。家庭用没有必要用企业级的,大材小用。
现在用的网络协议基本都是TCP/ip协议,通过IP地址来通信的协议。协议的具体内容就和楼上所述,在这里就不多说了,网络上也有很多相关知识,如果还觉得不是清楚 可以到我的博客上留言 数据中心天空 。
Ⅱ 思科路由器与交换机之间的连接
在router 上router>enrouter#con trouter(config)#interface f0/0router(config-if)#no ip addressrouter(config-if)#no shutdownrouter(config-if)#interface f0/0.1router(config-subif)#ip address X.X X.Xrouter(config-subif)#en dot1q 2router(config-subif)#no shutrouter(config-subif)#interface f0/0.2router(config-subif)#ip address X.X X.Xrouter(config-subif)#en dot1q 3router(config-subif)#no shut在switch上switch>enswitch#vlan databaseswitch(vlan)#vlan 2 name v2switch(vlan)#vlan 3 name v3switch(vlan)#exitswitch#con tswitch(config)#interface f0/1switch(config-if)#switchport mode trunkswitch(config-if)#inter f0/2switch(config-if)#switchport access vlan 2switch(config-if)#inter f0/3switch(config-if)#switchport access vlan 3就这样就好了
Ⅲ 计算机网络实验 配置交换机和路由器 使得PC0和PC1 ping通
这个问题倒是简单得很,但是你的需求不是很详细,我想问清楚几个问题:
1、PC0的网关是在交换机上还是路由器上?
2、所涉及的地址是否任意规划?
3、两台PC是否自动获取地址?
我这里给你做了一个配置,PC0网段为192.168.10.0/24、网关为192.168.10.1、网关在交换机上,PC1网段为192.168.20.0/24、网关为192.168.20.1,两台PC都自动获取地址
交换机配置:
ip dhcp pool 10 创建dhcp地址池
network 192.168.10.0 255.255.255.0
default-router 192.168.10.1
dns-server 8.8.8.8
ip routing 思科三层交换机,默认所有网段不能互访,所以必须开这条命令
vlan 10
interface FastEthernet0/1 这个端口和PC0连接
switchport access vlan 10
switchport mode access
interface FastEthernet0/2 这个端口和路由器连接
no switchport
ip address 1.1.1.1 255.255.255.252
interface Vlan10 创建PC0的网关
ip address 192.168.10.1 255.255.255
no shutdown
ip route 192.168.20.0 255.255.255.0 1.1.1.2 静态路由
路由器配置:
ip dhcp pool 20 创建PC1的dhcp地址池
network 192.168.20.0 255.255.255.0
default-router 192.168.20.1
dns-server 8.8.8.8
interface FastEthernet0/0 这个端口和交换机互联
ip address 1.1.1.2 255.255.255.252
no shutdown
interface FastEthernet0/1 这个端口和PC1互联
ip address 192.168.20.1 255.255.255.0
no shutdown
ip route 192.168.10.0 255.255.255.0 1.1.1.1
Ⅳ 思科交换机模拟器问题,路由器和交换机怎样联通
路由器f0/0口用直通线连交换机任意口,交换机任意口用直通线连电脑,电脑上配置
ip地址192.168.1.2
掩码255.255.255.0
网关192.168.1.1
点路由进控制台,输入
n回车
en回车
conf t回车
int f0/0回车
no shut回车
ip add 192.168.1.1 255.255.255.0回车
用电脑ping192.168.1.1就可以通了
Ⅳ !! 一道思科的网络题 希望高手尽快解答! 路由器、交换机连接拓扑图如下:试完成以下配置题。
int f0/0
ip add 172.16.10.2 255.255.0.0
no sh
int f0/1
ip add 172.16.10.3 255.255.0.0
no sh
其它接口类推
ip router
rip 172.16.10.0
V2
交换机要打就不是一点点命令了,要划分端口,还要看你的拓扑,是否要用TRUNK链路
路由器上做个单臂路由划分子接口就可以了,
Ⅵ 思科三层交换机跟路由器相连接的时候应该如何配置
1、打开思科交换CLI,首先进入的是用户模式,如果要进行配置操作需要进入特权模式。
Ⅶ 思科交换机连接网段和路由器的疑问
你在PC机上设置默认网关了吗?需要把192.168.1.1作为192.168.1.0这个网段的默认网关,吧10.10.10.100作为10网段的默认网关。如果不通可以使用NO SH启动一下接口。注意各接口连接线使用直连线即可。
Ⅷ 我现在有一台H3c s3100交换机 和一台 思科2600系列的路由器,我要做一个实验,就是两台
在路由器上不同接口配置不同网段的IP地址,然后配置这两个网段的DHCP服务。交换机连接到相应的路由器接口,这样插在不同网段的PC机就会自动获得不同网段的IP地址。由于是直连网络,不需要配置路由协议就可以直接PING通不同网段的主机。
Ⅸ 思科模拟器,路由器和交换机如何联合使用
你的命令不对。在路由器配置IP地址是在接口配置模式,而不是在全局配置模式。配置命令是
ip add IP地址 子网掩码
路由器接口IP地址配置好后在PC机上配置该网段的IP地址及默认网关,注意默认网关就是连接该网段的路由器接口的IP地址。这样在不同PC机上ping其他PC机即可通。
Ⅹ Cisco思科路由与交换机配置问题VLAN和OSPF和EIGRP。
3.
Switch>enSwitch#conf tEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#vtp mode server Device mode already VTP SERVER.Switch(config)#vtp domain cwjChanging VTP domain name from NULL to manageSwitch(config)#vtp password ciscoSetting device VLAN database password to cisco Switch(config)#int f0/1Switch(config-if)#switchport trunk encapsulation dot1q Switch(config-if)#switchport mode trunk
2Switch>enSwitch#conf tEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#vtp mode clientSetting device to VTP CLIENT mode.Switch(config)#vtp domain manageDomain name already set to manage.Switch(config)#vtp password ciscoSetting device VLAN database password to cisco
3
Switch(config-if)#exitSwitch(config)#vlan 2Switch(config-vlan)#name vlan2Switch(config-vlan)#exit Switch(config)#vlan 3Switch(config-vlan)#name vlan3
2.Switch(config)#int f0/1Switch(config-if)#switchport mode trunk Switch(config-if)#exit Switch(config)#int f0/2Switch(config-if)#switchport access vlan 2Switch(config-if)#exit vlSwitch(config)#int f0/3Switch(config-if)#switchport access vlan 3 3.Switch(config-vlan)#exit Switch(config)#int vlan2 %LINK-5-CHANGED: Interface Vlan2, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan2, changed state to upSwitch(config-if)#ip add 192.168.1.1 255.255.255.0Switch(config-if)#no shutSwitch(config-if)#exit Switch(config)#int vlan 3 %LINK-5-CHANGED: Interface Vlan3, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan3, changed state to upSwitch(config-if)#ip add 192.168.2.1 255.255.255.0Switch(config-if)#no shut zz.192.168.1.2255.255.255.0192.168.1.1 zy192.168.2.2255.255.255.0182.168.2.1