Compare commits
2 commits
ca766b333a
...
f768be50bb
Author | SHA1 | Date | |
---|---|---|---|
f768be50bb | |||
ce41080dd6 |
4 changed files with 36035 additions and 1 deletions
16
README.md
16
README.md
|
@ -1,3 +1,17 @@
|
||||||
# ST1Tutorials
|
# 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
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
23161
Unsegmented.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 623 KiB |
11
scripts/install-packettracker.sh
Executable file
11
scripts/install-packettracker.sh
Executable 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";
|
Loading…
Reference in a new issue