mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-04 02:53:06 +02:00
Added information on LAN Passthrough - a common home usecase
This commit is contained in:
parent
ddf81828a7
commit
f82e353d80
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -142,6 +142,17 @@ Set-VpnConnectionIPsecConfiguration -ConnectionName "Algo" -AuthenticationTransf
|
|||
8. `sudo ipsec up <conn-name>`: start the ipsec tunnel
|
||||
9. `sudo ipsec down <conn-name>`: shutdown the ipsec tunnel
|
||||
|
||||
## LAN Passthrough
|
||||
|
||||
To enable your device to access other devices on the LAN, add the following to `/etc/ipsec.conf`, replacing `192.168.1.1/24` with whatever subnet your LAN uses:
|
||||
|
||||
conn lan-passthrough
|
||||
leftsubnet=192.168.1.1/24
|
||||
rightsubnet=192.168.1.1/24
|
||||
authby=never # No authentication necessary
|
||||
type=pass # passthrough
|
||||
auto=route # no need to ipsec up lan-passthrough - it will just work
|
||||
|
||||
### Other Devices
|
||||
|
||||
Depending on the platform, you may need one or multiple of the following files.
|
||||
|
|
Loading…
Add table
Reference in a new issue