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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
Arpon's install:
================
1) Porting avaible;
2) General options;
3) Static linking;
In order to use ArpON you need the following
libraries installed in your system:
- Pthread
- Libpcap
- LibNet 1.1
- LibDNet
1) Portings lists avaible:
==========================
$ make
For Mac OS X users:
===================
Compile with:
$ make osx
For FreeBSD users:
==================
Compile with:
$ make freebsd
For NetBSD users:
=================
Compile with:
$ make netbsd
For OpenBSD users:
==================
Compile with:
$ make openbsd
For Linux users:
================
Compile with:
$ make linux
For Debian users:
=================
Compile with:
$ make debian
For Gentoo users:
=================
Compile with:
$ make gentoo
2) General options:
===================
Clean with:
$ make clean
Install with:
# make install
Uninstall with
# make uninstall
Use with:
# ./arpon
Or
# arpon
3) Static linking:
==================
If you have problems with make, search
the static linking libraries in:
- /usr/lib
- /usr/local/lib
Later, search:
- libpcap.a
- libnet.a
- libdnet.a
Example:
- /usr/lib/libpcap.a
- /usr/lib/libnet.a
- /usr/local/lib/libdnet.a
Later, open arpon's makefile and modify
your os gcc line, example:
From:
gcc $(CFLAGS) $(LDFLAGS) $(LIBS_LINUX) -DLINUX -o $(EXEC) $(SOURCE)
To:
gcc $(CFLAGS) $(LDFLAGS) $(LIBS_LINUX) -DLINUX -o $(EXEC) $(SOURCE) /usr/lib/libpcap.a /usr/lib/libnet.a /usr/local/lib/libdnet.a
Save and exit, go:
$ make
$ sudo make install
===
EOF
===
|