应该怎样设置interfaces
我按照网上的教程,先安装
# apt-get install bridge-utils
# apt-get install uml-utilities (命令#tunctl要使用)
然后修改/etc/network/.interfaces
auto eth0
iface eth0 inet static
address 106.185.xx.xxx
netmask 255.255.255.0
gateway 106.185.35.1
auto br0
iface br0 inet static #dhcp
bridge_ports eth0
address 192.168.88.1
netmask 255.255.255.0
gateway 106.185.35.1
重启
/etc/init.d/networking restart
接着ssh连接不了了。 请教是不是interfaces 哪里出了问题 ?
接着是不是给ilnode的客服发tk要求打开 tun/tap ,然后继续下面的步骤。
加载TUN/TAP模块并设置桥接口
# modprobe tun
# tunctl #创建虚拟网卡tapX (X代表数字0,1,2…本文使用的是tap0)
# brctl addif br0 tap0 #将上一步创建的 tapX 加入网桥 br0
# ifconfig tap0 promisc up #启用tapX 并设置为promisc 模式
至此,debian的公网ip桥接到demu里的虚机的ip ,桥接完成。
是这样吗?