2017-06-16 22:38:02 +02:00
|
|
|
EduNetworkBuilder is a simple program for teaching network principles. It was inspired by watching
|
|
|
|
a number of people struggling with PacketTracer in an attempt to undestand IP addresses, subnets, and
|
|
|
|
gateways. Most of their struggles were with understanding how to configure an IP on each device; they
|
|
|
|
never got around to learning about how the subnets worked.
|
2017-02-24 13:28:42 +01:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
EduNetworkBuilder is geared to take all the complexity away, and let you visualize the network and
|
|
|
|
packet flow in a very simple way. It has proven itself already, as a great tool for teaching in
|
|
|
|
lab-settings in Africa.
|
|
|
|
|
|
|
|
It is also set up to be a tool for self-teaching; If you can solve all the built-in puzzles, you
|
|
|
|
should be well on your way to mastering networking.
|
|
|
|
|
|
|
|
EduNetworkBuilder is a Visual Studio program. You should be able to download the current free
|
|
|
|
edition of Visual Studio, open the project file, and make the project. You should also be able to
|
2022-01-07 03:00:36 +01:00
|
|
|
download pre-compiled versions from: http://tyounglightsys.com/EduNetworkBuilder
|
2017-06-16 22:38:02 +02:00
|
|
|
|
2017-06-30 22:53:00 +02:00
|
|
|
*** Building on Linux with Mono and XBuild ***
|
|
|
|
|
|
|
|
This should be the simplest way to install EduNetworkBuilder on Linux. You will need to install git, Mono and XBuild.
|
|
|
|
|
|
|
|
On Mint or ubuntu, you can do this by running:
|
|
|
|
|
|
|
|
$ sudo apt-get install mono-complete mono-xbuild git
|
|
|
|
|
2019-02-22 21:24:45 +01:00
|
|
|
For Ubuntu 18.04 also install libmono-microsoft-visualbasic10.0-cil
|
|
|
|
|
2017-06-30 22:53:00 +02:00
|
|
|
On Centos, you need the epel repository
|
|
|
|
# yum install epel-release
|
|
|
|
# yum install mono-complete mono-devel
|
|
|
|
# yum install git
|
|
|
|
|
|
|
|
After this, you should be ready to download and compile. Determine where you want to build your source,
|
|
|
|
cd to that directory, and run:
|
|
|
|
|
|
|
|
$ git clone https://git.solidcharity.com/timy/EduNetworkBuilder
|
|
|
|
$ cd EduNetworkBuilder
|
|
|
|
$ xbuild
|
|
|
|
|
|
|
|
After this, you should see a lot of build messages. In the end, you should be able to find the executable
|
|
|
|
at: EduNetworkBuilder/bin/Debug/EduNetworkBuilder.exe Copy this file wherever you want. For example:
|
|
|
|
|
|
|
|
$ sudo cp EduNetworkBuilder/bin/Debug/EduNetworkBuilder.exe /usr/local/bin/
|
|
|
|
|
|
|
|
And then you can run it by simply typing:
|
|
|
|
|
|
|
|
$ EduNetworkBuilder.exe
|
|
|
|
|
|
|
|
*** Building on Linux With MonoDevelop ***
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
EduNetworkBuilder should compile on Linux using MonoDevelop with one small change to the code.
|
|
|
|
EduNetworkBuilder on Windows uses the Microsoft deployment mechanism, which cannot build on Linux.
|
|
|
|
To make it work, we need to change a configuration option. So, here are the instructions for
|
|
|
|
building on Linux.
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
1) Install MonoDevelop for your version of Linux
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
2) Install git for your version of Linux
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
3) Download the EduNetworkBuilder source code.
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ git clone https://git.solidcharity.com/timy/EduNetworkBuilder
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
4) Choose which git branch you want to use (optional)
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ cd EduNetworkBuilder
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ git checkout Development
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
5) Change the EduNetworkBuilder.csproj file
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
Find the line that says:
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2019-02-22 20:26:06 +01:00
|
|
|
<GenerateManifests>true</GenerateManifests>
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
Change it to read:
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2019-02-22 20:26:06 +01:00
|
|
|
<GenerateManifests>false</GenerateManifests>
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
6) Run MonoDevelop (use the instructions for your specific operating system)
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
7) Find and open the EduNetworkBuilder.sln file
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
8) Tell EduNetworkBuilder to build using the MonoDevelop interface
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
9) Find the exe in the build directory. Chmod that to make it executable, and put it wherever you want it to go:
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ find . | grep EduNetworkBuilder.exe
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ chmod 755 [EduNetworkBuilder.exe path]
|
2017-06-16 22:41:40 +02:00
|
|
|
|
2017-06-16 22:38:02 +02:00
|
|
|
$ mv [EduNetworkBuilder.exe path] /usr/local/bin
|