为 VPN 服务器设置桥接适配器

为 VPN 服务器设置桥接适配器

我有一台 Ubuntu Linux Linode 服务器,我想在上面安装 OpenVPN。我正在按照教程操作(但结果发现这些教程并不完整)。

auto br0
iface br0 inet static
        address 192.168.0.10
        network 192.168.0.0
        netmask 255.255.255.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        bridge_ports eth0
        bridge_fd 9
        bridge_hello 2
        bridge_maxage 12
        bridge_stp off

当我将此块添加到我的 /etc/network/interfaces 中并重新启动网络时,我的 eth0 接口没有 IP,并且我无法接入网络(我需要使用一个有缺陷、缓慢且烦人的 AJAX 术语来修复损坏)。

为什么添加这个会把一切都搞砸?关于如何设置这个桥接适配器有什么提示吗?

提前致谢!

答案1

试试以下几行:

    auto lo
    iface lo inet loopback 

    auto eth0
    iface eth0 inet dhcp

    auto br0
    iface br0 inet dhcp
          bridge_ports eth0

DHCP 比静态更简单。至少对我来说,它是以这种方式工作的。

相关内容