Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 2.2 KB

README.md

File metadata and controls

54 lines (32 loc) · 2.2 KB

Current Project Status

We worked on this in 2008, for our college project. It would not be wrong to say, as of now it is dormant and abandoned. This project has been migrated from sf.net to here.

Introduction

LANSim is a CNet-like network simulator. It aims to be very easy to use GUI based network simulator. We started this (and is still is) our college semester project.

This is meant to be user friendly as well as feature rich. This field lacks software with good user interface except for the very popular CNet (which is still not available for Windows platform). The commercial softwares in this field are too complicated. This aimed to go along Multisim(R) and Blender(R) way. As user-friendly as Multisim and as functional as Blender.

Compiling the code

  1. cd to lansim folder.

  2. Run the following:-

     ant
    

- Or -

This method is not recommended as it won't copy the resource files like icon images etc.

The following is for Unix/Linux or Mac OSX platforms.

  1. cd to lansim folder.

  2. Then run the following:-

     find src/ -iname "*.java"| xargs  javac -cp lib/liquidlnf.jar:lib/napkinlaf-swingset2.jar:lib/napkinlaf.jar -d bin
    

- Or -

You can Import this project into Eclipse, and build from there. This is applicable for Windows too.

Running this project

Notice for Windows people: There are no EXE files. This is a Java project and all it needs is that JRE is installed.

  1. Open console (command prompt for Windows).

  2. cd to bin directory.

  3. There type:-

     java -cp .:../lib/liquidlnf.jar ui.main.ApplicationManager
    

    If you are on Windows then replace : by ;.

More Details and Documentation

Goto to project's homepage - http://lansim.sourceforge.net/. Also do checkout LANSim.doc and LANSim.ppt in doc folder.