This shows you the differences between two versions of the page.
isc:labs:10 [2024/12/08 22:18] florin.stancu |
isc:labs:10 [2024/12/11 10:20] (current) radu.mantu [[20p] 0. Setup & EasyRSA certificate generation] |
||
---|---|---|---|
Line 44: | Line 44: | ||
<solution -hidden> | <solution -hidden> | ||
+ | <code bash> | ||
./easyrsa gen-req Server | ./easyrsa gen-req Server | ||
./easyrsa sign-req server Server | ./easyrsa sign-req server Server | ||
./easyrsa gen-req Client | ./easyrsa gen-req Client | ||
./easyrsa sign-req client Client | ./easyrsa sign-req client Client | ||
+ | </code> | ||
</solution> | </solution> | ||
Line 144: | Line 146: | ||
sudo wg # show wireguard statistics | sudo wg # show wireguard statistics | ||
</code> | </code> | ||
+ | |||
+ | <note tip> | ||
+ | **Note:** there are even simpler ways of configuring Wireguard, like [[https://www.man7.org/linux/man-pages/man8/wg-quick.8.html|wg-quick]] (automates interface creation & IP address/routes configuration using a similar .conf file) and [[https://github.com/wg-easy/wg-easy|wg-easy]] (Web GUI for Wireguard) -- but we wanted to demonstrate its purest form (: | ||
+ | </note> | ||
+ | |||