forked from aarizaq/inetmanet-3.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
102 lines (72 loc) · 3.94 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
INSTALLATION INSTRUCTIONS
=========================
The INET Framework can be compiled on any platform supported by OMNeT++.
PREREQUISITES
You should have a working OMNeT++ installation, version 4.0 or later.
If you are running on Windows you will have to install the winpcap driver,
which is used by INET to capture network packets from external interfaces
(visit http://www.winpcap.org)
General
-------
1. Make sure your OMNeT++ installation works OK (e.g. try running the samples)
and it is in the path (to test, try the command "which nedtool"). On
Windows, open a console with the "mingwenv.cmd" command. The PATH and other
variables will be automatically adjusted for you. Use this console to compile
and run INET.
2. Extract the downloaded tarball into a directory of your choice (usually into your
workspace directory, if you are using the IDE). NOTE: The built-in Windows
archiver has bugs and cannot extract the file correctly. Use some other archiver
or do it from command line (tar xvfz inet-yyyymmdd-opp4-src.tgz)
If you are building from command line:
--------------------------------------
3. Change to the INET directory.
4. Type "make makefiles". This should generate the makefiles for you automatically.
5. Type "make" to build the inet executable (debug version). Use "make MODE=release"
to build release version.
6. you can run specific examples by changing into the example's directory and executing "./run"
If you are using the IDE:
-------------------------
3. Open the OMNeT++ IDE and choose the workspace where you have extracted the inet directory.
The extracted directory must be a subdirectory of the workspace dir.
4. Import the project using: File | Import | General | Existing projects into Workspace.
Then select the workspace dir as the root directory, and be sure NOT to check the
"Copy projects into workspace" box. Click Finish.
5. Open the project (if already not open) and wait until the indexer finishes.
Now you can build the project by pressing CTRL-B (Project | Build all)
6. To run an example from the IDE open the example's directory in the Project Explorer view,
find the corresponding omnetpp.ini file. Right click on it and select Run As / Simulation.
This should create a Launch Configuration for this example.
If the build was successful, you may try running the demo simulations.
Change into examples/ and type "./rundemo".
Note:
-----
- by default INET is creating a shared library (libinet.dll, libinet.so etc.)
in the "src" directory. To use the shared library you can use the "opp_run"
command to load it dynamically. Open the "src/run_inet" script to see how
to do it.
- If you add/remove files/directories later in the src directory, you MUST
re-create your makefile. Run "make makefiles" again if you are building
from the command line. (The IDE does it for you automatically)
VoIPTool feature
================
VoIPTool has only been tested on Linux. This does not mean it won't work on other
systems, but your milage may vary on getting it up and running.
PREREQUISITES.
This library is an add-on to the INET Framework for OMNeT++. It requires a working
installation of OMNeT++ 4.1 or later, and INET Framework version 20100723.
VoIPTool requires a "devel" package of the avcodec library (part of FFmpeg)
to be installed on your system. On Ubuntu, this package can be installed with the
following command:
$ sudo apt-get install libavcodec-dev
$ sudo apt-get install libavformat-dev
The package name and installation command may vary for other Linux systems.
INSTALLATION USING THE OMNeT++ IDE.
Start the IDE, and make sure you have a working INET Framework installation
as a project named "inet".
Import the VoIPTool project into the IDE (File->Import->General->Existing
project into workspace), and make sure it has the "inet" project marked
as dependency (Project->Properties->Project References).
Hit Ctrl+B to build.
Run the example simulations to check everything works fine.
---
Andras