如何在 Debian 中预先设置 pointopoint 选项?

如何在 Debian 中预先设置 pointopoint 选项?

如何为 Debian 安装程序预先设置 pointopoint 连接?

以下选项不起作用。

d-i netcfg/get_pointopoint string 10.10.10.10

我需要它,因为我创建的新虚拟机的默认网关位于虚拟机子网之外。

答案1

我假设您的目的是使用类似 PPP 或 PPPoE 的连接?

如果你看看http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694965您会发现以下内容:

static.c 中似乎已经有一些代码,如下面的代码,但它似乎不起作用

嗯,它只会被已知的点对点设备触发:

            if (strncmp(iface->name, "plip", 4) == 0
                || strncmp(iface->name, "slip", 4) == 0
                || strncmp(iface->name, "ctc", 3) == 0
                || strncmp(iface->name, "escon", 5) == 0
                || strncmp(iface->name, "iucv", 4) == 0)
                state = GET_POINTOPOINT;

从这一点来看,为了使其发挥作用,我认为您可能需要将以下内容预先添加到上述内容之一中,例如“plip”:

d-i netcfg/choose_interface select plip

相关内容