同一局域网不同vlan怎样联星际争霸局域网1

虚拟局域网VLAN(一)
制作人:张小刚 QQ:
实验环境:
两个智能交换机划分两个Vlan和一个Native
vlan,其中Native vlan是用来和傻瓜交换机连接的。
设置两个智能交换机的f0/3接口为trunk模式。
实验简介:
1.Vlan的概念及优势
在传统的交换机以太网中,所有的用户都在同一个广播域中,当网络规模较大时,广播包的数量会急剧增加,当广播包的数量占到总量的30%时,网络的传输效率将会明显下降。特别是当某网络设备出现故障后,则会不停的向网络发送广播,从而导致广播风暴,使网络通信陷于瘫痪。
分离广播有两种方法:物理分离、逻辑分离。
物理分隔有很多缺点,它会使得局域网的设计缺乏灵活性。
2.Vlan的种类
静态vlan:静态vlan也称基于端口的vlan,是目前最常见的vlan方法。明确指定交换机端口属于哪个Vlan,这需要手工配置。
动态vlan:动态的vlan实现的方法有很多种,目前最普遍的实现方法是基于mac地址的动态vlan。基于mac地址的动态vlan,是根据主机的mac地址自动将其指派到合适的vlan中。这种vlan的优点:当用户物理位置移动时,即从一个交换机到其他的交换机时,vlan不用重新配置。但缺点是初始化时所有的用户都必须进行配置。
3.静态vlan的配置
Vlan的Id范围
仅限系统使用。用户不用查看和使用
Cisco默认的Vlan,用户能够使用,但不能删除它
用于以太网的Vlan,用户可以创建,使用和删除
也能够与FDDI和令牌环的Cisco默认Vlan,用户不能删除
仅限于系统使用,用户不能查看和使用
仅用于以太网Vlan
实验步骤:
1.首先用vpcs虚拟pc配置客户端的ip地址。
不同的vlan配置不同的网段,vlan的作用的是实现隔离广播域,减少广播风暴等功能。
2.配置交换机,划分连个Vlan和一个Native
Vlan和一个trunk模式,然后将相应的接口加入到不同的Vlan中。
SW1的配置如下
sw1&en //进入特权模式
sw1#vlan database //进入Vlan数据库,进行划分Vlan
sw1(vlan)#vlan 2 name vl2 //划分Vlan2 名称为VL2 这里名称可以随便取
VLAN 2 added:
sw1(vlan)#vlan 3 name vl3 //划分Vlan3
VLAN 3 added:
sw1(vlan)#exit
APPLY completed.
Exiting....
sw1# //退出并保存划好的vlan
sw1(config)#int f0/2 //进入f0/2接口
sw1(config-if)#switchport priority default 1 //设置Native
sw1(config)#int f0/0 //进入f0/0
sw1(config-if)#switchport access vlan 2 //将f0/0接口加入到Vlan2中
sw1(config-if)#no shutdown //开启接口
sw1(config-if)#int f0/1 //进入f0/1接口
sw1(config-if)#switchport access vlan 3 //将f0/1接口加入到Vlan3中
sw1(config-if)#no shutdown //开启接口
sw1(config-if)#int f0/3 //进入f0/3接口
sw1(config-if)#switchport mode trunk
//设置f0/3接口的模式为trunk(中继模式)
sw1(config-if)#no shutdown //开启接口
sw1#show ip int brief //查看接口的开启情况
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES unset administratively down
FastEthernet0/1 unassigned YES unset up up
FastEthernet0/2 unassigned YES unset administratively down
FastEthernet0/3 unassigned YES unset up up
FastEthernet0/4 unassigned YES unset administratively down
FastEthernet0/5 unassigned YES unset administratively down
FastEthernet0/6 unassigned YES unset administratively down
FastEthernet0/7 unassigned YES unset administratively down
FastEthernet0/8 unassigned YES unset administratively down
FastEthernet0/9 unassigned YES unset administratively down
FastEthernet0/10 unassigned YES unset administratively down
FastEthernet0/11 unassigned YES unset administratively down
FastEthernet0/12 unassigned YES unset administratively down
FastEthernet0/13 unassigned YES unset administratively down
FastEthernet0/14 unassigned YES unset administratively down
FastEthernet0/15 unassigned YES unset administratively down
Vlan1 unassigned YES unset up up
Vlan2 unassigned YES unset up up
SW2的配置如下
sw2#vlan database
sw2(vlan)#vla
sw2(vlan)#vlan 2 name vl2
VLAN 2 added:
sw2(vlan)#vlan 3 name vl3
VLAN 3 added:
sw2(vlan)#exit
sw2#conf terminal
sw2(config)#int f0/2
sw2(config-if)#switchport priority default 1
sw2(config-if)#no shutdown
sw2(config-if)#int f0/0
sw2(config-if)#switchport access vlan 2
sw2(config-if)#no shutdown
sw2(config-if)#int f0/1
sw2(config-if)#switchport access vlan 3
sw2(config-if)#no shutdown
sw2(config-if)#int f0/3
sw2(config-if)#switchport mode trunk
sw2(config-if)#no shutdown
sw2#show ip int brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES unset up up
FastEthernet0/1 unassigned YES unset up up
FastEthernet0/2 unassigned YES unset up up
FastEthernet0/3 unassigned YES unset up up
FastEthernet0/4 unassigned YES unset administratively down
FastEthernet0/5 unassigned YES unset administratively down
FastEthernet0/6 unassigned YES unset administratively down
FastEthernet0/7 unassigned YES unset administratively down
FastEthernet0/8 unassigned YES unset administratively down
FastEthernet0/9 unassigned YES unset administratively down
FastEthernet0/10 unassigned YES unset administratively down
FastEthernet0/11 unassigned YES unset administratively down
FastEthernet0/12 unassigned YES unset administratively down
FastEthernet0/13 unassigned YES unset administratively down
FastEthernet0/14 unassigned YES unset administratively down
FastEthernet0/15 unassigned YES unset administratively down
Vlan1 unassigned YES unset up up
Vlan2 unassigned YES unset up up
Vlan3 unassigned YES unset up up
SG1配置如下:这里只需要打开接口就行了。真正的傻瓜交换机是模式是打开的。
sg1(config)#int range f0/0 -2 //进入接口的范围
sg1(config-if-range)#no shutdown //同时打开多个接口
SG2配置跟SG1一样
sg2(config)#int range f0/0 -2
sg2(config-if-range)#no shutdown
3.到这里交换机的配置就基本完成了。接下来就是在vpcs中测试在同一个Vlan中ping在不同的vlan中ping
出现上图的问题后,可以检查所有的交换机的接口是否都打开。然后在测试。在上面中pingvlan2的主机不通,检测到vlan主机的所有接口
4.接着测试ping不在同一个范围的vlan的主机是不是通信。
5.最后,证明了,在大公司中,根据不同的部门可以划分vlan隔离通信,还有广播风暴。实验结束。
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。& 《星际争霸》免安装中文绿色硬盘版+局域网联机教程 ...
查看: 104420|回复: 18
『射击游戏区』游侠攻略组组长天际·静默者
UID5258059主题阅读权限50帖子精华5积分6918金钱5181 荣誉353 人气1271 在线时间34549 小时评议0
帖子精华5积分6918金钱5181 荣誉353 人气1271 评议0
游侠对战平台下载地址:联机QQ群:1群 (满),2群 (可加),3群 (满),四群 (推荐)&&水友群: 游戏或者联机问题请加游侠对战平台客服QQ:。
《星际争霸》1.08中文绿色硬盘版&& 百度网盘: 旋风分享:内含版本转换器(支持1.08—1.16.1),可以转换你想要的任意版本。
【游戏安装说明】
开始游戏或者解压缩游戏时候注意关闭杀毒软件,防止误杀免DVD文件。
1). 使用winrar软件解压缩到硬盘任意目录
2). 管理员权限双击运行SETUP.EXE(第一次解压玩,必须先运行这个打上注册表。)
3). 运行StarCraft.exe或者HanStar.exe(1.11版本以上必须运行StarCraft.exe)
说明:WIN7用户,遇到花屏,管理员权限运行星际花屏补丁全版本支持.exe即可。
星际争霸版本转换器,放到目录下可以任意转换。(1.11以及之前版本可用HanStar.exe进去玩,汉化更完整。)
WIN7用户,如果运行了SETUP.EXE之后还进不去游戏;选中StarCraft.exe右键点属性,选择兼容XP模式,运行。
星际争霸联机教程1:通过游侠对战平台星际争霸房间进入游戏。
2:看图,使用局域网创建游戏或者加入别人的房间游戏。
创建房间或加入局域网,必须选择局域网[UDP协议]。
16:23:00 上传
16:23:01 上传
16:23:01 上传
16:23:02 上传
16:23:02 上传
16:23:03 上传
16:23:03 上传
16:23:04 上传
16:23:04 上传
16:23:05 上传
16:23:05 上传
UID580132主题阅读权限10帖子精华0积分1金钱11 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱11 荣誉0 人气0 评议0
支持。。。。。。。。。。。。
UID383405主题阅读权限20帖子精华0积分148金钱1571 荣誉0 人气0 在线时间459 小时评议0
Lv.2游侠会员, 积分 148, 距离下一级还需 52 积分
帖子精华0积分148金钱1571 荣誉0 人气0 评议0
win7 64位 AMD7750显卡 打补丁后依然花屏.求解.运行补丁程序提示&无法定位程序输入点 RichEDIT10ANSIWndproc 于动态链接库RICHED20.dll上.
UID2233665主题阅读权限20帖子精华0积分8金钱187 荣誉0 人气0 在线时间21 小时评议0
Lv.2游侠会员, 积分 8, 距离下一级还需 192 积分
帖子精华0积分8金钱187 荣誉0 人气0 评议0
不是中文的
『射击游戏区』游侠攻略组组长天际·静默者
UID5258059主题阅读权限50帖子精华5积分6918金钱5181 荣誉353 人气1271 在线时间34549 小时评议0
帖子精华5积分6918金钱5181 荣誉353 人气1271 评议0
<font color="#7480112 发表于
不是中文的
看安装说明,第二步
UID8893005主题阅读权限10帖子精华0积分1金钱1 荣誉0 人气0 在线时间0 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱1 荣誉0 人气0 评议0
starcraft is unable to read a required file.your starcraft CD.may not be in the CDROM drive.please ensure that the starcraft disc is in the CDROM drive and press OK.To leave the program,press Exit.
UID8678823主题阅读权限10帖子精华0积分1金钱111 荣誉0 人气0 在线时间46 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱111 荣誉0 人气0 评议0
UID8908940主题阅读权限10帖子精华0积分1金钱22 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱22 荣誉0 人气0 评议0
运行了也不是中文·,抓狂
UID509572主题阅读权限40帖子精华0积分557金钱1507 荣誉30 人气0 在线时间88 小时评议0
Lv.4游侠高级会员, 积分 557, 距离下一级还需 443 积分
帖子精华0积分557金钱1507 荣誉30 人气0 评议0
现在还能玩么?
最新手机游戏下载
UID8733292主题阅读权限10帖子精华0积分2金钱19 荣誉0 人气0 在线时间6 小时评议0
Lv.1游侠新人, 积分 2, 距离下一级还需 3 积分
帖子精华0积分2金钱19 荣誉0 人气0 评议0
出中文版的啦,小时候因为英文都不会玩
UID7233258主题阅读权限10帖子精华0积分1金钱22 荣誉0 人气0 在线时间0 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱22 荣誉0 人气0 评议0
迅雷资源挂了能从熊挂一个么
UID3039400主题阅读权限20帖子精华0积分16金钱110 荣誉0 人气0 在线时间0 小时评议0
Lv.2游侠会员, 积分 16, 距离下一级还需 184 积分
帖子精华0积分16金钱110 荣誉0 人气0 评议0
求个1.11b的完整带中文CG的版本,论坛里的都失效了,
有哪位星际大神,有保留的,请分享下,谢谢。
UID主题阅读权限10帖子精华0积分2金钱14 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 2, 距离下一级还需 3 积分
帖子精华0积分2金钱14 荣誉0 人气0 评议0
花屏你估计要重开
UID主题阅读权限10帖子精华0积分2金钱14 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 2, 距离下一级还需 3 积分
帖子精华0积分2金钱14 荣誉0 人气0 评议0
因为开的时间太长了
UID主题阅读权限10帖子精华0积分2金钱14 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 2, 距离下一级还需 3 积分
帖子精华0积分2金钱14 荣誉0 人气0 评议0
1.08要不要
UID主题阅读权限10帖子精华0积分2金钱14 荣誉0 人气0 在线时间1 小时评议0
Lv.1游侠新人, 积分 2, 距离下一级还需 3 积分
帖子精华0积分2金钱14 荣誉0 人气0 评议0
不过不知道是不是老板,下下来有两个
UID主题阅读权限10帖子精华0积分3金钱66 荣誉0 人气0 在线时间16 小时评议0
Lv.1游侠新人, 积分 3, 距离下一级还需 2 积分
帖子精华0积分3金钱66 荣誉0 人气0 评议0
UID主题阅读权限10帖子精华0积分1金钱31 荣誉0 人气0 在线时间9 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱31 荣誉0 人气0 评议0
为啥我搜不到主机
UID主题阅读权限10帖子精华0积分1金钱26 荣誉0 人气0 在线时间6 小时评议0
Lv.1游侠新人, 积分 1, 距离下一级还需 4 积分
帖子精华0积分1金钱26 荣誉0 人气0 评议0
我是来玩战役的
白金会员勋章
用户积分达到6000
荣誉达到150
Powered by}

我要回帖

更多关于 星际争霸2 局域网 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信