비디오 튜토리얼 중 하나를 따라 Ubuntu 18.04 64비트에 wireguard를 설치하려고 합니다.
단계는 다음으로 끝납니다.systemctl start [email protected]
Job for [email protected] failed because the control process exited with error code.
See "systemctl status [email protected]" and "journalctl -xe" for details.
달리기는 다음을 제공합니다:systemctl status [email protected]
● [email protected] - WireGuard via wg-quick(8) for wg0
Loaded: loaded (/lib/systemd/system/[email protected]; indirect; vendor preset: enabled)
Active: failed (Result: exit-code) since Sat 2023-03-11 00:02:48 UTC; 7min ago
Docs: man:wg-quick(8)
man:wg(8)
https://www.wireguard.com/
https://www.wireguard.com/quickstart/
https://git.zx2c4.com/wireguard-tools/about/src/man/wg-quick.8
https://git.zx2c4.com/wireguard-tools/about/src/man/wg.8
Process: 18984 ExecStart=/usr/bin/wg-quick up wg0 (code=exited, status=1/FAILURE)
Main PID: 18984 (code=exited, status=1/FAILURE)
Mar 11 00:02:48 my-vps.name systemd[1]: Starting WireGuard via wg-quick(8) for wg0...
Mar 11 00:02:48 my-vps.name wg-quick[18984]: [#] ip link add wg0 type wireguard
Mar 11 00:02:48 my-vps.name wg-quick[18984]: RTNETLINK answers: Operation not supported
Mar 11 00:02:48 my-vps.name wg-quick[18984]: Unable to access interface: Protocol not supported
Mar 11 00:02:48 my-vps.name wg-quick[18984]: [#] ip link delete dev wg0
Mar 11 00:02:48 my-vps.name wg-quick[18984]: Cannot find device "wg0"
Mar 11 00:02:48 my-vps.name systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
Mar 11 00:02:48 my-vps.name systemd[1]: [email protected]: Failed with result 'exit-code'.
Mar 11 00:02:48 my-vps.name systemd[1]: Failed to start WireGuard via wg-quick(8) for wg0.
실행 중인 journalctl -xe
프로그램:
Mar 10 23:46:27 my-vps.name wg-quick[18951]: [#] ip link add wg0 type wireguard
Mar 10 23:46:27 my-vps.name wg-quick[18951]: RTNETLINK answers: Operation not supported
Mar 10 23:46:27 my-vps.name wg-quick[18951]: Unable to access interface: Protocol not supported
Mar 10 23:46:27 my-vps.name wg-quick[18951]: [#] ip link delete dev wg0
Mar 10 23:46:27 my-vps.name wg-quick[18951]: Cannot find device "wg0"
내 wg0.conf
모습:
[Interface]
PrivateKey = myprivatekeyhere
Address = 10.0.0.1/24
ListenPort = 51830
PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -t nat -A POSTROUTING -o venet0 -j MASQUERADE
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -t nat -D POSTROUTING -o venet0 -j MASQUERADE
modprobe wireguard
설명하다:
modprobe: FATAL: Module wireguard not found in directory /lib/modules/4.15.0
ls /lib/modules
반품:
4.15.0 4.15.0-206-generic
uname -r
보여주다:
4.15.0
다시 시작해도 도움이되지 않았습니다. 검색해도 도움이 되지 않았습니다.
답변1
그렇습니다. 오류에 따르면 커널에 wireguard 모듈이 없으므로 wireguard를 실행할 수 없습니다.
wireguard 모듈을 빌드하고 설치해야 합니다(아주 오래된 배포판을 사용하고 있고 커널도 매우 오래되어 커널에 wireguard가 없으므로 별도로 설치해야 하며, Universe repos가 활성화된 경우 설치합니다 wireguard-dkms
. 더 나은 방법은 더 현대적인 Ubuntu로 업데이트하는 것입니다. Linux 커널이 5.6 이상인 모든 시스템에는 wireguard 모듈이 포함될 가능성이 높으므로 Ubuntu 22.04를 선택하십시오.