Eth-Trunk101使用正则表达式匹配
时间: 2023-05-25 11:02:01 浏览: 227
华为S系列交换机Eth-Trunk特性入门_V1.0_D
源MAC地址,如何配置?
A:在Eth-Trunk101的接口配置中,可以使用正则表达式来指定源MAC地址的匹配规则。具体的配置方式如下:
1. 进入Eth-Trunk101接口配置模式:
conf t
interface Eth-Trunk101
2. 指定源MAC地址的匹配规则,使用mac-address command + 正则表达式:
mac-address source-mac-address [exact | reg-exp] mac-address
其中,exact表示精确匹配,reg-exp表示正则表达式匹配。
例如,如果要匹配源MAC地址为00-11-22-33-44-55的数据流,可以使用以下命令:
mac-address source-mac-address exact 0011.2233.4455
如果要使用正则表达式匹配,可以使用以下命令:
mac-address source-mac-address reg-exp ^0011\.2233\.4455$
其中,^表示字符串开头,$表示字符串结尾,\.表示匹配.字符本身。
3. 保存并退出接口配置模式:
end
4. 最后,记得将Eth-Trunk101加入到适当的交换机端口组中,以便数据流可以经过Eth-Trunk101进行源MAC地址匹配。
阅读全文