如何为 freebsd 添加虚拟网络接口

如何为 freebsd 添加虚拟网络接口

在 Linux 上我会这样做:

 # ip tuntap add mode tun dev tun2
 # ip addr add dev tun2 10.125.0.1/24
 # ip link set dev tun2 up

我如何在 FreeBSD 上实现同样的功能?

答案1

您可以在 FreeBSD 上使用 ifconfig。见下文。第一个命令将为您提供创建的接口名称,您可以在接下来两个命令中使用该名称。对于第二个命令,您需要指定 tun 接口地址和目标地址。

# ifconfig tun create
  output: tun0
# ifconfig tun0 inet 10.125.0.2 10.125.0.1 netmask 255.255.255.0
# ifconfig tun0 up

相关内容