Linux下Virtualbox桥接网络配置

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 09:36 点击:
1 安装必须软件
 
  sudo apt-get install uml-utilities bridge-utils
 
  2 添加本人帐户到软件组
 
  sudo gpasswd -a bruce uml-net
 
  3 修改interface文件内容如下
 
  sudo vi /etc/network/interfaces
 
  auto lo
 
  iface lo inet loopback
 
  auto tap0
 
  iface tap0 inet manual
 
  up ifconfig $IFACE 0.0.0.0 up
 
  down ifconfig $IFACE down
 
  tunctl_user bruce
 
  auto tap1
 
  iface tap1 inet manual
 
  up ifconfig $IFACE 0.0.0.0 up
 
  down ifconfig $IFACE down
 
  tunctl_user bruce
 
  auto tap2
 
  iface tap2 inet manual
 
  up ifconfig $IFACE 0.0.0.0 up
 
  down ifconfig $IFACE down
 
  tunctl_user bruce
 
  auto br0
 
  iface br0 inet static
 
  address 192.168.1.188
 
  netmask 255.255.255.0
 
  broadcast 192.168.1.255
 
  gateway 192.168.1.1
 
  bridge_maxwait 0
 
  bridge_ports all tap0 tap1 tap2
 
  auto eth0
 
  allow-hotplug eth0
 
  iface eth0 inet manual
 
  up ifconfig eth0 0.0.0.0 promisc up
 
  4 重启机器配置生效!
 
  以上配置是因为我的网络环境是静态IP的环境,所以虚拟机的IP全都是静态IP,如果网络环境中有DHCP服务器配置可以简化一下,不过我是用虚拟机做实验的,喜欢IP是固定的,所以配置如上。

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • VMware View 5.0从菜鸟到高手系列 -连接虚拟桌面
      • kvm中的windows使用Vmware的显示驱动
      • VMware Linux使用Xshell登陆
      • 虚拟机安装MAC查看电脑CPU是否支持VT技术
      • VMWare NAT Centos6.2静态ip设置
      • vmware虚拟机浅析-虚拟网卡
      • VirtualBox打开虚拟硬盘失败的问题
      • Virtual Box下同时配置host-only和bridge
      • 给虚拟机提速的方法

      快速直达

      操作系统导航

      LinuxWindows虚拟机
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1