link-aggregation ethernet0/1 to ethernet0/2 both
时间: 2023-12-12 10:05:32 浏览: 130
HCNA-RS实验手册
您的问题是将以太网接口Ethernet0/1和Ethernet0/2聚合成链路聚合组(LAG)吗?如果是的话,您可以使用以下命令:
```
interface Port-channel 1
no switchport
ip address <IP address> <subnet mask>
<other interface configurations>
exit
interface Ethernet0/1
channel-group 1 mode active
<other interface configurations>
exit
interface Ethernet0/2
channel-group 1 mode active
<other interface configurations>
exit
```
上述命令将创建一个端口聚合组,并将以太网接口Ethernet0/1和Ethernet0/2添加到该聚合组中。mode active表示使用主动聚合模式。您也可以使用其他模式,例如静态或协议。请根据您的网络需求进行选择。
阅读全文