Compare commits

..

No commits in common. "f768be50bb2936c8d8139851b29fd25189520caf" and "ca766b333a88e0d7a9be24465619e109d4653cc0" have entirely different histories.

4 changed files with 1 additions and 36035 deletions

View file

@ -1,17 +1,3 @@
# ST1Tutorials # ST1Tutorials
Solutions for the tutorial lessons of Applied Network Security 1 at CVUT FIT
## Network Diagram Solutions for the tutorial lessons of Applied Network Security 1 at CVUT FIT
This diagram shows the network topology as it should turn out after finishing this semester:
### Segmented Version
![Segmented View](./Segmented.svg)
In this version, the different parts of the network are labelled:
- ***CORE*** <!--- ToDo: Add description -->
- ***DISTRIBUTION*** <!--- ToDo: Add description -->
- ***ACCESS*** <!--- ToDo: Add description -->
### Unsegmented Version
![Unsegmented View](./Unsegmented.svg)

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 414 KiB

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 623 KiB

View file

@ -1,11 +0,0 @@
#!/bin/bash
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
git clone https://aur.archlinux.org/packettracer.git .
wget http://lectures.moucha.org/pt/CiscoPacketTracer_821_Ubuntu_64bit.deb;
makepkg -si;
sudo install --mode 644 *.desktop /usr/share/applications;
ls -al;
popd > /dev/null;
rm -rf "$contextRoot";