xia898 发表于 2011-12-1 12:20:47

ROS菜鸟-简单上网配置方法说明

ROS菜鸟系列(说明是从77的文件复制出来的,转载就注明出处,谢谢!)

一、实现共享上网

前提条件:一台装有从网大公司购买的装好ROS电子盘及两张网卡的主机,通过显示器登录ROS(版本为3.30)

实现第一步:查看网卡信息
进入菜单:interface
/interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
#   NAME                                        TYPE             MTU   L2MTU
0Rether1                                    ether            1500
1Rether2                                    ether            1500
从print命令显示的信息来看,两张网卡都已被ROS正常识别出来,如果显示的“X”,则表明网卡是禁用状态,如:
/interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
#   NAME                                        TYPE             MTU   L2MTU
0Xether1                                    ether            1500
1Rether2                                    ether            1500
网卡“ether1”处于禁用状态
可通过命令:
/interface> enable ether1
/interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
#   NAME                                        TYPE             MTU   L2MTU
0Rether1                                    ether            1500
1Rether2                                    ether            1500

设定“ether1”为外网网卡,“ether2”为内网网卡
/interface> set ether1 name=wan
/interface> set ether2 name=lan
/interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
#   NAME                                        TYPE             MTU   L2MTU
0Rwan                                       ether            1500
1Rlan                                       ether            1500

实现第二步:配置IP地址
1)如果是具备固定外网IP地址时:
假定外网IP地址为172.16.0.2/28,网关是172.168.0.1,内网为192.168.1.1/24
接上面:
/interface> /ip address
/ip address> add address=172.16.0.2/28 interface=wan
/ip address> add address=192.168.1.1/24 interface=lan
/ip address> print
Flags: X - disabled, I - invalid, D - dynamic
#   ADDRESS            NETWORK         BROADCAST       INTERFACE            
0   172.16.0.2/28      172.16.0.0      172.16.0.15   wan                  
1192.168.1.1/24   192.168.1.0   192.168.1.255   lan   

2)如果通过ADSL拨号共享上网时:
假定ADSL的用户名:111和密码:111,内网:192.168.1.1/24
/interface> pppoe-client
/interface pppoe-client> add user=111 password=111 interface=wan add-default-route=yes
/interface pppoe-client> print
Flags: X - disabled, R - running
0 Xname="pppoe-out1" max-mtu=1480 max-mru=1480 mrru=disabled interface=wan user="111" password="111" profile=default service-name="" ac-name="" add-default-route=yes dial-on-demand=no use-peer-dns=no allow=pap,chap,mschap1,mschap2
/interface pppoe-client> /ip address
/ip address> add address=192.168.1.1/24 interface=lan
/ip address> print
Flags: X - disabled, I - invalid, D - dynamic
#   ADDRESS            NETWORK         BROADCAST       INTERFACE            
0   192.168.1.1/24   192.168.1.0   192.168.1.255   lan   

实现第三步:配置网关
1)固定IP:
/ip address> /ip route                              
/ip route> add gateway=172.16.0.1
/ip route> print
Flags: X - disabled, A - active, D - dynamic,
C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme,
B - blackhole, U - unreachable, P - prohibit
#      DST-ADDRESS      PREF-SRC      G GATEWAY            DISTANCE IN..
0 A S0.0.0.0/0                        r 172.16.0.1         1      wan
1 ADC172.16.0.0/28      172.16.0.2                           0      wan
2 ADC192.168.1.0/24   192.168.1.1                            0      lan
   2)如果是ADSL,不需要配置,因为在上面配置IP地址是,选择参数:add-default-route=yes

实现第四步:配置DNS
/ip route> /ip dns
/ip dns> set primary-dns=61.139.2.69 allow-remote-requests=yes
/ip dns> print
            primary-dns: 61.139.2.69
          secondary-dns: 0.0.0.0
allow-remote-requests: yes
    max-udp-packet-size: 512
             cache-size: 2048KiB
          cache-max-ttl: 1w
             cache-used: 5KiB
参数allow-remote-requests=yes,意思是本地路由启用DNS功能,即:在内网机器上,配置DNS时可以直接使用网关地址作DNS服务器

实现第五步:隐藏,共享上网(NAT)
/ip dns> /ip firewall nat
/ip firewall nat> add chain=srcnat action=masquerade
/ip firewall nat> print
Flags: X - disabled, I - invalid, D - dynamic
0   chain=srcnat action=masquerade

以上五步即可完成利用ROS实现内网多台机器共享上网的功能,在后续的系列中,我们会在此基础上添加其他功能,利用ROS现实现其他目标明确的功能
高手请飘过,

如果是通过winbox连接到ROS的用户,以上所有的命令都可以在winbox中的主菜单中的:“new terminal”直接进行粘贴操作使用

tufei 发表于 2011-12-1 20:33:52

内容与标题不符。你让菜鸟去打命令??会打命令的还是菜鸟吗??

老树昏鸦 发表于 2011-12-2 01:53:50

还行吧,这菜鸟不会做作业,还不会抄作业啊,如果抄都不会,那不是鸟。

snowguest 发表于 2011-12-24 12:23:00

学习嘛,大家一起学习

linyl 发表于 2012-1-27 02:32:15

你让菜鸟去打命令??
页: [1]
查看完整版本: ROS菜鸟-简单上网配置方法说明