zoukankan      html  css  js  c++  java
  • Linux网桥设置

    1. sudo apt-get install bridge-utils
     
    2. brctl --help
    Usage: brctl [commands] 
    commands:
            addbr <bridge> add bridge
            delbr <bridge> delete bridge
            addif <bridge> <device> add interface to bridge
            delif <bridge> <device> delete interface from bridge
            hairpin <bridge> <port> {on|off} turn hairpin on/off
            setageing <bridge> <time> set ageing time
            setbridgeprio <bridge> <prio> set bridge priority
            setfd <bridge> <time> set bridge forward delay
            sethello <bridge> <time> set hello time
            setmaxage <bridge> <time> set max message age
            setpathcost <bridge> <port> <cost> set path cost
            setportprio <bridge> <port> <prio> set port priority
            show [ <bridge> ] show a list of bridges
            showmacs <bridge> show a list of mac addrs
            showstp <bridge> show bridge stp info
            stp <bridge> {on|off} turn stp on/off
     
    3. 创建网桥
    brctl addbr newbr
     
    4. 将物理网卡1划入网桥
    bectl addif newbr eth1
     
    5. 取消物理网卡1的IP信息
    ifconfig eth1 0.0.0.0
     
    6. 分配IP地址给网桥
    ifconfig newbr 3.242.164.147
  • 相关阅读:
    SpringMVC概述
    Spring 声明式事务
    Spring_AOP切面编程
    Spring DI依赖注入
    Spring IOC控制反转
    Spring解耦和耦合
    Spring概述
    HTTP协议常见状态码
    TCP/IP协议的认识
    设计模式-工厂模式(factory)
  • 原文地址:https://www.cnblogs.com/IvanChen/p/4491950.html
Copyright © 2011-2022 走看看