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

From Teknologisk videncenter
Jump to: navigation, search
m (Links)
m
 
Line 51: Line 51:
 
**Eksempel [http://openmaniak.com/openvpn_tun.php openVPN mellem Linux og Windows i Routed mode] tun-device
 
**Eksempel [http://openmaniak.com/openvpn_tun.php openVPN mellem Linux og Windows i Routed mode] tun-device
 
**Eksempel [http://openmaniak.com/openvpn_tap.php openVPN mellem Linux og Windows i Bridged mode] tap-device
 
**Eksempel [http://openmaniak.com/openvpn_tap.php openVPN mellem Linux og Windows i Bridged mode] tap-device
{{#css:
+
{{Source cli}}
   
 
    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;}
 
}}
 
 
[[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