有了ROS軟路由的朋友,家里有個局域網還要買個多口的千兆的交換機會增加不少的成本。如果ROS軟路由的電腦主板上有足購的PCI插槽或者集成二口千兆網卡的最好,那么按照下面的方法能實現多口千兆交換機的功能。一般家用的都是用ADSL拔號上網的,那么wan的網卡就用intel的100兆網卡即可。假如有五塊千兆網卡組成lan,即ether1,ether2,ether3,ether4,ether5,ether6(接寬帶的wan口)那么:
1、先建立一個名為bridge的橋
interface bridge add name=”bridge” disable=no
2、將ether1-ether5的五塊網卡加入到這個新建的橋中
interface bridge port add interface=ether1 bridge=bridge
interface bridge port add interface=ether2 bridge=bridge
interface bridge port add interface=ether3 bridge=bridge
interface bridge port add interface=ether4 bridge=bridge
interface bridge port add interface=ether5 bridge=bridge
ok,五塊已經組成橋
3、設置橋的IP地址,如192.168.1.1
ip address add address 192.168.1.1/24 interface=bridge
這時,可以用winbox連接ROS了,其他的設置皆可在winbox 里操作了。
5個lan口就像交換機一樣使用了,性能比普通的千兆交換機要好得多。
版權聲明:文章圖片資源來源于網絡,如有侵權,請留言刪除!!!
評論