Project

General

Profile

Basic Testing » History » Version 5

laforge, 02/24/2017 04:32 PM

1 1 laforge
h1. Basic Testing
2
3
This page documents some basic testing setup for the Kenrel GTP-U code. It follows the below rationale:
4
* focus on testing the kernel GTP-U module without too much external dependencies
5
* test GTP-U interoperability of the kernel with at least one other implementation, not just kernel-to-kernel (which currently is not supported in the kernel, as it only implements the GGSN/P-GW role)
6
* limit testing to SGSN/S-GW and GGSN/P-GW, without a real cellular network (which is possible e.g. using [[OsmoSGSN:]] and [[OsmoPCU:]])
7
8
h2. Building / Installing dependencies
9
10
In order to follow below test instructions, you will need
11
* A Linux kernel including the GTP-U driver (@drivers/net/gtp.c@) either compiled-in or as kernel module
12
* [[libgtpnl]] - the userspace library providing an API around the kernel GTP-U netlink interface
13
* [[OpenGGSN:]] - a minimal C-language implementation of a 3GPP GGSN, also contains a SGSN-side emulator called [[OpenGGSN:sgsnemu]]
14 5 laforge
** make sure you use Version 0.93 or later
15
** make sure you compile it with @--enable-gtp-linux@ enable during the @./configure@ step
16 1 laforge
17 2 laforge
You can find some instructions on how to build [[OpenGGSN:]] with support for [[libgtpnl]] and kernel GTP-U at this wiki page: [[OpenGGSN:Kernel_GTP]]
18
19 1 laforge
h2. Test setup description
20
21
We will run the GGSN natively on the host, and put the emulated SGSN inside a separate network namespace.
22
23
The two namespaces are interconnected by a virtual ethernet device using the transfer network 172.31.1.0/24
24
25
The GGSN is configured to provide a pool of IP addresses from the 192.168.71.0/24 range.  Each PDP context will be allocated one dynamic address from that pool
26
27
28
h2. Test instructions
29
30
h3. create the network namespace for the SGSN
31
32
 ip netns add sgsn
33
34
h3. add veth to be used between SGSN and GGSN
35
36
 ip link add veth0 type veth peer name veth1
37
38
h3. remote (SGSN) side of veth device
39
40
<pre>
41
ip link set veth1 netns sgsn
42
ip netns exec sgsn ip addr add 172.31.1.2/24 dev veth1
43
ip netns exec sgsn ip link set veth1 up
44
</pre>
45
46
h3. local (GGSN) side of veth device
47
48
<pre>
49
ip addr add  172.31.1.1/24 dev veth0
50
ip link set veth0 up
51
</pre>
52
53
h3. execute the GGSN on the host
54
55 3 laforge
 ggsn -g -c ./ggsn.conf.test
56 1 laforge
57
(use the file attached to this wiki page)
58
59 4 laforge
The @-g@ option is responsible for activating kernel-GTP support. If you cannot get the example described in this document to work, try the pure GTP-U userspace implementation by removing @-g@ from the above command line.  If it works then, there's something related to Kernel GTP-U that breaks the setup.
60
61 1 laforge
h3. execute the emulated SGSN inside the sgsn namespace
62
63
 ip netns exec sgsn sgsnemu -d -r 172.31.1.1 -l 172.31.1.2 --defaultroute --createif
64
65
h3. verify the existnace of the GTP tunnel
66
67
<pre>
68
ggsn:~# gtp-tunnel list
69
version 1 tei 1/1 ms_addr 192.168.71.2 sgsn_addr 172.31.1.2
70
</pre>
71
72
h3. further testing
73
74
in the @sgsn@ namespace, there's now a default-route that points into the GTP tunnel. You can use this to ping any network address that's reachable to the GGSN host.  If that host is connected to the internet, you can e.g. run a ping command from within the namespace using 
75
76
 ip netns exec sgsn ping -c 10 8.8.8.8
77
78
which will send some IP packets to 8.8.8.8 via the tun0 device (created by [[OpenGGSN:sgsnemu]]). It will be encapsulated by the userspace GTP-U implementation of sgsnemu, sent via the veth device to the host, where it ends up inthe GTP-U kernel module, decapsulating the package and passing in on to the gtp0 device there.  Anything beyond that point depends on your local routing configuration.
Add picture from clipboard (Maximum size: 48.8 MB)