• XORP CLICK 可用配置文件


    interfaces {
     interface eth3 {
     
     /*default-system-config*/
     vif eth3 {
      disable:false
      address 192.168.2.101{
      prefix-length:24
      broadcast:192.168.1.255
      disable:false
      }
      
     }
     }
     interface eth2 {

            /*default-system-config*/
            vif eth2 {
                    disable:false
                    address 192.168.1.101{
                    prefix-length:24
                    broadcast:192.168.2.255
                    disable:false
                    }

            }
            }

    }
    protocols {
     static {

      route 192.168.2.0/24 {
       next-hop:192.168.2.101
       metric:1
      }
      route 192.168.1.0/24{
       next-hop:192.168.1.101
       metric:1
      }
     }
    }
    fea {
     unicast-forwarding4 {
     disable: false
     }
     click {
     disable: false
     duplicate-routes-to-kernel: false
      user-click {
      disable: false
      command-file: "/usr/local/bin/click"
      command-extra-arguments: "-R"
      command-execute-on-startup: true
      control-address: 127.0.0.1
      control-socket-port: 13000
      startup-config-file: "/dev/null"
      user-click-config-generator-file: "/usr/libexec/xorp-1.6/fea/xorp_fea_click_config_generator"
      }  
     }
    }

  • 相关阅读:
    squid代理缓存服务
    部署网络存储ISCSI
    电子邮局系统
    使用DHCP动态管理主机地址
    vsftp -samba-autofs
    python初学 | 循环for while
    python初学 | 条件语句if
    python初学 | set
    python初学 | 字典dictionary
    python初学 | 元组tuple
  • 原文地址:https://www.cnblogs.com/yangyh/p/1823456.html
Copyright © 2020-2023  润新知