WireGuard:AllowedIPs 的默认值/行为是什么

WireGuard:AllowedIPs 的默认值/行为是什么

我试图了解AllowedIPsWireGuard 中的用法,因为我在wireguard 中继场景下的路由设置方面遇到了麻烦。一个简化的例子:

服务器端:

[Interface]
Address = 172.16.23.1/32
PrivateKey = ...
ListenPort = ...

[Peer]
PublicKey = ...
AllowedIPs = 172.16.23.0/24

客户端:

[Interface]
Address = 172.16.23.100/32
PrivateKey = ...

[Peer]
PublicKey = ...
Endpoint = ...
AllowedIPs = 172.16.23.0/24
PersistentKeepalive = 45

我的问题是,我可以省略AllowedIPs所有内容并使用 linuxip命令设置路由吗?

相关内容