-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jjako
committed
Feb 5, 2004
1 parent
1f15864
commit 73c908c
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
OpenGGSN/Solaris notes | ||
====================== | ||
|
||
Solaris support is experimental, please test and report bugs. The | ||
Solaris port is tested under Solaris 8. | ||
|
||
Compiling | ||
--------- | ||
|
||
You need to edit the following line in ggsn/Makefile.in and | ||
sgsnemu/Makefile.in: | ||
|
||
LDFLAGS = -Wl,--rpath -Wl,/usr/local/lib @EXEC_LDFLAGS@ | ||
|
||
should be changed to: | ||
|
||
LDFLAGS = -lresolv -lsocket -lnsl @EXEC_LDFLAGS@ | ||
|
||
After this you install by the following commands: | ||
./configure | ||
make | ||
make install | ||
|
||
|
||
TUN | ||
--- | ||
|
||
You might or might not need to install the tun driver manually. For | ||
general information about tun see http://vtun.sourceforge.net/tun/ | ||
|
||
|
||
Known problems | ||
-------------- | ||
|
||
Currently multiple IP addresses on the same network interface is not | ||
implemented for Solaris. | ||
|
||
Currently routing table manipulation is not implemented for | ||
Solaris. You have to set the routes manually after you start ggsn or | ||
sgsnemu. | ||
|