我从 OVH 租了一个 VPS,使用 SoftEther 在其上搭建 VPN 服务器。当我在家里的 VirtualBox 机器上执行此操作时,一切都运行正常。当我转到 VPS 时......我不知道如何正确配置 DHCP 服务器。当客户端 PC 想要连接到服务器时,它会生成错误 720,并且连接会在“将用户添加到网络”时停止。发生这种情况的原因是,我的 VPS 无法将本地 IP 分配给子网,或者子网根本不存在。我尝试配置 DHCP 服务器,但没有成功。我的是否配置:
ens3 Link encap:Ethernet HWaddr fa:16:3e:f9:33:d8
inet addr:51.254.125.169 Bcast:51.254.125.169 Mask:255.255.255.255
inet6 addr: fe80::f816:3eff:fef9:33d8/64 Scope:Link
UP BROADCAST RUNNING PROMISC MULTICAST MTU:1500 Metric:1
RX packets:178348 errors:0 dropped:0 overruns:0 frame:0
TX packets:140519 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:157509776 (157.5 MB) TX bytes:15429200 (15.4 MB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:1786 errors:0 dropped:0 overruns:0 frame:0
TX packets:1786 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:11700805 (11.7 MB) TX bytes:11700805 (11.7 MB)
我真的不知道该如何解决这个问题。这里还有/etc/网络/接口/文件:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# Source interfaces
# Please check /etc/network/interfaces.d before changing this file
# as interfaces may have been defined in /etc/network/interfaces.d
# See LP: #1262951
source /etc/network/interfaces.d/*.cfg
我试过路线-n我得到了以下结果:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 51.254.120.1 0.0.0.0 UG 0 0 0 ens3
51.254.120.1 0.0.0.0 255.255.255.255 UH 0 0 0 ens3
也许 DHCP 不是解决方案,也许是 iptables 或我不知道的其他东西。请帮助我,因为 OVH 的人不知道。