File: intro.tex

package info (click to toggle)
ns2 2.35%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 78,780 kB
  • ctags: 27,490
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 816; awk: 525; csh: 355
file content (84 lines) | stat: -rw-r--r-- 3,119 bytes parent folder | download | duplicates (8)
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
\newcommand{\simname}{\em ns-2}
\newcommand{\codelocation}{\tt mash.cs.berkeley.edu}
\section Introduction
This manual is intended to be a general reference document
for people wishing to use or develop modules for the \simname
simulator.
The first section provides an overview of the development environment
and how to be sure your changes are properly integrated into the
source tree.
The second section details the architecture of \simname,
including how objects relate to one another, plus some examples.
The first two sections are intended to be most useful for people
developing new modules for \simname.
The next section attempts to document some of the more confusing
or complicated interactions between the various support libraries
needed by \simname.
The final section focuses on how to perform simulations and present
simulation results.

\subsection The environment

The sources for \simname are located on the machine \codelocation,
under control of CVS, a source code control system built on top of RCS.
The machine is presently configured to only allow authenticated
remote login using Kerberos.
In particular, encrypted remote login sessions using {\tt telnet -x} is
required.

There are several mailing lists related to the project:
\begin{itemize}
	\item[{\sf ns-developers@mash.cs.berkeley.edu] - current developers
	\item[{\sf ns-announce@mash.cs.berkeley.edu] - announcements of new releases
	\item[{\sf ns-users@mash.cs.berkeley.edu] - user community discussions
\end{itemize}
To subscribe to the lists, send mail to {\tt majordomo@mash.cs.berkeley.edu}.
Send just the single line {\tt help} in your message if you are unfamiliar
with the operation of the majordomo subscription service.

There are also several web pages of interest:
\begin{itemize}
	\item[{\sf http://www-mash.cs.berkeley.edu/ns}] - status
	\item[{\sf http://netweb.usc.edu/vint}] - description of VINT
	\item[{\sf http://www-nrg.ee.lbl.gov/ns}] - version 1 of {\tt ns}
\end{itemize}

Here is a (nonexhaustive) list of people involved in the project:
\begin{itemize}
	\item USC/ISI
	\begin{itemize}
	\item[estrin@usc.edu] - Deborah Estrin
	\item[dante@valhalla.internet-care.com] - Dante De Lucia
	\item[kannan@catarina.usc.edu] - Kannan Varadhan
	\item[ahelmy@catarina.usc.edu] - Ahmed A-G Helmy
	\item[wlee@isi.edu] - WeeSan Lee
	\item[daniel@isi.edu] - Danial Zappala
	\item[mjh@isi.edu] - Mark Handley
	\end{itemize}
	\item Xerox PARC
	\begin{itemize}
	\item[shenker@parc.xerox.com] - Scott Shenker
	\item[breslau@parc.xerox.com] - Lee Breslau
	\item[bajaj@parc.xerox.com] - Sandeep Bajaj
	\end{itemize}
	\item LBNL
	\begin{itemize}
	\item[floyd@ee.lbl.gov] - Sally Floyd
	\item[kfall@ee.lbl.gov] - Kevin Fall
	\item[van@ee.lbl.gov] - Van Jacobson
	\end{itemize}
	\item UCB
	\begin{itemize}
	\item[mccanne@eecs.berkeley.edu] - Steven McCanne
	\item[elan@mercenary.cs.berkeley.edu] - Elan Amir
	\item[tomh@kayak.cs.berkeley.edu] - Tom Henderson
	\end{itemize}
\end{itemize}


The normal procedure is to first set up a CVS environment (see below)
before proceeding.


\subsection CVS Basics
\subsection Incorporating changes