routeros
3 人赞同了该文章
我相信了解该路由器的人都知道它的强大,
不应该把MikroTik当交换机使用。
但是凡是都有特殊情况吧。
比如,我有一个购买十年之久的RB750GL。
uptime: 3w4d22h27m49s
version: 6.45.8 (long-term)
build-time: Jan/23/2020 07:19:45
free-memory: 39.1MiB
total-memory: 64.0MiB
cpu: MIPS 24Kc V7.4
cpu-count: 1
cpu-frequency: 400MHz
cpu-load: 6%
free-hdd-space: 48.0MiB
total-hdd-space: 64.0MiB
write-sect-since-reboot: 218268
write-sect-total: 32398238
bad-blocks: 0%
architecture-name: mipsbe
board-name: RB750GL
platform: MikroTik
CPU性能已经十分羸弱了,我们不得不使用考虑将其替换。但是放着吃灰十分可惜。
比如,临时缺交换机,手头刚好有MikroTik,确实可以临时顶替。
直接甩配置好了。
废话一箩筐,导入即用。
普通交换机(无vlan傻瓜交换机):
/interface bridge
add name=bridge1 protocol-mode=none
/interface bridge port
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether1
VLAN交换机的配置:
/interface vlan
add interface=ether5 name=vlan101 vlan-id=101
add interface=ether5 name=vlan102 vlan-id=102
add interface=ether5 name=vlan103 vlan-id=103
add interface=ether5 name=vlan104 vlan-id=104
/interface bridge
add name=bridge101 protocol-mode=none
add name=bridge102 protocol-mode=none
add name=bridge103 protocol-mode=none
add name=bridge104 protocol-mode=none
/interface bridge port
add bridge=bridge101 interface=ether1
add bridge=bridge101 interface=vlan101
add bridge=bridge102 interface=ether2
add bridge=bridge102 interface=vlan102
add bridge=bridge103 interface=ether3
add bridge=bridge103 interface=vlan103
add bridge=bridge104 interface=ether4
add bridge=bridge104 interface=vlan104
该配置为我项目中实际使用的配置。
端口5为trunk,端口1,2,3,4分别是access口。
当然我没有更复杂的应用。
三层交换机,相信我不用配置吧。这本是该路由器应该的正常操作。
MikroTik的接口是三层接口。可以直接配置地址。
配置汇聚接口上联口的Vlan交换机
/interface bonding
add mode=802.3ad name=bonding1 slaves=ether5,ether4
/interface vlan
add interface=bonding1 name=vlan101 vlan-id=101
add interface=bonding1 name=vlan102 vlan-id=102
add interface=bonding1 name=vlan103 vlan-id=103
/interface bridge
add name=bridge101 protocol-mode=none
add name=bridge102 protocol-mode=none
add name=bridge103 protocol-mode=none
/interface bridge port
add bridge=bridge101 interface=ether1
add bridge=bridge101 interface=vlan101
add bridge=bridge102 interface=ether2
add bridge=bridge102 interface=vlan102
add bridge=bridge103 interface=ether3
add bridge=bridge103 interface=vlan103
使用汇聚端口配置成Trunk端口。协议标准的802.3ad
我这两年开始在生产环境中部署long-term。不在部署stable版本。
long-term优点就不说了,但是建议部署这个版本。