You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
351 B
18 lines
351 B
# Sample OpenVPN configuration file for |
|
# using a pre-shared static key. |
|
# |
|
# '#' or ';' may be used to delimit comments. |
|
|
|
# Use a dynamic tun device. |
|
dev tun |
|
|
|
# Our remote peer |
|
remote mypeer.mydomain |
|
|
|
# 10.1.0.1 is our local VPN endpoint |
|
# 10.1.0.2 is our remote VPN endpoint |
|
ifconfig 10.1.0.1 10.1.0.2 |
|
|
|
# Our pre-shared static key |
|
secret static.key |
|
|
|
|