找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 13421|回复: 27

[Vyatta] 实例分析

  [复制链接]
发表于 2010-9-7 18:19:55 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×
本帖最后由 情灭缘尽 于 2010-9-7 18:44 编辑

简单的实例分析帖,欢迎大家批评指正

每个配置我都按照配置文件显示形式和命令行显示形式各发了一份,大家各取所。
建议初学者看详细的看CMDS方式的配置文件,你配置的时候照着输入就可以了设置相应的信息了。
中等及其以上水平者,可以忽略cmds方式的配置文件,直接看配置文件形式的显示,该显示方式比较直观,一目了然。
高级和超高级者,您可以无视该帖,但是希望您能为广大学习vyatta的学习者提供必要的帮助。在此表示感谢。
routeros
 楼主| 发表于 2010-9-7 18:21:03 | 显示全部楼层

第一个实验

本帖最后由 情灭缘尽 于 2010-9-7 18:24 编辑

用虚拟机搭建了一个小环境,如图
ospf_test.jpg
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-7 18:27:14 | 显示全部楼层
NAT设备配置信息
vyatta@vyatta:~$ show configuration
interfaces {
    ethernet eth0 {
        address 172.31.3.1/24
        description vmnet3-to-VR3
        duplex auto
        hw-id 00:0c:29:88:e1:33
        smp_affinity auto
        speed auto
    }
    ethernet eth1 {
        address 172.31.2.1/24
        description vmnet2-to-VR4
        duplex auto
        hw-id 00:0c:29:88:e1:3d
        smp_affinity auto
        speed auto
    }
    ethernet eth2 {
        address 192.168.1.160/24
        description vmnet1-to-cisco7609
        duplex auto
        hw-id 00:0c:29:88:e1:47
        smp_affinity auto
        speed auto
    }
    loopback lo {
    }
}
protocols {
    ospf {
        area 0.0.0.0 {
            network 172.31.2.0/24
            network 172.31.3.0/24
        }
        default-information {
            originate {
                always
                metric-type 2
            }
        }
        parameters {
            abr-type cisco
            router-id 172.31.3.1
        }
        redistribute {
            connected {
                metric-type 2
            }
            static {
                metric-type 1
            }
        }
    }
    static {
        route 0.0.0.0/0 {
            next-hop 192.168.1.254 {
            }
        }
    }
}
service {
    nat {
        rule 1 {
            destination {
                address 0.0.0.0/0
            }
            outbound-interface eth2
            protocol all
            source {
                address 0.0.0.0/0
            }
            type masquerade
        }
    }
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name NAT
    login {
        user vyatta {
            authentication {
                encrypted-password ****************
            }
            level admin
        }
    }
    name-server 202.103.24.68
    name-server 202.103.0.117
    ntp-server 0.vyatta.pool.ntp.org
    package {
        auto-sync 1
        repository community {
            components main
            distribution stable
            password ****************
            url http://packages.vyatta.com/vyatta
            username ""
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Asia/Shanghai
}



CMD方式显示
set interfaces ethernet eth0 address '172.31.3.1/24'
set interfaces ethernet eth0 description 'vmnet3-to-VR3'
set interfaces ethernet eth0 duplex 'auto'
set interfaces ethernet eth0 hw-id '00:0c:29:88:e1:33'
set interfaces ethernet eth0 smp_affinity 'auto'
set interfaces ethernet eth0 speed 'auto'
set interfaces ethernet eth1 address '172.31.2.1/24'
set interfaces ethernet eth1 description 'vmnet2-to-VR4'
set interfaces ethernet eth1 duplex 'auto'
set interfaces ethernet eth1 hw-id '00:0c:29:88:e1:3d'
set interfaces ethernet eth1 smp_affinity 'auto'
set interfaces ethernet eth1 speed 'auto'
set interfaces ethernet eth2 address '192.168.1.160/24'
set interfaces ethernet eth2 description 'vmnet1-to-cisco7609'
set interfaces ethernet eth2 duplex 'auto'
set interfaces ethernet eth2 hw-id '00:0c:29:88:e1:47'
set interfaces ethernet eth2 smp_affinity 'auto'
set interfaces ethernet eth2 speed 'auto'
set interfaces loopback 'lo'
set protocols ospf area 0.0.0.0 network '172.31.2.0/24'
set protocols ospf area 0.0.0.0 network '172.31.3.0/24'
set protocols ospf default-information originate 'always'
set protocols ospf default-information originate metric-type '2'
set protocols ospf parameters abr-type 'cisco'
set protocols ospf parameters router-id '172.31.3.1'
set protocols ospf redistribute connected metric-type '2'
set protocols ospf redistribute static metric-type '1'
set protocols static route 0.0.0.0/0 next-hop '192.168.1.254'
set service nat rule 1 destination address '0.0.0.0/0'
set service nat rule 1 outbound-interface 'eth2'
set service nat rule 1 protocol 'all'
set service nat rule 1 source address '0.0.0.0/0'
set service nat rule 1 type 'masquerade'
set service ssh port '22'
set service ssh protocol-version 'v2'
set system host-name 'NAT'
set system login user vyatta authentication encrypted-password '$1$2sKi.Eb7$zxGaQgNohnfy1YZs3.ky8.'
set system login user vyatta level 'admin'
set system name-server '202.103.24.68'
set system name-server '202.103.0.117'
set system ntp-server '0.vyatta.pool.ntp.org'
set system package auto-sync '1'
set system package repository community components 'main'
set system package repository community distribution 'stable'
set system package repository community password ''
set system package repository community url 'http://packages.vyatta.com/vyatta'
set system package repository community username ''
set system syslog global facility all level 'notice'
set system syslog global facility protocols level 'debug'
set system time-zone 'Asia/Shanghai'
commit
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-7 18:37:20 | 显示全部楼层
VR3配置信息

vyatta@VR3:~$ show configuration
interfaces {
    ethernet eth0 {
        address 172.31.7.1/24
        description vmnet7-to-VR1
        duplex auto
        hw-id 00:0c:29:24:fd:e9
        smp_affinity auto
        speed auto
    }
    ethernet eth1 {
        address 172.31.4.1/24
        description vmnet4-to-VR2
        duplex auto
        hw-id 00:0c:29:24:fd:f3
        smp_affinity auto
        speed auto
    }
    ethernet eth2 {
        address 172.31.3.254/24
        description vmnet3-to-NAT
        duplex auto
        hw-id 00:0c:29:24:fd:fd
        smp_affinity auto
        speed auto
    }
    loopback lo {
    }
}
protocols {
    ospf {
        area 0.0.0.0 {
            network 172.31.7.0/24
            network 172.31.4.0/24
            network 172.31.3.0/24
        }
        parameters {
            abr-type cisco
            router-id 172.31.7.1
        }
    }
}
service {
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name VR3
    login {
        user vyatta {
            authentication {
                encrypted-password ****************
            }
            level admin
        }
    }
    ntp-server 0.vyatta.pool.ntp.org
    package {
        auto-sync 1
        repository community {
            components main
            distribution stable
            password ****************
            url http://packages.vyatta.com/vyatta
            username ""
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Asia/Shanghai
}


CMD方式显示
vyatta@VR3:~$ show configuration cmds
set interfaces ethernet eth0 address '172.31.7.1/24'
set interfaces ethernet eth0 description 'vmnet7-to-VR1'
set interfaces ethernet eth0 duplex 'auto'
set interfaces ethernet eth0 hw-id '00:0c:29:24:fd:e9'
set interfaces ethernet eth0 smp_affinity 'auto'
set interfaces ethernet eth0 speed 'auto'
set interfaces ethernet eth1 address '172.31.4.1/24'
set interfaces ethernet eth1 description 'vmnet4-to-VR2'
set interfaces ethernet eth1 duplex 'auto'
set interfaces ethernet eth1 hw-id '00:0c:29:24:fd:f3'
set interfaces ethernet eth1 smp_affinity 'auto'
set interfaces ethernet eth1 speed 'auto'
set interfaces ethernet eth2 address '172.31.3.254/24'
set interfaces ethernet eth2 description 'vmnet3-to-NAT'
set interfaces ethernet eth2 duplex 'auto'
set interfaces ethernet eth2 hw-id '00:0c:29:24:fd:fd'
set interfaces ethernet eth2 smp_affinity 'auto'
set interfaces ethernet eth2 speed 'auto'
set interfaces loopback 'lo'
set protocols ospf area 0.0.0.0 network '172.31.7.0/24'
set protocols ospf area 0.0.0.0 network '172.31.4.0/24'
set protocols ospf area 0.0.0.0 network '172.31.3.0/24'
set protocols ospf parameters abr-type 'cisco'
set protocols ospf parameters router-id '172.31.7.1'
set service ssh port '22'
set service ssh protocol-version 'v2'
set system host-name 'VR3'
set system login user vyatta authentication encrypted-password '$1$2sKi.Eb7$zxGaQgNohnfy1YZs3.ky8.'
set system login user vyatta level 'admin'
set system ntp-server '0.vyatta.pool.ntp.org'
set system package auto-sync '1'
set system package repository community components 'main'
set system package repository community distribution 'stable'
set system package repository community password ''
set system package repository community url 'http://packages.vyatta.com/vyatta'
set system package repository community username ''
set system syslog global facility all level 'notice'
set system syslog global facility protocols level 'debug'
set system time-zone 'Asia/Shanghai'
commit
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-7 18:38:42 | 显示全部楼层
VR4配置信息
vyatta@VR4:~$ show configuration
interfaces {
    ethernet eth0 {
        address 172.31.6.1/24
        description vmnet6-to-VR2
        duplex auto
        hw-id 00:0c:29:98:cf:1e
        smp_affinity auto
        speed auto
    }
    ethernet eth1 {
        address 172.31.5.1/24
        description vmnet5-to-VR1
        duplex auto
        hw-id 00:0c:29:98:cf:28
        smp_affinity auto
        speed auto
    }
    ethernet eth2 {
        address 172.31.2.254/24
        description vmnet2-to-nat
        duplex auto
        hw-id 00:0c:29:98:cf:32
        smp_affinity auto
        speed auto
    }
    loopback lo {
    }
}
protocols {
    ospf {
        area 0.0.0.0 {
            network 172.31.6.0/24
            network 172.31.5.0/24
            network 172.31.2.0/24
        }
        parameters {
            abr-type cisco
            router-id 172.31.6.1
        }
        redistribute {
            connected {
                metric-type 2
            }
            static {
                metric-type 2
            }
        }
    }
}
service {
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name VR4
    login {
        user vyatta {
            authentication {
                encrypted-password ****************
            }
            level admin
        }
    }
    ntp-server 0.vyatta.pool.ntp.org
    package {
        auto-sync 1
        repository community {
            components main
            distribution stable
            password ****************
            url http://packages.vyatta.com/vyatta
            username ""
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Asia/Shanghai
}


CMDS方式显示
vyatta@VR4:~$ show configuration cmds
set interfaces ethernet eth0 address '172.31.6.1/24'
set interfaces ethernet eth0 description 'vmnet6-to-VR2'
set interfaces ethernet eth0 duplex 'auto'
set interfaces ethernet eth0 hw-id '00:0c:29:98:cf:1e'
set interfaces ethernet eth0 smp_affinity 'auto'
set interfaces ethernet eth0 speed 'auto'
set interfaces ethernet eth1 address '172.31.5.1/24'
set interfaces ethernet eth1 description 'vmnet5-to-VR1'
set interfaces ethernet eth1 duplex 'auto'
set interfaces ethernet eth1 hw-id '00:0c:29:98:cf:28'
set interfaces ethernet eth1 smp_affinity 'auto'
set interfaces ethernet eth1 speed 'auto'
set interfaces ethernet eth2 address '172.31.2.254/24'
set interfaces ethernet eth2 description 'vmnet2-to-nat'
set interfaces ethernet eth2 duplex 'auto'
set interfaces ethernet eth2 hw-id '00:0c:29:98:cf:32'
set interfaces ethernet eth2 smp_affinity 'auto'
set interfaces ethernet eth2 speed 'auto'
set interfaces loopback 'lo'
set protocols ospf area 0.0.0.0 network '172.31.6.0/24'
set protocols ospf area 0.0.0.0 network '172.31.5.0/24'
set protocols ospf area 0.0.0.0 network '172.31.2.0/24'
set protocols ospf parameters abr-type 'cisco'
set protocols ospf parameters router-id '172.31.6.1'
set protocols ospf redistribute connected metric-type '2'
set protocols ospf redistribute static metric-type '2'
set service ssh port '22'
set service ssh protocol-version 'v2'
set system host-name 'VR4'
set system login user vyatta authentication encrypted-password '$1$2sKi.Eb7$zxGaQgNohnfy1YZs3.ky8.'
set system login user vyatta level 'admin'
set system ntp-server '0.vyatta.pool.ntp.org'
set system package auto-sync '1'
set system package repository community components 'main'
set system package repository community distribution 'stable'
set system package repository community password ''
set system package repository community url 'http://packages.vyatta.com/vyatta'
set system package repository community username ''
set system syslog global facility all level 'notice'
set system syslog global facility protocols level 'debug'
set system time-zone 'Asia/Shanghai'
commit
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-7 18:40:03 | 显示全部楼层
VR2配置信息
vyatta@VR2:~$ show configuration
interfaces {
    ethernet eth0 {
        address 172.31.8.100/24
        description vmnet8-to-bras
        duplex auto
        hw-id 00:0c:29:6c:87:10
        smp_affinity auto
        speed auto
    }
    ethernet eth1 {
        address 172.31.6.254/24
        description vmnet6-to-VR4
        duplex auto
        hw-id 00:0c:29:6c:87:1a
        smp_affinity auto
        speed auto
    }
    ethernet eth2 {
        address 172.31.4.254/24
        description vmnet4-to-VR3
        duplex auto
        hw-id 00:0c:29:6c:87:24
        smp_affinity auto
        speed auto
    }
    loopback lo {
    }
}
protocols {
    ospf {
        area 0.0.0.0 {
            network 172.31.6.0/24
            network 172.31.8.0/24
            network 172.31.4.0/24
        }
        parameters {
            abr-type cisco
            router-id 172.31.8.100
        }
    }
}
service {
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name VR2
    login {
        user vyatta {
            authentication {
                encrypted-password ****************
            }
            level admin
        }
    }
    ntp-server 0.vyatta.pool.ntp.org
    package {
        auto-sync 1
        repository community {
            components main
            distribution stable
            password ****************
            url http://packages.vyatta.com/vyatta
            username ""
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Asia/Shanghai
}

CMDS方式显示
vyatta@VR2:~$ show configuration cmds
set interfaces ethernet eth0 address '172.31.8.100/24'
set interfaces ethernet eth0 description 'vmnet8-to-bras'
set interfaces ethernet eth0 duplex 'auto'
set interfaces ethernet eth0 hw-id '00:0c:29:6c:87:10'
set interfaces ethernet eth0 smp_affinity 'auto'
set interfaces ethernet eth0 speed 'auto'
set interfaces ethernet eth1 address '172.31.6.254/24'
set interfaces ethernet eth1 description 'vmnet6-to-VR4'
set interfaces ethernet eth1 duplex 'auto'
set interfaces ethernet eth1 hw-id '00:0c:29:6c:87:1a'
set interfaces ethernet eth1 smp_affinity 'auto'
set interfaces ethernet eth1 speed 'auto'
set interfaces ethernet eth2 address '172.31.4.254/24'
set interfaces ethernet eth2 description 'vmnet4-to-VR3'
set interfaces ethernet eth2 duplex 'auto'
set interfaces ethernet eth2 hw-id '00:0c:29:6c:87:24'
set interfaces ethernet eth2 smp_affinity 'auto'
set interfaces ethernet eth2 speed 'auto'
set interfaces loopback 'lo'
set protocols ospf area 0.0.0.0 network '172.31.6.0/24'
set protocols ospf area 0.0.0.0 network '172.31.8.0/24'
set protocols ospf area 0.0.0.0 network '172.31.4.0/24'
set protocols ospf parameters abr-type 'cisco'
set protocols ospf parameters router-id '172.31.8.100'
set service ssh port '22'
set service ssh protocol-version 'v2'
set system host-name 'VR2'
set system login user vyatta authentication encrypted-password '$1$2sKi.Eb7$zxGaQgNohnfy1YZs3.ky8.'
set system login user vyatta level 'admin'
set system ntp-server '0.vyatta.pool.ntp.org'
set system package auto-sync '1'
set system package repository community components 'main'
set system package repository community distribution 'stable'
set system package repository community password ''
set system package repository community url 'http://packages.vyatta.com/vyatta'
set system package repository community username ''
set system syslog global facility all level 'notice'
set system syslog global facility protocols level 'debug'
set system time-zone 'Asia/Shanghai'
commit
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-7 18:46:14 | 显示全部楼层
VR1配置信息
vyatta@VR1:~$ show configuration
interfaces {
    ethernet eth0 {
        address 172.31.8.1/24
        description vmnet8-to-bras
        duplex auto
        hw-id 00:0c:29:2a:b1:45
        smp_affinity auto
        speed auto
    }
    ethernet eth1 {
        address 172.31.7.254/24
        description vmnet7-to-VR3
        duplex auto
        hw-id 00:0c:29:2a:b1:4f
        smp_affinity auto
        speed auto
    }
    ethernet eth2 {
        address 172.31.5.254/24
        description vmnet5-to-VR4
        duplex auto
        hw-id 00:0c:29:2a:b1:59
        smp_affinity auto
        speed auto
    }
    loopback lo {
    }
}
protocols {
    ospf {
        area 0.0.0.0 {
            network 172.31.8.0/24
            network 172.31.7.0/24
            network 172.31.5.0/24
        }
        parameters {
            abr-type cisco
            router-id 172.31.8.1
        }
    }
}
service {
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name VR1
    login {
        user vyatta {
            authentication {
                encrypted-password ****************
            }
            level admin
        }
    }
    ntp-server 0.vyatta.pool.ntp.org
    package {
        auto-sync 1
        repository community {
            components main
            distribution stable
            password ****************
            url http://packages.vyatta.com/vyatta
            username ""
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Asia/Shanghai
}

CMDS方式显示
vyatta@VR1:~$ show configuration cmds
set interfaces ethernet eth0 address '172.31.8.1/24'
set interfaces ethernet eth0 description 'vmnet8-to-bras'
set interfaces ethernet eth0 duplex 'auto'
set interfaces ethernet eth0 hw-id '00:0c:29:2a:b1:45'
set interfaces ethernet eth0 smp_affinity 'auto'
set interfaces ethernet eth0 speed 'auto'
set interfaces ethernet eth1 address '172.31.7.254/24'
set interfaces ethernet eth1 description 'vmnet7-to-VR3'
set interfaces ethernet eth1 duplex 'auto'
set interfaces ethernet eth1 hw-id '00:0c:29:2a:b1:4f'
set interfaces ethernet eth1 smp_affinity 'auto'
set interfaces ethernet eth1 speed 'auto'
set interfaces ethernet eth2 address '172.31.5.254/24'
set interfaces ethernet eth2 description 'vmnet5-to-VR4'
set interfaces ethernet eth2 duplex 'auto'
set interfaces ethernet eth2 hw-id '00:0c:29:2a:b1:59'
set interfaces ethernet eth2 smp_affinity 'auto'
set interfaces ethernet eth2 speed 'auto'
set interfaces loopback 'lo'
set protocols ospf area 0.0.0.0 network '172.31.8.0/24'
set protocols ospf area 0.0.0.0 network '172.31.7.0/24'
set protocols ospf area 0.0.0.0 network '172.31.5.0/24'
set protocols ospf parameters abr-type 'cisco'
set protocols ospf parameters router-id '172.31.8.1'
set service ssh port '22'
set service ssh protocol-version 'v2'
set system host-name 'VR1'
set system login user vyatta authentication encrypted-password '$1$2sKi.Eb7$zxGaQgNohnfy1YZs3.ky8.'
set system login user vyatta level 'admin'
set system ntp-server '0.vyatta.pool.ntp.org'
set system package auto-sync '1'
set system package repository community components 'main'
set system package repository community distribution 'stable'
set system package repository community password ''
set system package repository community url 'http://packages.vyatta.com/vyatta'
set system package repository community username ''
set system syslog global facility all level 'notice'
set system syslog global facility protocols level 'debug'
set system time-zone 'Asia/Shanghai'
commit
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-8 07:55:24 | 显示全部楼层
BRAS这里是用一台ros 4.10模拟的,设置了OSPF路由协议,开启了PPPOED,配置如下


# sep/07/2010 18:47:15 by RouterOS 4.10
# software id = W5EY-LHT9
#
/interface ethernet
set 0 arp=enabled auto-negotiation=yes cable-settings=default comment="" \
    disable-running-check=yes disabled=no full-duplex=yes mac-address=\
    00:0C:29:36:4F:AB mtu=1500 name=r-v8 speed=100Mbps
set 1 arp=enabled auto-negotiation=yes cable-settings=default comment="" \
    disable-running-check=yes disabled=no full-duplex=yes mac-address=\
    00:0C:29:36:4F:B5 mtu=1500 name=bras-v9 speed=100Mbps
/ip pool
add name=bras ranges=10.10.0.1
add name=pppoe ranges=10.10.0.20-10.10.0.200
/port
set 0 baud-rate=9600 data-bits=8 flow-control=hardware name=serial0 parity=\
    none stop-bits=1
set 1 baud-rate=9600 data-bits=8 flow-control=hardware name=serial1 parity=\
    none stop-bits=1
/ppp profile
set default change-tcp-mss=yes comment="" name=default only-one=default \
    use-compression=default use-encryption=default use-vj-compression=default
set default-encryption change-tcp-mss=yes comment="" dns-server=202.103.24.68 \
    local-address=bras name=default-encryption only-one=default \
    remote-address=pppoe use-compression=default use-encryption=yes \
    use-vj-compression=default
/queue type
set default kind=pfifo name=default pfifo-limit=50
set ethernet-default kind=pfifo name=ethernet-default pfifo-limit=50
set wireless-default kind=sfq name=wireless-default sfq-allot=1514 \
    sfq-perturb=5
set synchronous-default kind=red name=synchronous-default red-avg-packet=1000 \
    red-burst=20 red-limit=60 red-max-threshold=50 red-min-threshold=10
set hotspot-default kind=sfq name=hotspot-default sfq-allot=1514 sfq-perturb=\
    5
set default-small kind=pfifo name=default-small pfifo-limit=10
/routing bgp instance
set default as=65530 client-to-client-reflection=yes comment="" disabled=no \
    ignore-as-path-len=no name=default out-filter="" redistribute-connected=\
    no redistribute-ospf=no redistribute-other-bgp=no redistribute-rip=no \
    redistribute-static=no router-id=0.0.0.0 routing-table=""
/routing ospf instance
set default comment="" disabled=no distribute-default=never in-filter=ospf-in \
    metric-bgp=20 metric-connected=20 metric-default=1 metric-other-ospf=auto \
    metric-rip=20 metric-static=20 name=default out-filter=ospf-out \
    redistribute-bgp=no redistribute-connected=as-type-1 \
    redistribute-other-ospf=no redistribute-rip=no redistribute-static=\
    as-type-1 router-id=0.0.0.0
/routing ospf area
set backbone area-id=0.0.0.0 comment="" disabled=no instance=default name=\
    backbone type=default
/snmp
set contact="" enabled=no engine-boots=0 engine-id="" location="" \
    time-window=15 trap-sink=0.0.0.0 trap-version=1
/snmp community
set public address=0.0.0.0/0 authentication-password="" \
    authentication-protocol=MD5 encryption-password="" encryption-protocol=\
    DES name=public read-access=yes security=none write-access=no
/system logging action
set memory memory-lines=100 memory-stop-on-full=no name=memory target=memory
set disk disk-file-count=2 disk-file-name=log disk-lines-per-file=100 \
    disk-stop-on-full=no name=disk target=disk
set echo name=echo remember=yes target=echo
set remote bsd-syslog=no name=remote remote=0.0.0.0:514 src-address=0.0.0.0 \
    syslog-facility=daemon syslog-severity=auto target=remote
/interface bridge settings
set use-ip-firewall=no use-ip-firewall-for-pppoe=no use-ip-firewall-for-vlan=\
    no
/interface l2tp-server server
set authentication=pap,chap,mschap1,mschap2 default-profile=\
    default-encryption enabled=no max-mru=1460 max-mtu=1460 mrru=disabled
/interface ovpn-server server
set auth=sha1,md5 certificate=none cipher=blowfish128,aes128 default-profile=\
    default enabled=no keepalive-timeout=60 mac-address=FE:05:12:58:91:50 \
    max-mtu=1500 mode=ip netmask=24 port=1194 require-client-certificate=no
/interface pppoe-server server
add authentication=pap,chap,mschap1,mschap2 default-profile=\
    default-encryption disabled=no interface=bras-v9 keepalive-timeout=10 \
    max-mru=1480 max-mtu=1480 max-sessions=0 mrru=disabled \
    one-session-per-host=no service-name=bras
/interface pptp-server server
set authentication=mschap1,mschap2 default-profile=default-encryption \
    enabled=no keepalive-timeout=30 max-mru=1460 max-mtu=1460 mrru=disabled
/ip accounting
set account-local-traffic=no enabled=no threshold=256
/ip accounting web-access
set accessible-via-web=no address=0.0.0.0/0
/ip address
add address=172.31.8.254/24 broadcast=172.31.8.255 comment="" disabled=no \
    interface=r-v8 network=172.31.8.0
/ip dns
set allow-remote-requests=no cache-max-ttl=1w cache-size=2048KiB \
    max-udp-packet-size=512
/ip firewall connection tracking
set enabled=yes generic-timeout=10m icmp-timeout=10s tcp-close-timeout=10s \
    tcp-close-wait-timeout=10s tcp-established-timeout=1d \
    tcp-fin-wait-timeout=10s tcp-last-ack-timeout=10s \
    tcp-syn-received-timeout=5s tcp-syn-sent-timeout=5s tcp-syncookie=no \
    tcp-time-wait-timeout=10s udp-stream-timeout=3m udp-timeout=10s
/ip firewall service-port
set ftp disabled=no ports=21
set tftp disabled=no ports=69
set irc disabled=no ports=6667
set h323 disabled=no
set sip disabled=no ports=5060,5061
set pptp disabled=no
/ip neighbor discovery
set r-v8 discover=yes
set bras-v9 discover=yes
/ip proxy
set always-from-cache=no cache-administrator=webmaster cache-hit-dscp=4 \
    cache-on-disk=no enabled=no max-cache-size=none max-client-connections=\
    600 max-fresh-time=3d max-server-connections=600 parent-proxy=0.0.0.0 \
    parent-proxy-port=0 port=8080 serialize-connections=no src-address=\
    0.0.0.0
/ip service
set telnet address=0.0.0.0/0 disabled=no port=23
set ftp address=0.0.0.0/0 disabled=no port=21
set www address=0.0.0.0/0 disabled=no port=80
set www-ssl address=0.0.0.0/0 certificate=none disabled=yes port=443
set api address=0.0.0.0/0 disabled=yes port=8728
set winbox address=0.0.0.0/0 disabled=no port=8291
/ip socks
set connection-idle-timeout=2m enabled=no max-connections=200 port=1080
/ip traffic-flow
set active-flow-timeout=30m cache-entries=4k enabled=no \
    inactive-flow-timeout=15s interfaces=all
/ip upnp
set allow-disable-external-interface=yes enabled=no show-dummy-rule=yes
/ppp aaa
set accounting=yes interim-update=1s use-radius=no
/ppp secret
add caller-id="" comment="" disabled=no limit-bytes-in=0 limit-bytes-out=0 \
    name=admin password=admin profile=default-encryption routes="" service=\
    pppoe
/queue interface
set r-v8 queue=ethernet-default
set bras-v9 queue=ethernet-default
/radius
add accounting-backup=yes accounting-port=1813 address=172.16.8.140 \
    authentication-port=1812 called-id="" comment="" disabled=no domain="" \
    realm="" secret=citiloop service=ppp,login,hotspot,wireless,dhcp timeout=\
    500ms
/radius incoming
set accept=yes port=1700
/routing bfd interface
set all comment="" disabled=no interface=all interval=0.2sec min-rx=0.2sec \
    multiplier=5
/routing mme
set bidirectional-timeout=2 gateway-class=none gateway-keepalive=1m \
    gateway-selection=no-gateway origination-interval=5s preferred-gateway=\
    0.0.0.0 timeout=1m ttl=50
/routing ospf interface
add authentication=none authentication-key="" authentication-key-id=1 \
    comment="" cost=10 dead-interval=40s disabled=no hello-interval=10s \
    instance-id=0 interface=all network-type=broadcast passive=no priority=1 \
    retransmit-interval=5s transmit-delay=1s use-bfd=no
/routing ospf network
add area=backbone comment="" disabled=no network=172.31.8.0/24
add area=backbone comment="" disabled=no network=10.10.0.0/24
/routing rip
set distribute-default=never garbage-timer=2m metric-bgp=1 metric-connected=1 \
    metric-default=1 metric-ospf=1 metric-static=1 redistribute-bgp=no \
    redistribute-connected=no redistribute-ospf=no redistribute-static=no \
    routing-table=main timeout-timer=3m update-timer=30s
/store
add comment="" disabled=no disk=primary-master name=user-manager1 type=\
    user-manager
add comment="" disabled=no disk=primary-master name=web-proxy1 type=web-proxy
/system clock
set time-zone-name=manual
/system clock manual
set dst-delta=+00:00 dst-end="jan/01/1970 00:00:00" dst-start=\
    "jan/01/1970 00:00:00" time-zone=+00:00
/system console
add disabled=no port=serial0 term=vt102
set [ find vcno=1 ] disabled=no term=linux
set [ find vcno=2 ] disabled=no term=linux
set [ find vcno=3 ] disabled=no term=linux
set [ find vcno=4 ] disabled=no term=linux
set [ find vcno=5 ] disabled=no term=linux
set [ find vcno=6 ] disabled=no term=linux
set [ find vcno=7 ] disabled=no term=linux
set [ find vcno=8 ] disabled=no term=linux
/system console screen
set line-count=25
/system hardware
set multi-cpu=yes
/system health
set state-after-reboot=enabled
/system identity
set name=Bras
/system logging
add action=memory disabled=no prefix="" topics=info
add action=memory disabled=no prefix="" topics=error
add action=memory disabled=no prefix="" topics=warning
add action=echo disabled=no prefix="" topics=critical
/system note
set note="" show-at-login=yes
/system ntp client
set enabled=no mode=broadcast primary-ntp=0.0.0.0 secondary-ntp=0.0.0.0
/system upgrade mirror
set check-interval=1d enabled=no primary-server=0.0.0.0 secondary-server=\
    0.0.0.0 user=""
/system watchdog
set auto-send-supout=no automatic-supout=yes no-ping-delay=5m watch-address=\
    none watchdog-timer=yes
/tool bandwidth-server
set allocate-udp-ports-from=2000 authenticate=yes enabled=yes max-sessions=\
    100
/tool e-mail
set from=<> password="" server=0.0.0.0:25 username=""
/tool graphing
set page-refresh=300 store-every=5min
/tool graphing interface
add allow-address=0.0.0.0/0 disabled=no interface=all store-on-disk=yes
/tool mac-server
add disabled=no interface=all
/tool mac-server ping
set enabled=yes
/tool sms
set allowed-number="" channel=0 keep-max-sms=0 receive-enabled=no secret=""
/tool sniffer
set file-limit=10 file-name="" filter-address1=0.0.0.0/0:0-65535 \
    filter-address2=0.0.0.0/0:0-65535 filter-protocol=ip-only filter-stream=\
    yes interface=all memory-limit=10 memory-scroll=no only-headers=no \
    streaming-enabled=no streaming-server=0.0.0.0
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-8 07:57:51 | 显示全部楼层
users为普通pppoe拨号用户,具体配置也十分简单,暂且不表.
routeros
回复

使用道具 举报

发表于 2010-9-8 08:34:25 | 显示全部楼层
强!!看起来比ROS难配置啊
routeros
回复

使用道具 举报

发表于 2010-9-10 11:44:19 | 显示全部楼层
顶你一下!!! VYATTA 对intel 高端网卡的支持好多了
routeros
回复

使用道具 举报

 楼主| 发表于 2010-9-10 12:11:45 | 显示全部楼层
routeros
回复

使用道具 举报

发表于 2010-9-10 15:51:21 | 显示全部楼层
主要是VYATT 对INTEL 网卡的高级性能支持比较多,多队列,多核支持等等

看附近。是INTEL 和VYATTA 做的测试

Intel_Router_solBrief_r04.pdf

521.96 KB, 下载次数: 35, 下载积分: 铜板 -1

routeros
回复

使用道具 举报

发表于 2010-9-12 09:32:16 | 显示全部楼层
急切盼望你做vyatta 的1个基于端口或者协议的策略路由实验,我搞了半天,没成功
routeros
回复

使用道具 举报

发表于 2010-9-12 11:32:28 | 显示全部楼层
弄个全中文的,跟害蜘蛛差不多就强了
routeros
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|软路由 ( 渝ICP备15001194号-1|渝公网安备 50011602500124号 )

GMT+8, 2024-4-30 07:04 , Processed in 0.082060 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.5 Licensed

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表