实验二食用教程

计网实验二

学校的教程又臭又长,故进行食用级教程

image-20240529203108764

先按照实验要求把机器和线都连接出来,但是有一个坑 Switch0 和 Switch1要用0/3-4连接

image-20240529203118526

然后对交换机Switch0 , Switch1进行下面的操作

enable
config  t
interface range fa 0/3-4
switchport mode trunk  
channel-group 1 mode on 
exit
port-channel load-balance dst-ip
exit
show etherchannel summary 

将每台PC的机器的IP地址设置完备,并且两两之间能够ping通

接着在交换机上建立VLAN

 注,不要动0/3-4,已经使用过了

image-20240529203125570

建立VLAN流程

enable
config t
vlan 2
exit
vlan 3
end
show vlan

分配VLAN流程

enable
config t 
interface fastethernet 0/x  // 此处的x代指和PC相连的Switch接口
switchport access vlan x // 此处的x代指将PC分配的VLAN口

PC登录Switch0 , Switch1

两个过程类似,注意要选择对应PC的VLAN口

enable
config t
interface vlan x // x为PC所在的VLAN口
ip address "ip地址" "位掩码" // ip地址和位掩码按照实验要求来
// 搞错了ip地址或者位掩码的话 no ip address可以重置
no shutdown
exit
enable password "密码"// 特权模式的密码
line vty 0 4
password "密码" // telnet登录密码
login
end
posted @ 2024-05-29 20:33  xlxDH  阅读(4)  评论(0编辑  收藏  举报