Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:wireguard [2024/09/13 12:16] – [Host 1 and Host 2] darron | tools:wireguard [2024/09/13 13:03] (current) – darron | ||
---|---|---|---|
Line 1: | Line 1: | ||
====WireGuard==== | ====WireGuard==== | ||
- | Work-in-progress | + | Easy to setup VPN |
===Install=== | ===Install=== | ||
+ | |||
+ | == Linux== | ||
This install may replace the kernel, if so, reboot afterward. | This install may replace the kernel, if so, reboot afterward. | ||
Line 13: | Line 15: | ||
- | ===Setup=== | ||
- | [[https:// | + | ===Setup=== |
- | ===Log=== | + | ==Configure VPN== |
- | ==Host | + | __Host |
< | < | ||
ip link add dev wg0 type wireguard | ip link add dev wg0 type wireguard | ||
</ | </ | ||
- | ==Host 1== | + | __Host 1__ |
< | < | ||
Line 30: | Line 31: | ||
</ | </ | ||
- | ==Host 2== | + | __Host 2__ |
< | < | ||
Line 36: | Line 37: | ||
</ | </ | ||
- | ===Host | + | __Host |
< | < | ||
Line 61: | Line 62: | ||
Endpoint x.x.x.x: | Endpoint x.x.x.x: | ||
</ | </ | ||
+ | |||
+ | ==Create VPN== | ||
+ | |||
+ | __Host 1 and Host 2__ | ||
< | < | ||
Line 67: | Line 72: | ||
</ | </ | ||
+ | __Host 1__ | ||
+ | |||
+ | < | ||
+ | ping -c 1 192.168.44.11 | ||
+ | PING 192.168.44.11 (192.168.44.11) 56(84) bytes of data. | ||
+ | 64 bytes from 192.168.44.11: | ||
+ | |||
+ | --- 192.168.44.11 ping statistics --- | ||
+ | 1 packets transmitted, | ||
+ | rtt min/ | ||
+ | </ | ||
+ | |||
+ | __Host 2__ | ||
+ | |||
+ | < | ||
+ | ping -c 1 192.168.44.10 | ||
+ | PING 192.168.44.10 (192.168.44.10) 56(84) bytes of data. | ||
+ | 64 bytes from 192.168.44.10: | ||
+ | |||
+ | --- 192.168.44.10 ping statistics --- | ||
+ | 1 packets transmitted, | ||
+ | rtt min/ | ||
+ | </ | ||
+ | |||
+ | ==Destroy VPN== | ||
+ | |||
+ | __Host 1 and Host 2__ | ||
+ | |||
+ | |||
+ | < | ||
+ | ip link delete dev wg0 | ||
+ | </ | ||
+ | |||
+ | ===Resources=== | ||
- | ===Host 1=== | + | [[https:// |
+ | [[https:// | ||