Changes between Version 96 and Version 97 of AnonymityModule
- Timestamp:
- Jul 7, 2011 11:04:20 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AnonymityModule
v96 v97 47 47 === Setting up apache === 48 48 We need to generate traffic in our network and one of the easiest ways to do that is with HTTP traffic, so we need to set up a server and a web page. Connect to Server 1 and run [attachment:runme.apache this script] with the `sudo` command 49 {{{ #! /bin/sh49 {{{ #! /bin/sh 50 50 51 51 apt-get install apache2 … … 59 59 chmod 755 /usr/lib/cgi-bin/ip.cgi 60 60 61 }}} This will run a script with Apache 2 which sets up the server and web page and displays the users IP address on the Server 1 node. When prompted "Do you want to continue [Y/n]?" select `Y` Once the script is done running, the server is now set up and we can generate traffic! You can check this by typing `w3m http://localhost/cgi-bin/ip.cgi` which should display your IP address.61 }}} This will run a script with Apache 2 which sets up the server and web page and displays the users IP address on the Server 1 node. When prompted "Do you want to continue [Y/n]?" select `Y` Once the script is done running, the server is now set up and we can generate traffic! You can check this by typing `w3m http://localhost/cgi-bin/ip.cgi` which should display your IP address. 62 62 [[Image(apache2setup.png)]] 63 63