This short article looks at how to get a fully functional IPSec VPN up and running between two fresh OpenBSD installations in about four minutes flat.
Expand all |
Post comment
Zero to IPSec in 4 minutes
2006-03-20
Anonymous (1 replies)
Anonymous (1 replies)

local_ip="1.2.3.4"
local_network="192.168.128.0/24"
remote_ip="5.6.7.8"
remote_network="172.16.2.0/24"
ike esp from { $local_ip $local_network } to { $remote_ip $remote_network } peer $remote_ip
ike esp from $local_ip to $remote_ip
Also, the public key files are:
/etc/isakmpd/pubkey/ipv4/1.2.3.4
(without the .pub extension).
[ reply ]
Link to this comment: http://www.securityfocus.com/comments/infocus/1859/1373#1373