EdgeMAX er-5配置为交换机
最近看了网上说的ubnt的路由器转发性能很强,对比了几个型号后,选中了ex-5,因为我家里正好有个ubnt的ap,而ex-5端口带有poe功能,这样相当于省下一笔购买poe交换机的钱了.本来最开始是打算让er-5来当主路由,但我设置了单线多拨后,反而速度还不如之前的软路由,只好退而求次,让他来当交换机.
1.先把网线插到eth0口上,并给电脑配置静态ip为192.168.1.22/24
2.通过SSH连接
ssh ubnt@192.168.1.1
密码是ubnt
3.执行以下命令确保 eth2,3和4是switch0的成员
configure
set interfaces switch switch0 switch-port interface eth2
set interfaces switch switch0 switch-port interface eth3
set interfaces switch switch0 switch-port interface eth4
commit
save
4.修改eth0接口的ip
configure
set interfaces ethernet eth0 address 10.0.0.1/24
commit
save
5.把电脑静态ip改为
10.0.0.22/24
然后重新ssh连接
ssh ubnt@10.0.0.1
6.创建一个新的桥接(br0),添加 switch0(eth2,3,4)和eth1作为桥接组成员并为新的桥接接口指定一个 IP 地址
set interfaces bridge br0
set interfaces bridge br0 address 192.168.1.4/24
set interfaces switch switch0 bridge-group bridge br0
set interfaces ethernet eth1 bridge-group bridge br0
commit
save
exit
为什么这里要设为192.168.1.4呢,这样是为了防止跟主路由的ip冲突,一般主路由的是192.168.1.1
7.把网线随便插到eth1-4的那个口上,并把电脑ip改为192.168.1.22,然后再ssh链接
ssh ubnt@192.168.1.4
8.删除eth0的ip,并将其加到桥接组里
configure
delete interfaces ethernet eth0 address
commit
set interfaces ethernet eth0 bridge-group bridge br0
commit
save
exit
好了,现在已经将其5个口都加入到了一个lan里了.当然这是将其变为了一个傻瓜的交换机来使用,他的vlan功能,poe功能都没有使用上,下次有机会再讲吧.
评论: