radius of earth
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 244
Tales of Middle Earth 2.3.4
Tales of Middle Earth is a tile-based dungeon crawler similar to Nethack, Rogue, and Angband. more>>
Tales of Middle Earth (ToME) is a fantasy adventure game, based on the works of J.R.R. Tolkien. It is a game that emphasizes intricate, challenging, and varied gameplay over graphics.
Hundreds of different monsters in randomly-generated, unpredictable dungeons will strive to slay you by various means, and you counter - if you survive - by developing the skills of your choice and wielding mighty artifacts.
ToMEs races from Hobbit to Troll and classes from Swordmaster to Summoner allow for many different playing styles and a replay value that extends through years.
The only game so realistic that your scrolls and spell books will burn if you trudge in lava (unless you have gained immunity from some armour), you will dry up rivers to cast mighty spells, strike at orcs with blades attuned to slay them specifically, summon armies from a simple totem, and even forge your own artifacts.
There is an entire community to help you with the game, and it is far from static - ToME is a developing game, always improving. And best of all, its free.
Enhancements:
- Fix window position saving on Mac OS
- Remove buggy trap of Stair Movement
- Fix typo in one monsters flags
- Fix word wrapping in character sheet
<<lessHundreds of different monsters in randomly-generated, unpredictable dungeons will strive to slay you by various means, and you counter - if you survive - by developing the skills of your choice and wielding mighty artifacts.
ToMEs races from Hobbit to Troll and classes from Swordmaster to Summoner allow for many different playing styles and a replay value that extends through years.
The only game so realistic that your scrolls and spell books will burn if you trudge in lava (unless you have gained immunity from some armour), you will dry up rivers to cast mighty spells, strike at orcs with blades attuned to slay them specifically, summon armies from a simple totem, and even forge your own artifacts.
There is an entire community to help you with the game, and it is far from static - ToME is a developing game, always improving. And best of all, its free.
Enhancements:
- Fix window position saving on Mac OS
- Remove buggy trap of Stair Movement
- Fix typo in one monsters flags
- Fix word wrapping in character sheet
Download (2.5MB)
Added: 2007-05-23 License: GPL (GNU General Public License) Price:
885 downloads
FF RADIUS Library 0.4
FF RADIUS Library is a C library that implements some parts of RFCs 2865 and 2866 to provide a RADIUS implementation. more>>
FF RADIUS Library is a C library that implements some parts of RFCs 2865 and 2866 to provide a RADIUS implementation.
Youre welcome to modify/enhance it! Please let me know of any further developments, in order for me to include/link them.
Enhancements:
- A segfault was fixed in makeMD5().
<<lessYoure welcome to modify/enhance it! Please let me know of any further developments, in order for me to include/link them.
Enhancements:
- A segfault was fixed in makeMD5().
Download (0.10MB)
Added: 2006-09-04 License: LGPL (GNU Lesser General Public License) Price:
1149 downloads
Radiuslib 0.5
Radiuslib provides a complete RADIUS protocol and utility library for Ruby. more>>
Radiuslib provides a complete RADIUS protocol and utility library for Ruby.
Radiuslib is a complete RADIUS protocol and utility library for the Ruby programming language. It includes a very featureful, RFC- compliant protocol implementation, as well as parser classes for RADIUS dictionaries, Cistron-format "users" files, and standard "detail" accounting logs.
Main features:
- Full VSA support, even those quirky USR VSAs. All of the complexity of VSA handling is below the surface; you treat them like any other attribute, and Radiuslib handles the more complex packing and unpacking these attributes require.
- The authentication classes support both PAP and CHAP. It has been a frequent annoyance to me that more libraries (esp. Perls) dont support CHAP. Radiuslib handles both authentication methods seamlessly.
- Encodes and decodes filters in the Ascend binary filter format (abinary).
- Idiomatic, Ruby-ish API. I tried to implement lots of useful iterators, and most classes that represent indexable data can be accessed as youd expect, with the familiar Hash-like [] and []= methods.
- The "Request" classes include client-side networking, with configurable timeout & retransmission.
- A complete, RFC-compliant implementation of the protocol, appropriate for client or server use. Both authentication and accounting are supported.
- A higher-level RADIUS request handler, encapsulating an entire RADIUS authentication or accounting transaction.
- A dictionary parser supporting almost all available formats in use today.
- A read/write parser for Cistron-format "users" files, commonly used to store user authentication information.
- A read/write parser for Cistron-format "users" files in DBM format (TBA).
- A parser for RADIUS accounting "detail" files. This is another standard file format used by RADIUS servers to log accounting data.
<<lessRadiuslib is a complete RADIUS protocol and utility library for the Ruby programming language. It includes a very featureful, RFC- compliant protocol implementation, as well as parser classes for RADIUS dictionaries, Cistron-format "users" files, and standard "detail" accounting logs.
Main features:
- Full VSA support, even those quirky USR VSAs. All of the complexity of VSA handling is below the surface; you treat them like any other attribute, and Radiuslib handles the more complex packing and unpacking these attributes require.
- The authentication classes support both PAP and CHAP. It has been a frequent annoyance to me that more libraries (esp. Perls) dont support CHAP. Radiuslib handles both authentication methods seamlessly.
- Encodes and decodes filters in the Ascend binary filter format (abinary).
- Idiomatic, Ruby-ish API. I tried to implement lots of useful iterators, and most classes that represent indexable data can be accessed as youd expect, with the familiar Hash-like [] and []= methods.
- The "Request" classes include client-side networking, with configurable timeout & retransmission.
- A complete, RFC-compliant implementation of the protocol, appropriate for client or server use. Both authentication and accounting are supported.
- A higher-level RADIUS request handler, encapsulating an entire RADIUS authentication or accounting transaction.
- A dictionary parser supporting almost all available formats in use today.
- A read/write parser for Cistron-format "users" files, commonly used to store user authentication information.
- A read/write parser for Cistron-format "users" files in DBM format (TBA).
- A parser for RADIUS accounting "detail" files. This is another standard file format used by RADIUS servers to log accounting data.
Download (0.10MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
915 downloads
RADIUS::Packet 1.0
RADIUS::Packet is an object-oriented Perl interface to RADIUS packets. more>>
RADIUS::Packet is an object-oriented Perl interface to RADIUS packets.
SYNOPSIS
use RADIUS::Packet;
use RADIUS::Dictionary;
my $d = new RADIUS::Dictionary "/etc/radius/dictionary";
my $p = new RADIUS::Packet $d, $data;
$p->dump;
if ($p->attr(User-Name eq "lwall") {
my $resp = new RADIUS::Packet $d;
$resp->set_code(Access-Accept);
$resp->set_identifier($p->identifier);
$resp->set_authenticator($p->authenticator);
$resp->set_attr(Reply-Message) = "Welcome, Larry!rn";
my $respdat = auth_resp($resp->pack, "mysecret");
...
RADIUS (RFC2138) specifies a binary packet format which contains various values and attributes. RADIUS::Packet provides an interface to turn RADIUS packets into Perl data structures and vice-versa.
RADIUS::Packet does not provide functions for obtaining RADIUS packets from the network. A simple network RADIUS server is provided as an example at the end of this document. Also, a RADIUS::Server module is under development which will simplify the interface.
<<lessSYNOPSIS
use RADIUS::Packet;
use RADIUS::Dictionary;
my $d = new RADIUS::Dictionary "/etc/radius/dictionary";
my $p = new RADIUS::Packet $d, $data;
$p->dump;
if ($p->attr(User-Name eq "lwall") {
my $resp = new RADIUS::Packet $d;
$resp->set_code(Access-Accept);
$resp->set_identifier($p->identifier);
$resp->set_authenticator($p->authenticator);
$resp->set_attr(Reply-Message) = "Welcome, Larry!rn";
my $respdat = auth_resp($resp->pack, "mysecret");
...
RADIUS (RFC2138) specifies a binary packet format which contains various values and attributes. RADIUS::Packet provides an interface to turn RADIUS packets into Perl data structures and vice-versa.
RADIUS::Packet does not provide functions for obtaining RADIUS packets from the network. A simple network RADIUS server is provided as an example at the end of this document. Also, a RADIUS::Server module is under development which will simplify the interface.
Download (0.042MB)
Added: 2007-04-11 License: Perl Artistic License Price:
931 downloads
RADIUS::Dictionary 1.0
RADIUS::Dictionary is a RADIUS dictionary parser. more>>
RADIUS::Dictionary is a RADIUS dictionary parser.
SYNOPSIS
use RADIUS::Dictionary;
my $dict = new RADIUS::Dictionary "/etc/radius/dictionary";
$dict->readdict("/some/other/file");
my $num = $dict->attr_num(User-Name);
my $name = $dict->attr_name(1);
This is a simple module that reads a RADIUS dictionary file and parses it, allowing conversion between dictionary names and numbers.
METHODS
new
Returns a new instance of a RADIUS::Dictionary object. If given an (optional) filename, it calls readdict for you.
->readdict
Parses a dictionary file and learns the namenumber mappings.
->attr_num($attrname)
Returns the number of the named attribute.
->attr_type($attrname)
Returns the type (string, integer, ipaddr, or time) of the named attribute.
->attr_name($attrnum)
Returns the name of the attribute with the given number.
->attr_numtype($attrnum)
Returns the type of the attribute with the given number.
->attr_has_val($attrnum)
Returns a true or false value, depending on whether or not the numbered attribute has any known value constants.
->val_has_name($attrnum)
Alternate (bad) name for attr_has_val.
->val_num($attrnum, $valname)
Returns the number of the named value for the attribute number supplied.
->val_name
Returns the name of the numbered value for the attribute number supplied.
<<lessSYNOPSIS
use RADIUS::Dictionary;
my $dict = new RADIUS::Dictionary "/etc/radius/dictionary";
$dict->readdict("/some/other/file");
my $num = $dict->attr_num(User-Name);
my $name = $dict->attr_name(1);
This is a simple module that reads a RADIUS dictionary file and parses it, allowing conversion between dictionary names and numbers.
METHODS
new
Returns a new instance of a RADIUS::Dictionary object. If given an (optional) filename, it calls readdict for you.
->readdict
Parses a dictionary file and learns the namenumber mappings.
->attr_num($attrname)
Returns the number of the named attribute.
->attr_type($attrname)
Returns the type (string, integer, ipaddr, or time) of the named attribute.
->attr_name($attrnum)
Returns the name of the attribute with the given number.
->attr_numtype($attrnum)
Returns the type of the attribute with the given number.
->attr_has_val($attrnum)
Returns a true or false value, depending on whether or not the numbered attribute has any known value constants.
->val_has_name($attrnum)
Alternate (bad) name for attr_has_val.
->val_num($attrnum, $valname)
Returns the number of the named value for the attribute number supplied.
->val_name
Returns the name of the numbered value for the attribute number supplied.
Download (0.042MB)
Added: 2007-04-11 License: Perl Artistic License Price:
933 downloads
Invade Earth 2.7.9
Invade Earth is an open-source implementation of the popular board game Risk 2210 AD. more>>
Invade Earth is an open-source implementation of the popular board game Risk 2210 AD.
Invade Earth includes a map editor, support for variant rules including Classic and Secret Mission modes, and a network play mode.
Main features:
- Multiple rule sets and maps:
- Invade Earth A.D. 2210
- Amoeba Invasion Expansion
- Mars Expansion
- Pantheon Expansion (our version of Risk: Godstorm) (coming soon)
- Classic
- Secret Mission
- Custom rule values
- A versatile Map Editor
- Several built-in AIs (play against the computer)
- Network support (play against your friends)
- A centralized list of open internet games
- Save and load game states, even over a network
- Watch a replay of saved games
<<lessInvade Earth includes a map editor, support for variant rules including Classic and Secret Mission modes, and a network play mode.
Main features:
- Multiple rule sets and maps:
- Invade Earth A.D. 2210
- Amoeba Invasion Expansion
- Mars Expansion
- Pantheon Expansion (our version of Risk: Godstorm) (coming soon)
- Classic
- Secret Mission
- Custom rule values
- A versatile Map Editor
- Several built-in AIs (play against the computer)
- Network support (play against your friends)
- A centralized list of open internet games
- Save and load game states, even over a network
- Watch a replay of saved games
Download (MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
675 downloads
uRadiusLib 0.1
uRadiusLib is a full, small, and easy to use C RADIUS client library. more>>
uRadiusLib is a full, small, and easy to use C RADIUS client library. It includes full AAA example code with complete attribute sets.
It provides AAA via a very easy C API for your applications. uRadiusLib is based on the Cistron and Livingstone radiusd code.
It was originally designed to be used in embedded Linux applications with uClibC/Buildroot or similar, but can be used anywhere.
Installation:
cd liburadius
make
make install
cd examples
#setup hardcoded for your radius server
#See PLAN for API
vi testauth.c
make testauth
./testauth
#setup hardcoded for your radius server
#See PLAN for API
vi testacct.c
make testacct
./testacct
<<lessIt provides AAA via a very easy C API for your applications. uRadiusLib is based on the Cistron and Livingstone radiusd code.
It was originally designed to be used in embedded Linux applications with uClibC/Buildroot or similar, but can be used anywhere.
Installation:
cd liburadius
make
make install
cd examples
#setup hardcoded for your radius server
#See PLAN for API
vi testauth.c
make testauth
./testauth
#setup hardcoded for your radius server
#See PLAN for API
vi testacct.c
make testacct
./testacct
Download (0.038MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1236 downloads
ASN RADIUS Admin 0.5
ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server. more>>
ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server.
ARA is PHP web-app operating on FreeRADIUS storage (currently only MySQL database). Look on its overview and decide is it right tool for you.
Enhancements:
- Visual polishing and end-user experience improvements.
- An easy system to integrate RADIUS users private information.
<<lessARA is PHP web-app operating on FreeRADIUS storage (currently only MySQL database). Look on its overview and decide is it right tool for you.
Enhancements:
- Visual polishing and end-user experience improvements.
- An easy system to integrate RADIUS users private information.
Download (0.040MB)
Added: 2006-11-29 License: GPL (GNU General Public License) Price:
1068 downloads
daloRADIUS 0.9-2
daloRADIUS is an advanced RADIUS web management application aimed at managing hotspots and general-purpose ISP deployments. more>>
daloRADIUS is an advanced RADIUS web management application aimed at managing hotspots and general-purpose ISP deployments. The project features user management, graphical reporting, accounting, a billing engine and integrates with GoogleMaps for geo-locating.
daloRADIUS is written in PHP and JavaScript and utilizes a MySQL database. It is based on a FreeRADIUS deployment with MySQL serving as the backend. Among other features it implements ACLs, GoogleMaps integration for locating hotspots/access points visually and many more features.
<<lessdaloRADIUS is written in PHP and JavaScript and utilizes a MySQL database. It is based on a FreeRADIUS deployment with MySQL serving as the backend. Among other features it implements ACLs, GoogleMaps integration for locating hotspots/access points visually and many more features.
Download (0.17MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
834 downloads
mysqlRadius 1.71
mysqlRadius is the world favorite Cistron 1.6.6 (and other) radius server manager. more>>
mysqlRadius is the world favorite Cistron 1.6.6 (and other) radius server manager. mysqlRadius can manage 1 or 100 RADIUS servers without a hiccup including redundant backup servers that transparently provide mysql accounting data via mysqlRadacct aux application.
Our mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
<<lessOur mysqlISP component systems focus is on a very stable telco quality ISP services via static configuration of servers from mySQL, but with mySQL not required to be live.
Download (0.082MB)
Added: 2006-03-13 License: GPL (GNU General Public License) Price:
1320 downloads
FreeRADIUS 1.1.6
FreeRADIUS is a feature-rich, high-performance RADIUS server. more>>
FreeRADIUS is the premiere open source RADIUS server. While detailed statistics are not available, we believe that FreeRADIUS is well within the top 5 RADIUS servers world-wide, in terms of the number of people who use it daily for authentication.
FreeRADIUS project scales from embedded systems with small amounts of memory, to systems with millions of users. It is fast, flexible, configurable, and supports more authentication protocols than many commercial servers.
The FreeRADIUS Server Project encompasses more than just a RADIUS server. The related software includes a PAM authentication module, and an Apache 1.3 and 2.0 authentication module. The server comes with a PHP-based web user administration tool, called dialupadmin.
The RADIUS server has more features and is more flexible than any other free software RADIUS server, and many commercial servers. Most commercial servers are distributed as a "base" system ($), and an "enhanced" version ($$) with more features. FreeRADIUS has all the features of a commercial "enhanced" server, without the associated cost.
In it simplest form, the server is similar to Livingstons 2.0 server. Many configuration files are similar, and the general operation of the server should be familiar to anyone who has used a variant of the Livingston server.
FreeRADIUS can be extended significantly from this simple form, however. There are many modules and configuration files which have no equivalent in older RADIUS servers. These new features permit FreeRADIUS to work within complex systems, and environments which require high performance.
To support the demanding requirements of a modern RADIUS server, FreeRADIUS features more than 50 vendor-specific dictionary files. It ships with support for LDAP, MySQL, PostgreSQL, Oracle databases. It supports EAP, with EAP-MD5, EAP-SIM, EAP-TLS, EAP-TTLS, EAP-PEAP, and Cisco LEAP sub-types.
It supports proxying, with fail-over and load balancing. It has reached a stable 1.0 release, with incremental improvements being added and tested daily. In short, it is a powerful, fast, and complex RADIUS server which is compatible with the latest network protocols and practices, and is well suited for deployment in any size network.
Enhancements:
- A few dictionaries have been added.
- Several bugs have been fixed, including some double frees that were found in 1.1.5.
- Nearly 30 bugs found by Coverity were also fixed, including a memory leak in the EAP-TTLS code.
<<lessFreeRADIUS project scales from embedded systems with small amounts of memory, to systems with millions of users. It is fast, flexible, configurable, and supports more authentication protocols than many commercial servers.
The FreeRADIUS Server Project encompasses more than just a RADIUS server. The related software includes a PAM authentication module, and an Apache 1.3 and 2.0 authentication module. The server comes with a PHP-based web user administration tool, called dialupadmin.
The RADIUS server has more features and is more flexible than any other free software RADIUS server, and many commercial servers. Most commercial servers are distributed as a "base" system ($), and an "enhanced" version ($$) with more features. FreeRADIUS has all the features of a commercial "enhanced" server, without the associated cost.
In it simplest form, the server is similar to Livingstons 2.0 server. Many configuration files are similar, and the general operation of the server should be familiar to anyone who has used a variant of the Livingston server.
FreeRADIUS can be extended significantly from this simple form, however. There are many modules and configuration files which have no equivalent in older RADIUS servers. These new features permit FreeRADIUS to work within complex systems, and environments which require high performance.
To support the demanding requirements of a modern RADIUS server, FreeRADIUS features more than 50 vendor-specific dictionary files. It ships with support for LDAP, MySQL, PostgreSQL, Oracle databases. It supports EAP, with EAP-MD5, EAP-SIM, EAP-TLS, EAP-TTLS, EAP-PEAP, and Cisco LEAP sub-types.
It supports proxying, with fail-over and load balancing. It has reached a stable 1.0 release, with incremental improvements being added and tested daily. In short, it is a powerful, fast, and complex RADIUS server which is compatible with the latest network protocols and practices, and is well suited for deployment in any size network.
Enhancements:
- A few dictionaries have been added.
- Several bugs have been fixed, including some double frees that were found in 1.1.5.
- Nearly 30 bugs found by Coverity were also fixed, including a memory leak in the EAP-TTLS code.
Download (2.2MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
943 downloads
RADIUS::UserFile 1.01
RADIUS::UserFile is a Perl extension for manipulating a RADIUS users file. more>>
RADIUS::UserFile is a Perl extension for manipulating a RADIUS users file.
SYNOPSIS
use RADIUS::UserFile;
my $users = new RADIUS::UserFile
File => /etc/raddb/users,
Check_Items => [ qw(Password Calling-Station-Id) ];
$users->load(/usr/local/etc/radius/users);
$users->add(Who => joeuser,
Attributes => { key1 => val1, key2 => val2 },
Comment => Created on . scalar localtime);
$users->update(File => /etc/raddb/users,
Who => qw(joeuser janeuser));
print $users->format(joeuser);
<<lessSYNOPSIS
use RADIUS::UserFile;
my $users = new RADIUS::UserFile
File => /etc/raddb/users,
Check_Items => [ qw(Password Calling-Station-Id) ];
$users->load(/usr/local/etc/radius/users);
$users->add(Who => joeuser,
Attributes => { key1 => val1, key2 => val2 },
Comment => Created on . scalar localtime);
$users->update(File => /etc/raddb/users,
Who => qw(joeuser janeuser));
print $users->format(joeuser);
Download (0.015MB)
Added: 2007-04-11 License: Perl Artistic License Price:
933 downloads
radclass r72
radclass is a PHP4 class that handles the administration of multiple IC-Radius servers. more>>
radclass is a PHP4 class that handles the administration of multiple IC-Radius servers.
radclass can add, delete, and update users and groups on foreign radius hosts, and it can modify their check items. radclass was designed in the PHP4 OO model to be a portable solution.
<<lessradclass can add, delete, and update users and groups on foreign radius hosts, and it can modify their check items. radclass was designed in the PHP4 OO model to be a portable solution.
Download (0.044MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1436 downloads
mysqlRadiusd 1.71
mysqlRadiusd project is a MySQL driven RADIUS daemon. more>>
mysqlRadiusd project is a MySQL driven RADIUS daemon.
mysqlRadiusd is a RADIUS daemon based on the 1.6.6 Cistron distribution and the mySQL patches that has been modified for use with the mysqlISP GPL ISP management software system.
It is very stable and can handle large ISPs easily while pumping mass accounting records into mysqlRadacct subsystem at a tremendous rate from even multi-server clusters.
<<lessmysqlRadiusd is a RADIUS daemon based on the 1.6.6 Cistron distribution and the mySQL patches that has been modified for use with the mysqlISP GPL ISP management software system.
It is very stable and can handle large ISPs easily while pumping mass accounting records into mysqlRadacct subsystem at a tremendous rate from even multi-server clusters.
Download (0.082MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
956 downloads
Earth 0.2
Earth allows you to find files across a large network of machines and track disk usage in real time. more>>
Earth allows you to find files across a large network of machines and track disk usage in real time. The project consists of a daemon that indexes filesystems in real time and reports all the changes back to a central database.
This can then be queried through a simple, yet powerful, web interface. Think of it like Spotlight or Beagle but operating system independent with a central database for multiple machines.
Earth is initially focused on managing the explosion of data that occurs in digital visual effects work.
Enhancements:
- Many small usability improvements, several significant performance improvements for the Web application, reduced database size, code improvements, and a much improved command line interface to the Earth daemon.
<<lessThis can then be queried through a simple, yet powerful, web interface. Think of it like Spotlight or Beagle but operating system independent with a central database for multiple machines.
Earth is initially focused on managing the explosion of data that occurs in digital visual effects work.
Enhancements:
- Many small usability improvements, several significant performance improvements for the Web application, reduced database size, code improvements, and a much improved command line interface to the Earth daemon.
Download (0.45MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
2272 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above radius of earth search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed