WireGuard 클라이언트 설정
설치
apt install wireguard
resolvconf 오류 시
apt install resolvconf
sudo nano /etc/resolv.conf
아래 내용 추가
nameserver 8.8.8.8
nameserver 8.8.4.4
설정
/etc/wireguard/{이름}.conf
[Interface]
PrivateKey = 123123
Address = 10.8.0.7/24
DNS = 1.1.1.1
MTU = 1420
[Peer]
PublicKey = 123123123
PresharedKey = 123123123123
AllowedIPs = 0.0.0.0/0, 10.8.0.0/24
PersistentKeepalive = 0 {연결 지속}
실행
wg-quick up {이름}
시스템 시작 시 실행
systemctl enable wg-quick@{이름}