| 1 | = Campus Network Design - Network Setup = |
| 2 | |
| 3 | In this exercise you will install Smokeping and get it to monitor various devices in the class network. |
| 4 | |
| 5 | Since most of the tasks in this exercise require you to be "root", the first thing you should do is to connect to your PC and start a root shell. |
| 6 | {{{ |
| 7 | $ sudo -s |
| 8 | # |
| 9 | }}} |
| 10 | === Install Smokeping === |
| 11 | Before we install Smokeping we have to update our OS and install Apache web server. |
| 12 | {{{ |
| 13 | # apt update |
| 14 | # apt upgrade |
| 15 | # apt install apache2 |
| 16 | # systemctl start apache2 |
| 17 | # systemctl enable apache2 |
| 18 | }}} |
| 19 | Now we will continue with the Smokeping installation. |