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

From Teknologisk videncenter
Jump to: navigation, search
(New page: <source lang="cli"> 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 multip...)
 
m
 
(4 intermediate revisions by the same user not shown)
Line 45: Line 45:
 
status openvpn-status.log
 
status openvpn-status.log
 
verb 3
 
verb 3
 
 
 
 
 
</source>
 
</source>
 +
= Links =
 +
*[http://www.openvpn.net/index.php/open-source.html openVPN officiel hjemmeside] Mange gode artikler og eksempler
 +
*[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
 +
**Eksempel [http://openmaniak.com/openvpn_tap.php openVPN mellem Linux og Windows i Bridged mode] tap-device
 +
{{Source cli}}
 +
[[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