MikroTik 基础设置

基本网络设置

  • RouterOS恢复原厂设置
/system reset-configuration
  • 配置网卡名称

请先确认lan wan口,自行更改ether 1 2的网口名称,多个网卡以此类推

/interface set ether1 name=lan
/interface set ether2 name=wan
/interface pppoe-client add name=pppoe-out1 interface=wan disabled=no
  • 建立bridge桥接
/interface bridge add name=bridge1
/interface bridge port add bridge=bridge1 interface=lan
  • 配置网络地址
/ip address add interface=bridge1 address=10.10.10.1/24 network=10.10.10.10
#wan口地址为光猫地址,方便访问光猫,可不配置
/ip address add interface=wan address=192.168.1.2/24 network=192.168.1.1 disabled=yes
  • 配置dhcp
/ip pool add name=dhcpv4-pool1 ranges=10.10.10.100-10.10.10.200
/ip dhcp-server add name=dhcpv4-server1 interface=bridge1 address-pool=dhcpv4-pool1 lease-time=1d
/ip dhcp-server network add address=10.10.10.0/24 gateway=10.10.10.1 dns-server=10.10.10.1

配置dhcp范围为100-200,剩余地址为手动静态地址,可自行修改分配范围。 配置dhcp池为dhcpv4-pool1 配置dhcp分配的的dns服务和网关为10.10.10.1主路由地址,如果上面网络地址为其他地址需要自行修改

  • 配置dns
/ip dns set servers=223.5.5.5 allow-remote-requests=yes max-concurrent-queries=4096 max-concurrent-tcp-sessions=512 cache-size=8192 cache-max-ttl=04:00:00

配置dns地址为223.5.5.5

  • 配置源地址伪装
/ip firewall nat add action=masquerade chain=srcnat

Emjoy!

现在就可以设置拨号上网了

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容