From 5e5251b068d1099e812208c7e0d0ed4799626263 Mon Sep 17 00:00:00 2001 From: "mp4085@student.uni-lj.si" Date: Wed, 17 Dec 2014 20:45:42 +0000 Subject: git-svn-id: https://svn.lusy.fri.uni-lj.si/kpov-public-svn/kpov-public@99 5cf9fbd1-b2bc-434c-b4b7-e852f4f63414 --- .../tasks/openvpn_simple_smb/howtos/en/index.html | 61 ++++++++++++++++++++++ kpov_judge/tasks/openvpn_simple_smb/task.py | 11 ++++ 2 files changed, 72 insertions(+) create mode 100644 kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html diff --git a/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html b/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html new file mode 100644 index 0000000..9bd7bc5 --- /dev/null +++ b/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html @@ -0,0 +1,61 @@ + + + + + + + +

OpenVPN and SMB task:

+

Quick task:


+ Connect to VPN with OpenVPN. Enable access to files through NFS and copy them through SMB.

+

Navodila:


+ 1. From Directory with images of virtual computers drag twice the picture SimpleArbiterVPN and VPNClient.
+ 2. With VirtualBoxom (or other programs for virtual computers) create two virtual computers and give them VPNCLient.vdi and SimpleArbiterVPN.vdi as disk for storage.
+ 3. On both set two network interface(NAT and Internal) and run them.
+ 4. On both VM login with username root and password kaboom .

+

First part: Set up OpenVPN on SimpleArbiterVPN and VPNClient.

+

Settings on the server:

+ 1. Download packages uml-utilities -> to adjust the virtual network interfaces and packet (openvpn). example: sudo apt-get install openvpn
+ 2. The new virtual network interface create with tunctl and specify IP with sudo ifconfig tap0 10.P.Q.R netmask 255.255.255.0
+ 3. Then generirate common key (you will share that key with client) with the command: openvpn --genkey --secret vpnkljuc.key
+ 4. On server set the configuration file tap0.conf, which should contain (split by lines) "dev tap0","proto tcp-server", "secret vpnkljuc.key"
+ 5. Run openvpn with openvpn --config /some_directory/somewhere/tap0.conf
+

Settings on the client:

+1., 2. steps are the same as the settings on the server
+3. Create configuration file tap0.conf, which should contain (split by lines) "remote IP_OF_YOUR_VPN_SERVR", "dev tap0", "proto tcp-client", "secret vpnkljuc.key"
+4. On OpenVPN server connect to openvpn --config /some_directory/somewhere/tap0.conf
+

+

Second part: write a program, which converts the binary record 32-bit number in decimal.


+ The task can be made in Java or Python. You can also write code in any text editor.

+


+ JAVA------
+ 1. With command nano bintodec3.java create and open empty program with text editor nano
+ 2. Write a program for converting 24-bit number in two's complement into a decimal shape
+

+ 3. Click Ctrl+X, then Y and Enter, that the program is closed and stored.
+ 4. If you don't have it, install Java sudo apt-get install openjdk-6-jdk

+ 5. Compile program javac bintodec3.java
+ 6. You can run and test the program java bintodec3. On the standard input are entered 24-bit numbers in šhexadecimal format

+

PYTHON------
+ 1. With command nano bintodec3.py create and open empty program with text editor nano
+ 2. Write a program which converts 24-bit number in two's complement into a decimal shape
+
+ 3. Click Ctrl+X, then Y and Enter, that the program is closed and stored.
+ 4. Start the program with command python bintodec3.py



+ + +

+

Testing

+ 1. You can start the test program with command ./run_test.py
+
+ 2. For "Upor. Ime" and "Geslo" write your username and password. (example.: "pz1234@student.uni-lj.si" and "geslo123")
+
+ 3. For the name of the task write XX.predvaja.
+ 4. When a program asks you for path, enter your path to program for converting. (example.: if you have a program bintodec3.py in the same map as program run_test.py, enter: ./bintodec3.py)
+ 5. When he asks you about IP address SimpleArbiterja, enter.
+ 6. If the program returns OK your task is finished.

+ +
+ + + \ No newline at end of file diff --git a/kpov_judge/tasks/openvpn_simple_smb/task.py b/kpov_judge/tasks/openvpn_simple_smb/task.py index 0b497ca..231529b 100644 --- a/kpov_judge/tasks/openvpn_simple_smb/task.py +++ b/kpov_judge/tasks/openvpn_simple_smb/task.py @@ -12,6 +12,17 @@ Strežnik SimpleArbiterVPN naj generira skupno skrivnost (*.key),katero shranite datoteko za OpenVPN povezavo. Nato poskrbite, da bo VPNClient na navideznem omrežju prek NFS omogočil dostop do imenika /home/test/IME_IMENIKA, pri čemer IME_IMENIKA preberite na SimpleArbiter. V ta imenik skopirajte datoteke, ki so prek SMB dostopne na SimpleArbiter. +""" + + 'en':u""" +Setup three virtual machines - SimpleArbiterVPN and two VPN clients (VPNClient1, VPNClient2). Set both +clients network cards so that they will have access to internal network and internet. Install OpenVPN to +all three machines and a program for supervising virtual devices (which you will use to create device tap). +Server SimpleArbiterVPN should generate a common secret (*.key), which you should save to /vpn directory +and use on VPNClient together with configuration file for OpenVPN connection. After that make sure that +VPNClient has enabled access to /home/test/IME_IMENIKA over NFS on it's virtual connection. You will get +IME_IMENIKA from SimpleArbiter. Copy files that should be available from AimpleArbiter over SMB to IME_IMENIKA. + """ } -- cgit v1.2.1