OpenVPN » Historique » Version 2
Laurent GUERBY, 11/01/2012 10:43
1 | 1 | Laurent GUERBY | h1. OpenVPN |
---|---|---|---|
2 | 1 | Laurent GUERBY | |
3 | 1 | Laurent GUERBY | |
4 | 1 | Laurent GUERBY | <pre> |
5 | 1 | Laurent GUERBY | openvpn --genkey --secret tst.key |
6 | 1 | Laurent GUERBY | |
7 | 1 | Laurent GUERBY | #server |
8 | 1 | Laurent GUERBY | openvpn --mktun --dev-type tap --dev taptst |
9 | 1 | Laurent GUERBY | ip link set taptst up |
10 | 1 | Laurent GUERBY | openvpn --dev-type tap --dev tapstg --comp-lzo yes --cipher none --proto udp --daemon --keepalive 10 30 --secret tst.key --port 1234 |
11 | 1 | Laurent GUERBY | |
12 | 1 | Laurent GUERBY | #client |
13 | 1 | Laurent GUERBY | openvpn --mktun --dev-type tap --dev taptst |
14 | 1 | Laurent GUERBY | ip link set taptst up |
15 | 1 | Laurent GUERBY | openvpn --dev-type tap --dev tapstg --comp-lzo yes --cipher none --proto udp --daemon --keepalive 10 30 --secret tst.key --remote A.B.C.D 1234 |
16 | 1 | Laurent GUERBY | </pre> |
17 | 2 | Laurent GUERBY | |
18 | 2 | Laurent GUERBY | Pour ignorer les push IP et route du serveur coté client openvpn il suffit de mettre "tls-client" a la place de "client" |
19 | 2 | Laurent GUERBY | l'option --client est un raccourci pour --tls-client --pull et --pull est ce qui accepte les directives serveur. |