日照无线 发表于 2017-12-19 21:56

edgerouter 路由器配置全程

今天晚上去帮一个客户调试华为AR2200.看到AR2200包的转发速率为1M pps ,AR1200的包转发速度为350K,想起了一个在吃灰的ubnt edgerouter lite3路由器。先上图:

同样的包转发性能,一个在客户的机房当做高档设备供着,一个在角落吃灰。感觉不能再冷落它了。今天将配置过程记录下来,与各位分享。
配置全程使用串口,速率115200
默认用户名密码ubnt

载入默认配置。重启恢复出厂。
config
load /opt/vyatta/etc/config.boot.default
commit
save
exit
reboot

egderouter不集成交换机,用两个端口接桥成交换机会影响性能。用官方原话就是“useing switch interface for ERL3 is not a good idea"
但是我们有时要用两个LAN 口,今天我们不考虑性能,只做功能实现。
config
在路由器联网前一定修改默认密码!!修改路由器默认密码
set system login user ubnt authentication plaintext-password XXXXX
commit
删除默认eth0上的IP地址
set interfaces bridge br0
delete interfaces ethernet eth0 address 192.168.1.1/24
commit
建立桥br0,桥接路由器的eth0与eth1
set interfaces ethernet eth0 bridge-group bridge br0
set interfaces ethernet eth1 bridge-group bridge br0
commit
配置IP地址到br0及配置eth2IP 地址用作外网接口
set interfaces bridge br0 address 192.168.1.1/24
set interfaces bridge br0 description inside 标记内网
set interfaces ethernet eth2 address 192.168.100.240/24
set interfaces ethernet eth2 description outside 标记为外网
commit
配置默认路由
set protocols static route 0.0.0.0/0 next-hop 192.168.100.1
commit
配置DHCP服务器
set server dhcp-server shared-network-name landhcp subnet 192.168.1.0/24
set server dhcp-server shared-network-name landhcp subnet 192.168.1.0/24start 192.168.1.50 stop 192.168.1.200
set server dhcp-server shared-network-name landhcp subnet 192.168.1.0/24 default-router 192.168.1.1
set server dhcp-server shared-network-name landhcp subnet 192.168.1.0/24dns-server 8.8.8.8
commit
配置NAT
set server nat rule 5000 outbound-interface eth2
set server nat rule 5000 soure address 192.168.1.0/24
set server nat rule 5000 type masquerade
commit
开启硬件加速
set system offload ipv4 pppoe enable
set system offload ipv4 vlan enable
set system offload ipv4 forwarding enable
set system offload ipv4 gre enable
commit
保存退出
save
exit
不是复制粘贴,纯手工毃键盘,难免出现错字,请见谅!

喜欢请漂起你的666

爱快北京无线 发表于 2017-12-19 22:58

明明支持web配置,非手工装B

汉阳造001 发表于 2017-12-19 22:28

这个可以用,

Super131 发表于 2017-12-19 22:34

66666666666666

modi5156 发表于 2017-12-19 23:47

配置命令用的老溜了:lol

一爱一生 发表于 2017-12-20 02:22

666666666
满足您的要求

日照无线 发表于 2017-12-20 08:02

爱快北京无线 发表于 2017-12-19 22:58
明明支持web配置,非手工装B

:lol命令行是必须的,如果不用,删除默认IP后就有办法继续了。再一个原因就是要习惯使用命令交换机路由器及各类网络设备都是命令的.用命令最重要的原因就是学习VYOS。

tange 发表于 2017-12-20 10:09

WEB配置比较适合小白。不过,在实际设置时,确实命令行快捷有效,ER的系统在WEB时有些地方还有BUG

zhourongjun 发表于 2017-12-20 15:46

实在是太高大上了,表示没看懂
页: [1]
查看完整版本: edgerouter 路由器配置全程