Difference between revisions of "1577 Serverteknologi - Web-server Opgaver II/Gruppe1"

From Teknologisk videncenter
Jump to: navigation, search
m
m
 
(2 intermediate revisions by the same user not shown)
Line 47: Line 47:
 
</source>
 
</source>
 
= Links =
 
= Links =
*[http://openmaniak.com/openvpn.php God openVPN tutorial] se eksemplet [http://openmaniak.com/openvpn_tun.php openVPN mellem Linux og Windows]
+
*[http://www.openvpn.net/index.php/open-source.html openVPN officiel hjemmeside] Mange gode artikler og eksempler
{{#css:
+
*[http://openmaniak.com/openvpn.php God openVPN tutorial]  
   
+
**Eksempel [http://openmaniak.com/openvpn_tun.php openVPN mellem Linux og Windows i Routed mode] tun-device
    pre {   font-family: Lucida Console; font-weight: bold; font-size: 14px; color: #00FF00; background: black; margin: 10px 50px; width: 800px; line-height: 200%; overflow: auto;}
+
**Eksempel [http://openmaniak.com/openvpn_tap.php openVPN mellem Linux og Windows i Bridged mode] tap-device
}}
+
{{Source cli}}
 
[[Category:Linux]]
 
[[Category:Linux]]

Latest revision as of 18:29, 28 February 2010

mode server
tls-server

local 172.16.4.89  ## ip/hostname of server
port 1194  ## default openvpn port
proto udp



#bridging directive
dev tap0  ## If you need multiple tap devices, add them here
up "/etc/openvpn/up.sh br0"
down "/etc/openvpn/down.sh br0"

persist-key
persist-tun

#certificates and encryption
ca ca.crt
cert server.crt
key server.key  # This file should be kept secret
dh dh1024.pem
tls-auth ta.key 0 # This file is secret

cipher BF-CBC        # Blowfish (default)
comp-lzo

#DHCP Information
ifconfig-pool-persist ipp.txt
server-bridge 172.16.4.89 255.255.255.0 172.16.4.3 172.16.4.4

#push "dhcp-option DNS dns1.kvikspace.com"
#push "dhcp-option DOMAIN kvikspace.com"

push "dhcp-option DNS localhost"
push "dhcp-option DOMAIN localhost"
max-clients 2 ## set this to the max number of clients that should be connected at a time

#log and security
user nobody
group nogroup
keepalive 10 120
status openvpn-status.log
verb 3

Links