I've a dedicated server.
Specifications :
O.S. : Debian 6.0 à jour
Network : 1Gbs Full Duplex
RAM : 4Go
Processor : AMD Athlon II X2 250 Dual-Core 2x3 Ghz
So, I used this tutorial to configure and install openvpn > http://blog.nicolargo.com/2010/10/insta ... buntu.html
Server.conf :
Code: Select all
# Serveur TCP/443
mode server
proto tcp
port 443
dev tun
# Cles et certificats
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
tls-auth ta.key 0
cipher AES-256-CBC
# Reseau
server 10.8.0.0 255.255.255.0
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 4.4.4.4"
push "dhcp-option DNS 8.8.8.8"
keepalive 10 120
# Securite
user nobody
group nogroup
chroot /etc/openvpn/jail
persist-key
persist-tun
comp-lzo
# Log
verb 3
mute 20
status openvpn-status.log
log-append /var/log/openvpn.log
Code: Select all
# Client
client
dev tun
proto tcp-client
remote MO.IP.LA.LA 443 (masqué par sécurité)
resolv-retry infinite
cipher AES-256-CBC
# Cles
ca ca.crt
cert djoul.crt
key djoul.key
tls-auth ta.key 1
# Securite
nobind
persist-key
persist-tun
comp-lzo
verb 3
I used port 443 (SSL), but if I replace it with 80, my problem is there?
Thank you in advance!
PS : Sorry for my bad english, i'm french.