|
最近远程办公期间发现,如果开了OpenVPN,会导致服务断连。 100%复现
OpenVPN配置如下:
```
port <port>
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "route 10.10.0.0 255.255.252.0"
push "dhcp-option DNS 10.10.3.199"
push "dhcp-option DNS 223.5.5.5"
; push "redirect-gateway def1 bypass-dhcp"
```
|
|