Internet access for participants can be provided only through a local Virtual Private Network (VPN), which you can log on to with your personal guest account you receive on-site at the conference registration.
IPSec gateway vpn.tubit.tu-berlin.de
IPSec ID ZRZ-IPSEC
IPSec secret ZRZ-IPSEC-PW
Xauth username <your user ID>
Xauth password <your password>
Optionally you can also install the root certificate of the TUB-CA from http://ca.tu-berlin.de/zertifikate.html to avoid corresponding warnings.
Put up.sh, down.sh and this modified tubit.ovpn into your OpenVPN config directory.
If the VPN connection works, but the browser redirects to a TU Berlin site (DNS lookup not working correctly), you have to manually add the following to /etc/resolve.conf
nameserver 130.149.4.20
nameserver 130.149.2.12
These entries have to be added at the beginning of the file, after the VPN connection is established.
========== up.sh ============== #!/bin/sh #Script to setup the resolv.conf file for the OpenVPN connection # Runs when the openvpn connection comes up #Davis Goodman August 13th, 2004 dnsaddress=`echo $foreign_option_1 |cut -b 17-` domain=`echo $foreign_option_4 |cut -b 20-` cp /etc/resolv.conf /etc/resolv.conf.orig echo search $domain > /etc/resolv.conf echo nameserver $dnsaddress >> /etc/resolv.conf ============================= ============ down.sh ================ #!/bin/sh #Script runs when the OpenVPN connection is torned down and restores the resolv.conf file #Davis Goodman August 13th, 2004 # # mv /etc/resolv.conf.orig /etc/resolv.conf ==================================and add the following lines to the tubit.ovpn configuration file:
up /etc/openvpn/up.sh down /etc/openvpn/down.sh