Compare commits

..

2 commits

4 changed files with 36035 additions and 1 deletions

View file

@ -1,3 +1,17 @@
# ST1Tutorials
Solutions for the tutorial lessons of Applied Network Security 1 at CVUT FIT
Solutions for the tutorial lessons of Applied Network Security 1 at CVUT FIT
## Network Diagram
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)

12848
Segmented.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 414 KiB

23161
Unsegmented.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 623 KiB

View file

@ -0,0 +1,11 @@
#!/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";