From 009718356d5a3210b67f625c201020ea4db32000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?48=E6=9D=8E=E5=A0=94=E4=B9=89?= <3029690759@qq.com> Date: Tue, 7 May 2024 14:50:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E6=88=90=E6=A0=91=E5=8D=8F=E8=AE=AERS?= =?UTF-8?q?TP=E5=92=8C=E7=AB=AF=E5=8F=A3=E8=81=9A=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...57\345\217\243\350\201\232\345\220\210.md" | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 "48\346\235\216\345\240\224\344\271\211/20240507-\347\224\237\346\210\220\346\240\221\345\215\217\350\256\256RSTP\345\222\214\347\253\257\345\217\243\350\201\232\345\220\210.md" diff --git "a/48\346\235\216\345\240\224\344\271\211/20240507-\347\224\237\346\210\220\346\240\221\345\215\217\350\256\256RSTP\345\222\214\347\253\257\345\217\243\350\201\232\345\220\210.md" "b/48\346\235\216\345\240\224\344\271\211/20240507-\347\224\237\346\210\220\346\240\221\345\215\217\350\256\256RSTP\345\222\214\347\253\257\345\217\243\350\201\232\345\220\210.md" new file mode 100644 index 0000000..dbca572 --- /dev/null +++ "b/48\346\235\216\345\240\224\344\271\211/20240507-\347\224\237\346\210\220\346\240\221\345\215\217\350\256\256RSTP\345\222\214\347\253\257\345\217\243\350\201\232\345\220\210.md" @@ -0,0 +1,23 @@ +# 生成树协议RSTP + +Switch0和Switch1配置 + +1. inter range fa0/23-24 +2. switch mode trunk +3. exit +4. spanning-tree mode rapid-pvst //指定生成树协议的类型为RSTP +5. end +6. show spanning-tree //查看端口状态 + +# 端口聚合 + +Switch0和Switch1配置 + +1. inter range fa0/23-24 +2. switch mode trunk //将端口配置为Trunk模式 +3. channel-group 1 mode on //加入链路组1并开启 +4. exit +5. port-channel load-balance dst-ip //按目的IP地址来实现负载均衡 +6. exit +7. show etherchannel summary //显示以太通道信息 +8. show interfaces etherchannel //显示聚合端口信息 \ No newline at end of file -- Gitee