Main > Free Download Search >

Free lan software for linux

lan

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 200
OSGlobeLAN 0.9

OSGlobeLAN 0.9


OSGlobeLAN project is a Web portal for LAN parties, featuring a seat map system, registration, and more. more>>
OSGlobeLAN project is a Web portal for LAN parties, featuring a seat map system, registration, and more.
Enhancements:
- A lot of changes have been made, but this release is primarily to announce that work on the pre-1.0 codebase of OSGL has been stopped, and will no longer be maintained.
- Serious security-related issues might be fixed, but all focus is now on the 2.0 codebase.
<<less
Download (MB)
Added: 2007-05-02 License: GPL (GNU General Public License) Price:
906 downloads
LANdialler 0.2

LANdialler 0.2


LANdialler is a project which controls your routers dial up links from any computer (modem sharing). more>>
LANdialler is a project which controls your routers dial up links from any computer (modem sharing).

LANdialler allows any computer (Windows, Linux, etc.) on a small LAN to control and share a modem attached to a *nix server.

It is typically used with IP masquerading or NAT on a Linux router to provide a house or small office with shared, on-demand, Internet access.

If you have a small home or office network (a LAN) that connects to the Internet via a dial up link on a Linux computer, then LANdialler could be of real use to you. If you havent got a Linux router yet find out how to set one up. The LANdialler client software should run on most operating systems, including Windows and Linux.

LANdialler consists of two programs:

The client is run on all desktop computers that require Internet access. It talks to the server, requesting Internet connectivity for as long as the user requires it. The interface is very simple, which is officially a "good thing".

The server runs on the router and manages the state of the dial up connection. It keeps track of the number of people who have asked to go online and keeps the Internet connection up until the last user disconnects.

<<less
Download (MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
phpLanParty 0.30

phpLanParty 0.30


phpLanParty project is a Lan Party registration application. more>>
phpLanParty project is a Lan Party registration application.
phpLanParty is an application to administer Lan Parties.If you host gaming sites, parties, tournaments, or the like, you may be interested in using this utility.
Main features:
- Its fast, easy, and easily modified to suit your needs.
- Being written in PHP, is multi-platform. Although its only been used and tested on Linux, it should work well on other Unix-like platforms, and probably the Win32 platform, provided the required packages (below) are installed.
<<less
Download (0.079MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 downloads
Wake On LAN proxy 0.5

Wake On LAN proxy 0.5


Wake On LAN proxy allows machines behind a gateway/firewall to be woken up. more>>
Wake On LAN proxy allows machines behind a gateway/firewall to be woken up. You have a constant connection to the Internet, but you are away from base. All machines except the gateway are powered off while you are away. Remotely you decide you want to access one of your machines. You need to power it up first. For machines with suitable NICs there is the Wake On LAN mechanism. But this doesnt work over the Internet because you would have to route a packet to your internal network. The firewall stops you from doing that, for good reasons. Even if you were able to route a packet, you wouldnt want this information to travel in the clear, otherwise other people who intercept your packets could learn how to turn on your machines remotely too. So you need some kind of authentication and privacy.

Enter Wake On LAN proxy. This runs on your gateway, or on some other machine on the network thats always on, and can be reached from the Internet by port forwarding. You can send a command to it to wake a particular machine and it broadcasts a suitable packet on the internal network.
<<less
Download (0.018MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1228 downloads
LAN Management System 1.9.1

LAN Management System 1.9.1


LMS is the integrated system of networks management designed for various size internet providers (ISP). more>>
LMS (LAN Management System) is the integrated system of networks management designed for various size internet providers (ISP).

That software writed in PHP, Perl and C, works with variuos database systems.

<<less
Download (1.93MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1230 downloads
Akeni LAN Messenger 1.2.96

Akeni LAN Messenger 1.2.96


Akeni LAN messenger is a cross-platform instant messenger client. more>> <<less
Download (2.9MB)
Added: 2007-02-22 License: Free for non-commercial use Price:
988 downloads
Run a web server inside LAN

Run a web server inside LAN


Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.

Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.

Sample:

#external and internal interfaces
EXT=eth0
INT=eth1

# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin

# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0

# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request

# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346

# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53

# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED

# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139

# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960

# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53

# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535

# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535

# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023

iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP

# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Linux Wireless LAN Project 0.2.3

Linux Wireless LAN Project 0.2.3


The goal of the Linux WLAN project is to develop a complete, standards based, wireless LAN system. more>>
The goal of the Linux WLAN project is to develop a complete, standards based, wireless LAN system using the GNU/Linux operating system.

The linux-wlan package is a linux device driver and subsystem package that is intended to provide the full range of IEEE 802.11 MAC management capabilities for use in user-mode utilities and scripts. The package currently supports the Intersil 802.11b Prism2, Prism2.5, and Prism3 reference designs for PCMCIA, PCI, and USB.

The package includes support for PLX9052 based PCI to PCMCIA adapter
with a few different PCMCIA cards.

<<less
Download (0.53MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1256 downloads
WANem 1.1

WANem 1.1


WANem is a WAN Emulator, meant to provide real experience of Internet, during development and test on a LAN environment. more>>
WANem is a WAN Emulator, meant to provide real experience of Internet, during development and test on a LAN environment. Typically application developers develop applications on a LAN while the intended purpose for the same could be the client is accessing the application by WAN or even the internet.

WANem allows for the application development team to setup a transparent application gateway which can be made use to simulate WAN characteristics like Network delay, Packet loss, Packet corruption, Disconnections, Packet re-ordering, Jitter, etc.

WANem allows for WAN network characteristic emulation and thus allowing for applications to be tested in a realistic WAN environment before they are moved into production.

WANem is a combined development strategy where it hooks into the Linux kernel for performing network emulations and provides GUI to make it simple to use. Remastering of Knoppix Live CD makes it even more effective as it becomes platform independant.
<<less
Download (576.6MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
814 downloads
Tickletankle 0.8

Tickletankle 0.8


Tickletankle project is a 2 player tank game with fractal terrain. more>>
Tickletankle project is a 2 player tank game with fractal terrain.
Tickletankle is a 2 player real-time tank game with fractal terrain that can be played locally or over the Internet or a LAN.
The game is based on Giovanni Tummarellos game "Fractal Fighters".
Enhancements:
- AI player
- improved collision detection
- changing settings in network games is now forbidden
- fixed a terrain synchronization mistake in network games
<<less
Download (0.019MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1052 downloads
LarryMessenger 0.9.0

LarryMessenger 0.9.0


LarryMessenger is a simple to use and easy to install Instant Messenger. more>>
LarryMessenger is a simple to use and easy to install Instant Messenger. It is Open Source Software and is hosted as an Open Source Project at SourceForge.net

It is published under the GNU General Public License

You can download all available Source Codes, Binary Releases and Documentation from theLarryMessenger Summary Page at SourceForge.
The Version Alpha02_1 Version will be out soon and provides possibilities to exchange text messages in a LAN with no need for a central Server or a Internet Connection and enables the user to querry the ICQ and AIM Messaging Network.

Next Versions will include support for Proxy Server, MSN and the Jabber Protocol.

If you want to join the Project as a developer visit our SourceForge Page. You will find there all necessary informations.

If you got a list of features you are missing, please fill in Feature Requests at SourceForge.

<<less
Download (3.7MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1225 downloads
nmbscan 1.2.4

nmbscan 1.2.4


NMB Scanner scans the shares of a NetBIOS/SMB network, using the NMB/SMB/NetBIOS protocols. more>>
NMB Scanner scans the shares of a NetBIOS/SMB network, using the NMB/SMB/NetBIOS protocols. It is useful for acquiring information on a local area network for such purposes as security auditing.

It can obtain such information as NMB/SMB/NetBIOS/Windows hostname, IP address, IP hostname, ethernet MAC address, Windows username, NMB/SMB/NetBIOS/Windows domain name, and master browser.

It can discover all the NMB/SMB/NetBIOS/Windows hosts from a LAN by using the hosts lists maintained by master browsers.

<<less
Download (0.011MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1214 downloads
SafeRelay 0.0.1

SafeRelay 0.0.1


SafeRelay is a certificate authority center, based on OpenSSL. more>>
SafeRelay is a certificate authority center, based on OpenSSL, for network administrators who want to deploy certificates on a LAN (local area network). SafeRelay is written in CURSEL.

You may be thinking of using TLS/SSL and certificates on your LAN for activities like:

configuring intranet web servers to use HTTPS instead of plain HTTP
making LAN users connect over IMAP/SSL or POP3/SSL to your mailserver
letting your LAN users connect to your Sendmail SMTP server using certificate client authentication
having LAN users sign or encrypt their email with S/MIME
client authentication based on certificates for intranet HTTPS webservers

The basic idea is that users tend to forget to make a backup of their certificates.

If the PC of the user crashes, the private key and certificate, can be recovered, from the diskette, by the user without help or intervention from the system or network administrator.

If the user has multiple PCs (e.g. a laptop and desktop), it suffices to simply import the certificate from the diskette on both PCs.

If the diskette is lost by the user, or stolen by another user, or if the diskette suffers from a media error, a new diskette with a new keypair must be prepared for the user.

In any case, by giving the user a diskette with a certificate, the user immediately receives a backup. Any tangible medium would also work. In fact, SafeRelay could allow you to use "cdrecord" and a CD-RW drive instead. For important keys and certificates, you could copy the contents of the diskette onto a read-only medium such as a CD.

<<less
Download (0.037MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1198 downloads
AirSnort 0.2.7e

AirSnort 0.2.7e


AirSnort is a wireless LAN (WLAN) tool which recovers encryption keys. more>>
AirSnort is a wireless LAN (WLAN) tool which recovers encryption keys. AirSnort operates by passively monitoring transmissions, computing the encryption key when enough packets have been gathered.

802.11b, using the Wired Equivalent Protocol (WEP), is crippled with numerous security flaws. Most damning of these is the weakness described in " Weaknesses in the Key Scheduling Algorithm of RC4 " by Scott Fluhrer, Itsik Mantin and Adi Shamir.

Adam Stubblefield was the first to implement this attack, but he has not made his software public. AirSnort, along with WEPCrack, which was released about the same time as AirSnort, are the first publicly available implementaions of this attack.

AirSnort requires approximately 5-10 million encrypted packets to be gathered. Once enough packets have been gathered, AirSnort can guess the encryption password in under a second.

<<less
Download (0.20MB)
Added: 2005-07-22 License: GPL (GNU General Public License) Price:
1178 downloads
ACM 5.0

ACM 5.0


ACM is a LAN-oriented, multiplayer aerial combat simulation. more>>
ACM is a LAN-oriented, multiplayer aerial combat simulation.

Players engage in air to air combat against one another using heat seeking missiles and cannons.

ACM has support for 16, 24, and 32 bit graphics cards.
<<less
Download (1.2MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1238 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5