安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
| _ _|
/`ミ _x 彡
/ |
/ ヽ ノ
/ ̄| | | |
| ( ̄ヽ__ヽ_)_)
\二つ加我兄弟
p.s. thigh highs are the way into my heart <3
• Create VLANs 10 and 20 on Switch1
• Configure access ports on FastEthernet0/1 and FastEthernet0/2 to be members of VLANs 10 and 20, respectively
• Configure GigabitEthernet0/1 as a trunk port, allowing traffic for VLANs 10 and 20 to be carried between Switch1 and Switch2
Note that we also configure Switch2 with similar VLAN and trunk port configurations, so that traffic can be exchanged between the switches for the VLANs that are allowed on the trunk link.
With this configuration, PC1 and PC2 will be able to communicate with each other, even though they are connected to separate switches. The VLAN tags on the trunk link allow Switch1 and Switch2 to differentiate between traffic for VLAN 10 and traffic for VLAN 20, and forward it to the appropriate destination.
I hope that helps!
Switch1(config)# interface GigabitEthernet0/1
Switch1(config-if)# switchport mode trunk
Switch1(config-if)# switchport trunk allowed vlan 10,20
Switch1(config-if)# exit
Switch1(config)# interface GigabitEthernet0/1.10
Switch1(config-subif)# encapsulation dot1Q 10
Switch1(config-subif)# ip address 10.0.10.1 255.255.255.0
Switch1(config-subif)# exit
Switch1(config)# interface GigabitEthernet0/1.20
Switch1(config-subif)# encapsulation dot1Q 20
Switch1(config-subif)# ip address 10.0.20.1 255.255.255.0
Switch1(config-subif)# exit
Switch1(config)# exit