Strato vServer 내의 VPN 서버

Strato vServer 내의 VPN 서버

나는Strato 가상 서버Ubuntu 18 운영 체제를 실행 중이며 다음 명령을 사용하여 이 서버에 VPN 서버를 설치하려고 합니다.이것가이드. 하지만 실행한 후 다음과 같은 오류 메시지가 나타납니다 service openvpn@server restart.

Aug  6 23:39:19 systemd[1]: Started OpenVPN connection to server.
Aug  6 23:39:19 ovpn-server[31964]: Diffie-Hellman initialized with 2048 bit key
Aug  6 23:39:19 ovpn-server[31964]: Outgoing Control Channel Authentication: Using 256 bit message hash 'SHA256' for HMAC authentication
Aug  6 23:39:19 ovpn-server[31964]: Incoming Control Channel Authentication: Using 256 bit message hash 'SHA256' for HMAC authentication
Aug  6 23:39:19 ovpn-server[31964]: TUN/TAP device tap0 opened
Aug  6 23:39:19 ovpn-server[31964]: Note: Cannot set tx queue length on tap0: Operation not permitted (errno=1)
Aug  6 23:39:19 ovpn-server[31964]: do_ifconfig, tt->did_ifconfig_ipv6_setup=0
Aug  6 23:39:19 ovpn-server[31964]: /sbin/ip link set dev tap0 up mtu 1500
Aug  6 23:39:19 ovpn-server[31964]: openvpn_execve: unable to fork: Resource temporarily unavailable (errno=11)
Aug  6 23:39:19 ovpn-server[31964]: Exiting due to fatal error
Aug  6 23:39:19 systemd-udevd[31965]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Aug  6 23:39:19 systemd-udevd[31965]: link_config: could not get ethtool features for tap0
Aug  6 23:39:19 systemd-udevd[31965]: Could not set offload features of tap0: No such device
Aug  6 23:39:19 systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
Aug  6 23:39:19 systemd[1]: [email protected]: Failed with result 'exit-code'.

그래서 그것은 tap0존재하지 않는 것 같습니다. 그런데 왜 누락되었으며 어떻게 추가합니까?

답변1

설정 에 관한 것입니다 LimitNPROC. 현재 값을 얻을 수 있습니다

systemctl show openvpn@server --property=LimitNPROC

이것을 유닛 파일에 추가하면 문제를 해결할 수 있습니다.

[Service]
LimitNPROC=infinity

그런 다음 systemctl daemon-reloadOpenVPN 서비스를 다시 시작하기 전에 실행하세요.

관련 정보