<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ihitc.net/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jeffkuhn</id>
	<title>ITCwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ihitc.net/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jeffkuhn"/>
	<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/w/Special:Contributions/Jeffkuhn"/>
	<updated>2026-04-08T15:24:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.5</generator>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2831&amp;diff=3470</id>
		<title>Franske CNT-2831</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2831&amp;diff=3470"/>
		<updated>2010-11-02T23:46:01Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the homepage for the CNT-2831: Implementing Cisco IOS Network Security (CCNA Security) classes taught by Dr. Ben Franske.&lt;br /&gt;
&lt;br /&gt;
== General Course Information ==&lt;br /&gt;
* [[Franske CNT-2831 Syllabus|Course Syllabus]]&lt;br /&gt;
* [[Franske CNT-2831 FA10 Schedule|Fall 2010 Course Schedule]]&lt;br /&gt;
* [[Franske CNT-2831 Labs|Lab Assignments]]&lt;br /&gt;
* [[Franske CNT Service Project Assignment|Service Project Assignment]]&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Cryptography ===&lt;br /&gt;
* Security Now Episode 35: Cryptographic Hashes [http://media.grc.com/sn/sn-035.mp3 Audio], [http://www.grc.com/sn/sn-035.htm Text]&lt;br /&gt;
* Security Now Episode 185: Cryptographic HMACs [http://media.grc.com/sn/sn-185.mp3 Audio], [http://www.grc.com/sn/sn-185.htm Text] (It isnt about HMACS Ben)&lt;br /&gt;
* Security Now Episode 31: Symmetric Stream Ciphers [http://media.grc.com/sn/sn-031.mp3 Audio], [http://www.grc.com/sn/sn-031.htm Text]&lt;br /&gt;
* Security Now Episode 33: Symmetric Stream Ciphers [http://media.grc.com/sn/sn-033.mp3 Audio], [http://www.grc.com/sn/sn-033.htm Text]&lt;br /&gt;
* Security Now Episode 34: Public Key Cryptography [http://media.grc.com/sn/sn-034.mp3 Audio], [http://www.grc.com/sn/sn-034.htm Text]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1939</id>
		<title>Nat Masquerading and Firewall</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1939"/>
		<updated>2010-05-10T10:39:23Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Nat Masquerading and Firewall==&lt;br /&gt;
This page will guide you through creating a simple firewall that includes NAT.&lt;br /&gt;
*Prep work - Creating or viewing your interfaces&lt;br /&gt;
     sudo nano /etc/network/interfaces &lt;br /&gt;
Edit this file to fit your need for this guide eth0 will be outside or private interface of the network and eth1 will be the inside or private part of your network.&lt;br /&gt;
&lt;br /&gt;
[[File:interfaces.png]]&lt;br /&gt;
&lt;br /&gt;
Now restart the network&lt;br /&gt;
     sudo /etc/init.d/networking restart&lt;br /&gt;
&lt;br /&gt;
==Setting up NAT Masquerading==&lt;br /&gt;
This is pretty easy to setup as it is only three steps. First part is to start the NAT.&lt;br /&gt;
     modprobe iptable_nat&lt;br /&gt;
Second part is to tell your iptables to masquerade things going out of your public interface&lt;br /&gt;
     iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE&lt;br /&gt;
Third part is to allow packet forwarding&lt;br /&gt;
     nano /etc/sysctl.conf&lt;br /&gt;
Find #net.ipv4.ip_forward=1, uncomment this line and make sure it is equal to 1. &lt;br /&gt;
You now have Nat configured and should be working if your firewall chains are defaulted to accept all packets.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Firewall Rules==&lt;br /&gt;
This section will show you examples for rule statements and can be cloned for all ports and protocols.&lt;br /&gt;
*Allow established connections&lt;br /&gt;
     iptables -A OUTPUT -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A INPUT -j ACCEPT -m state --state ESTABLISHED,RELATED -i eth0 -p tcp&lt;br /&gt;
     iptables -A FORWARD -t filter -o eth0 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A FORWARD -t filter -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Incoming Connections&lt;br /&gt;
This for SSH you can change the --dport to whatever port you need for other protocols for example 80 for http. Check if your protocol is udp and if so change tcp to udp.&lt;br /&gt;
     iptables -A INPUT -p tcp -i eth0 --dport 22 -m state --state NEW -j ACCEPT&lt;br /&gt;
or like this for DNS requests&lt;br /&gt;
     iptables -A INPUT -p udp -i eth0 --sport 53 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Outgoing Connections&lt;br /&gt;
This for HTTP and HTTPS and is for multiple ports so all tcp can be added to this and create another for udp and put all your udp ports on that one.&lt;br /&gt;
     iptables -A OUTPUT -j ACCEPT -m state --state NEW,ESTABLISHED,RELATED -o eth0 -p tcp -m multiport --dports 80,443&lt;br /&gt;
or single entries like this for DNS:&lt;br /&gt;
     iptables -A OUTPUT -p udp -o eth0 --dport 53 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Port Forwarding&lt;br /&gt;
This is the fun part and the easily misconfigured so look closely and be careful. First part is tcp or udp. Then look at the -d for your outside ip address. Then -dport is the destination port, in this case http port 80. Then it jumps to DNAT and you then point it to your web server and can change the port number at the : if you changed your port number for the web server.&lt;br /&gt;
     iptables -t nat -A PREROUTING -p tcp -i eth0 -d 172.16.0.30 --dport 80 -j DNAT --to 192.168.0.3:80&lt;br /&gt;
Then you will need to get this accepted through the forward chain&lt;br /&gt;
     ip tables -A FORWARD -p tcp -i eth0 -o eth1 -d 192.168.0.3 --dport 80 -m state --state NEW -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*The Reboot (Dont Reboot!)&lt;br /&gt;
Your iptables commands will not reapply after a reboot or shutdown. You may want to create a script and apply it to the rc.local to start up or take the easy route and do it in webmin. In webmin after you enter your commands you can hit the revert button and all your rules should pop up in the chains. Then you can hit the activate at boot option and apply the configuration. This will add a line to your eth0 interface so when it comes up it will load the config it has saved in its file.&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2311&amp;diff=1938</id>
		<title>Franske CNT-2311</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2311&amp;diff=1938"/>
		<updated>2010-05-10T10:15:36Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the homepage for the CNT-2311 classes taught by Dr. Ben Franske.&lt;br /&gt;
&lt;br /&gt;
== General Course Information ==&lt;br /&gt;
* [http://spreadsheets.google.com/viewform?formkey=dFZwb1VFOXh2bTJfS0FuRV92ZnR6eHc6MA Student Sign-In for 1/19/2010]&lt;br /&gt;
* [[Franske CNT-2311 SP10 Syllabus|Spring 2010 Course Syllabus]]&lt;br /&gt;
* [[Franske CNT-2311 SP10 Schedule|Spring 2010 Course Schedule]]&lt;br /&gt;
* [[Franske CNT-2311 SP10 Commands|Spring 2010 Commands by Session]]&lt;br /&gt;
* [[Franske CNT-2311 Labs|Lab List]]&lt;br /&gt;
* [[Franske CNT-2311 Lab Point Sheet|Lab/Homework Point Sheet]]&lt;br /&gt;
* [[Franske CNT Service Project Assignment|Service Project Assignment]]&lt;br /&gt;
* [[Franske Lab Report Format|Lab Report Format]]&lt;br /&gt;
* [[Franske CNT-2311 Network Simulation Project|Network Simulation Project]]&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
* [[Dual Booting]]&lt;br /&gt;
&lt;br /&gt;
* [http://cnt.lextron.net/Grub2 GRUB 2 Configuration]&lt;br /&gt;
&lt;br /&gt;
* [[Linux VLAN Trunking]]&lt;br /&gt;
&lt;br /&gt;
* [[Installing Webmin]]&lt;br /&gt;
&lt;br /&gt;
*[[Nat Masquerading and Firewall]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Software ===&lt;br /&gt;
* [http://www.virtualbox.org Virtualbox]&lt;br /&gt;
=== Major Linux Distributions ===&lt;br /&gt;
* [http://www.debian.org Debian]&lt;br /&gt;
** [http://www.ubuntu.com Ubuntu]&lt;br /&gt;
* [http://www.redhat.com Redhat Enterprise Linux (RHEL)]&lt;br /&gt;
** [http://centos.org CentOS]&lt;br /&gt;
** [http://fedoraproject.org Fedora]&lt;br /&gt;
* [http://www.gentoo.org Gentoo]&lt;br /&gt;
* [http://www.opensuse.org OpenSUSE (Novell)]&lt;br /&gt;
=== Online Linux Tutuorials ===&lt;br /&gt;
* [http://www.linux.org/lessons/beginner Beginning Linux from Linux.org]\&lt;br /&gt;
* [https://help.ubuntu.com/community/PostfixBasicSetupHowto Postfix Basic Setup]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1937</id>
		<title>Nat Masquerading and Firewall</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1937"/>
		<updated>2010-05-10T10:13:19Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Nat Masquerading and Firewall==&lt;br /&gt;
This page will guide you through creating a simple firewall that includes NAT.&lt;br /&gt;
*Prep work - Creating or viewing your interfaces&lt;br /&gt;
     sudo nano /etc/network/interfaces &lt;br /&gt;
Edit this file to fit your need for this guide eth0 will be outside or private interface of the network and eth1 will be the inside or private part of your network.&lt;br /&gt;
&lt;br /&gt;
[[File:interfaces.png]]&lt;br /&gt;
&lt;br /&gt;
Now restart the network&lt;br /&gt;
     sudo /etc/init.d/networking restart&lt;br /&gt;
&lt;br /&gt;
==Setting up NAT Masquerading==&lt;br /&gt;
This is pretty easy to setup as it is only three steps. First part is to start the NAT.&lt;br /&gt;
     modprobe iptable_nat&lt;br /&gt;
Second part is to tell your iptables to masquerade things going out of your public interface&lt;br /&gt;
     iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE&lt;br /&gt;
Third part is to allow packet forwarding&lt;br /&gt;
     nano /etc/sysctl.conf&lt;br /&gt;
Find #net.ipv4.ip_forward=1, uncomment this line and make sure it is equal to 1. &lt;br /&gt;
You now have Nat configured and should be working if your firewall chains are defaulted to accept all packets.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Firewall Rules==&lt;br /&gt;
This section will show you examples for rule statements and can be cloned for all ports and protocols.&lt;br /&gt;
*Allow established connections&lt;br /&gt;
     iptables -A OUTPUT -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A INPUT -j ACCEPT -m state --state ESTABLISHED,RELATED -i eth0 -p tcp&lt;br /&gt;
     iptables -A FORWARD -t filter -o eth0 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A FORWARD -t filter -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Incoming Connections&lt;br /&gt;
This for SSH you can change the --dport to whatever port you need for other protocols for example 80 for http. Check if your protocol is udp and if so change tcp to udp.&lt;br /&gt;
     iptables -A INPUT -p tcp -i eth0 --dport 22 -m state --state NEW -j ACCEPT&lt;br /&gt;
or like this for DNS requests&lt;br /&gt;
     iptables -A INPUT -p udp -i eth0 --sport 53 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Outgoing Connections&lt;br /&gt;
This for HTTP and HTTPS and is for multiple ports so all tcp can be added to this and create another for udp and put all your udp ports on that one.&lt;br /&gt;
     iptables -A OUTPUT -j ACCEPT -m state --state NEW,ESTABLISHED,RELATED -o eth0 -p tcp -m multiport --dports 80,443&lt;br /&gt;
or single entries like this for DNS:&lt;br /&gt;
     iptables -A OUTPUT -p udp -o eth0 --dport 53 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Port Forwarding&lt;br /&gt;
This is the fun part and the easily misconfigured so look closely and be careful. First part is tcp or udp. Then look at the -d for your outside ip address. Then -dport is the destination port, in this case http port 80. Then it jumps to DNAT and you then point it to your web server and can change the port number at the : if you changed your port number for the web server.&lt;br /&gt;
     iptables -t nat -A PREROUTING -p tcp -i eth0 -d 172.16.0.30 --dport 80 -j DNAT --to 192.168.0.3:80&lt;br /&gt;
Then you will need to get this accepted through the forward chain&lt;br /&gt;
     ip tables -A FORWARD -p tcp -i eth0 -o eth1 -d 192.168.0.3 --dport 80 -m state --state NEW -j ACCEPT&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1936</id>
		<title>Nat Masquerading and Firewall</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1936"/>
		<updated>2010-05-10T09:59:09Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Nat Masquerading and Firewall==&lt;br /&gt;
This page will guide you through creating a simple firewall that includes NAT.&lt;br /&gt;
*Prep work - Creating or viewing your interfaces&lt;br /&gt;
     sudo nano /etc/network/interfaces &lt;br /&gt;
Edit this file to fit your need for this guide eth0 will be outside or private interface of the network and eth1 will be the inside or private part of your network.&lt;br /&gt;
&lt;br /&gt;
[[File:interfaces.png]]&lt;br /&gt;
&lt;br /&gt;
Now restart the network&lt;br /&gt;
     sudo /etc/init.d/networking restart&lt;br /&gt;
&lt;br /&gt;
==Setting up NAT Masquerading==&lt;br /&gt;
This is pretty easy to setup as it is only three steps. First part is to start the NAT.&lt;br /&gt;
     modprobe iptable_nat&lt;br /&gt;
Second part is to tell your iptables to masquerade things going out of your public interface&lt;br /&gt;
     iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE&lt;br /&gt;
Third part is to allow packet forwarding&lt;br /&gt;
     nano /etc/sysctl.conf&lt;br /&gt;
Find #net.ipv4.ip_forward=1, uncomment this line and make sure it is equal to 1. &lt;br /&gt;
You now have Nat configured and should be working if your firewall chains are defaulted to accept all packets.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Firewall Rules==&lt;br /&gt;
This section will show you examples for rule statements and can be cloned for all ports and protocols.&lt;br /&gt;
*Allow established connections&lt;br /&gt;
     iptables -A OUTPUT -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A INPUT -j ACCEPT -m state --state ESTABLISHED,RELATED -i eth0 -p tcp&lt;br /&gt;
     iptables -A FORWARD -t filter -o eth0 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
     iptables -A FORWARD -t filter -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Incoming Connections&lt;br /&gt;
This for SSH you can change the --dport to whatever port you need for other protocols for example 80 for http. Check if your protocol is udp and if so change tcp to udp.&lt;br /&gt;
     iptables -A INPUT -p tcp -i eth0 --dport 22 -m state --state NEW -j ACCEPT&lt;br /&gt;
or like this for DNS requests&lt;br /&gt;
     iptables -A INPUT -p udp -i eth0 --sport 53 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
*Outgoing Connections&lt;br /&gt;
This for HTTP and HTTPS and is for multiple ports so all tcp can be added to this and create another for udp and put all your udp ports on that one.&lt;br /&gt;
     iptables -A OUTPUT -j ACCEPT -m state --state NEW,ESTABLISHED,RELATED -o eth0 -p tcp -m multiport --dports 80,443&lt;br /&gt;
or single entries like this for DNS:&lt;br /&gt;
     iptables -A OUTPUT -p udp -o eth0 --dport 53 -j ACCEPT&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1935</id>
		<title>Nat Masquerading and Firewall</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Nat_Masquerading_and_Firewall&amp;diff=1935"/>
		<updated>2010-05-10T09:39:34Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: Created page with &amp;#039;==Nat Masquerading and Firewall== This page will guide you through creating a simple firewall that includes NAT. *Prep work - Creating or viewing your interfaces      sudo nano /…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Nat Masquerading and Firewall==&lt;br /&gt;
This page will guide you through creating a simple firewall that includes NAT.&lt;br /&gt;
*Prep work - Creating or viewing your interfaces&lt;br /&gt;
     sudo nano /etc/network/interfaces &lt;br /&gt;
Edit this file to fit your need for this guide eth0 will be outside or private interface of the network and eth1 will be the inside or private part of your network.&lt;br /&gt;
&lt;br /&gt;
[[File:interfaces.png]]&lt;br /&gt;
&lt;br /&gt;
Now restart the network&lt;br /&gt;
     sudo /etc/init.d/networking restart&lt;br /&gt;
&lt;br /&gt;
==Setting up NAT Masquerading==&lt;br /&gt;
This is pretty easy to setup as it is only three steps. First part is to start the NAT.&lt;br /&gt;
     modprobe iptable_nat&lt;br /&gt;
Second part is to tell your iptables to masquerade things going out of your public interface&lt;br /&gt;
     iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE&lt;br /&gt;
Third part is to allow packet forwarding&lt;br /&gt;
     nano /etc/sysctl.conf&lt;br /&gt;
Find #net.ipv4.ip_forward=1, uncomment this line and make sure it is equal to 1. &lt;br /&gt;
You now have Nat configured and should be working if your firewall chains are defaulted to accept all packets.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Firewall Rules==&lt;br /&gt;
This section will show you examples for rule statements and can be cloned for all ports and protocols.&lt;br /&gt;
*Allow established connections&lt;br /&gt;
     iptables -A OUTPUT -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
*Incoming Connections&lt;br /&gt;
This for SSH you can change the --dport to whatever port you need for other protocols for example 80 for http. Check if your protocol is udp and if so change tcp to udp.&lt;br /&gt;
     iptables -A INPUT -p tcp -i eth0 --dport 22 -m state --state NEW -j ACCEPT&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Interfaces.png&amp;diff=1934</id>
		<title>File:Interfaces.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Interfaces.png&amp;diff=1934"/>
		<updated>2010-05-10T09:09:53Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2540&amp;diff=1486</id>
		<title>Franske CNT-2540</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2540&amp;diff=1486"/>
		<updated>2010-04-27T17:08:08Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the homepage for the CNT-2540: Accessing the WAN classes taught by Dr. Ben Franske.&lt;br /&gt;
&lt;br /&gt;
== General Course Information ==&lt;br /&gt;
* [[Franske CNT-2540 SP10 Syllabus|Spring 2010 Course Syllabus]]&lt;br /&gt;
* [[Franske CNT-2540 SP10 Schedule|Spring 2010 Course Schedule]]&lt;br /&gt;
* [[Franske CNT-2540 Lab Point Sheet|Lab Point Sheet]]&lt;br /&gt;
* [[Franske CNT Service Project Assignment|Service Project Assignment]]&lt;br /&gt;
* [[Franske Lab Report Format|Lab Report Format]]&lt;br /&gt;
* Assessments and online curriculum available at [http://cisco.netacad.net http://cisco.netacad.net]&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
*[[Frame relay multipoint lab]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Subnetting ===&lt;br /&gt;
* [http://www.learntosubnet.com LearnToSubnet.com] (Requires using Internet Explorer)&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1485</id>
		<title>Frame relay multipoint lab</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1485"/>
		<updated>2010-04-27T17:06:56Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Frame Relay Multipoint Lab==&lt;br /&gt;
[[File:diagram.jpeg|middle]]&lt;br /&gt;
==Goals of this lab==&lt;br /&gt;
*To create a network using Multipoint Frame Relay&lt;br /&gt;
*Achieve Frame Relay using the Adtran Atlas 550&lt;br /&gt;
*Configure OSPF for multipoint routing&lt;br /&gt;
==Phase One==&lt;br /&gt;
Connect the network according to the diagram. You will need to pay attention to which ports you use on the Adtran as this is be your DLCI numbers. For this lab we will be using Port 1 of the Adtran for R1, Port 2 for R2, and Port 3 for R3. Below is how you determine what is going on with the Adtran.&lt;br /&gt;
&lt;br /&gt;
[[File:portnum.JPG|middle]]&lt;br /&gt;
[[File:table.JPG|middle]]&lt;br /&gt;
&lt;br /&gt;
==Phase Two==&lt;br /&gt;
You will want to do the basics on Routers like:&lt;br /&gt;
*Hostname&lt;br /&gt;
*Address your Fast Ethernet ports so they can recieve some mail.&lt;br /&gt;
*No ip domain-lookup&lt;br /&gt;
*Some Banner action&lt;br /&gt;
*Password the crap out of your router so demons dont get you while you sleep at night!&lt;br /&gt;
==Phase Three==&lt;br /&gt;
This phase will be all about how to setup your frame relay on your routers. We will be starting on R1 so please be there. You will start off by going into global config mode.&lt;br /&gt;
*interface s0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 multipoint&lt;br /&gt;
*ip address 192.168.0.1 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 103&lt;br /&gt;
*exit (out of the dlci command interface thingy)&lt;br /&gt;
*frame-relay interface-dlci 102&lt;br /&gt;
*exit&lt;br /&gt;
*ip ospf network point-to-multipoint (So OSPF will work in this enviroment)&lt;br /&gt;
Now on R2 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.2 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 201&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Now on R3 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.3 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 301&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Your network should be able to ping each other at this point in time.&lt;br /&gt;
==Phase Five==&lt;br /&gt;
Time for some OSPF action. We already set up the OSPF point-to-multipoint in the sub-interfaces. Now you will set up OSPF the same way you always to do but now you will enter the following command.&lt;br /&gt;
*(R2 in ospf)neighbor 10.2.2.0 cost 100 (This is saying who your neighbors are)&lt;br /&gt;
*(R3 in ospf)neighbor 10.3.3.0 cost 100&lt;br /&gt;
==Troubleshooting and Documentation==&lt;br /&gt;
Your lab is now complete and you should be able to ping everything from everything. Your routing tables should have the 10.2.2.0 and 10.3.3.0 networks. Once you are done you may clean up and go have your self a very pleasant day and remember cisco is very very sneakie. :)&lt;br /&gt;
AND DONT FORGET TO REFLECT!&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1484</id>
		<title>Frame relay multipoint lab</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1484"/>
		<updated>2010-04-27T17:05:35Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Frame Relay Multipoint Lab==&lt;br /&gt;
[[File:diagram.jpeg|middle]]&lt;br /&gt;
==Goals of this lab==&lt;br /&gt;
*To create a network using Multipoint Frame Relay&lt;br /&gt;
*Achieve Frame Relay using the Adtran Atlas 550&lt;br /&gt;
*Configure OSPF for multipoint routing&lt;br /&gt;
==Phase One==&lt;br /&gt;
Connect the network according to the diagram. You will need to pay attention to which ports you use on the Adtran as this is be your DLCI numbers. For this lab we will be using Port 1 of the Adtran for R1, Port 2 for R2, and Port 3 for R3. Below is how you determine what is going on with the Adtran.&lt;br /&gt;
&lt;br /&gt;
[[File:portnum.JPG|middle]]&lt;br /&gt;
[[File:table.JPG|middle]]&lt;br /&gt;
&lt;br /&gt;
==Phase Two==&lt;br /&gt;
You will want to do the basics on Routers like:&lt;br /&gt;
*Hostname&lt;br /&gt;
*Address your Fast Ethernet ports so they can recieve some mail.&lt;br /&gt;
*No ip domain-lookup&lt;br /&gt;
*Some Banner action&lt;br /&gt;
*Password the crap out of your router so demons dont get you while you sleep at night!&lt;br /&gt;
==Phase Three==&lt;br /&gt;
This phase will be all about how to setup your frame relay on your routers. We will be starting on R1 so please be there. You will start off by going into global config mode.&lt;br /&gt;
*interface s0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 multipoint&lt;br /&gt;
*ip address 192.168.0.1 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 103&lt;br /&gt;
*exit (out of the dlci command interface thingy)&lt;br /&gt;
*frame-relay interface-dlci 102&lt;br /&gt;
*exit&lt;br /&gt;
*ip ospf network point-to-multipoint (So OSPF will work in this enviroment)&lt;br /&gt;
Now on R2 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.2 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 201&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Now on R3 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.3 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 301&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Your network should be able to ping each other at this point in time.&lt;br /&gt;
==Phase Five==&lt;br /&gt;
Time for some OSPF action. We already set up the OSPF point-to-multipoint in the sub-interfaces. Now you will set up OSPF the same way you always to do but now you will enter the following command.&lt;br /&gt;
*(R2 in ospf)neighbor 10.2.2.0 cost 100 (This is saying who your neighbors are)&lt;br /&gt;
*(R3 in ospf)neighbor 10.3.3.0 cost 100&lt;br /&gt;
==Troubleshooting and Documentation==&lt;br /&gt;
Your lab is now complete and you should be able to ping everything from everything. Your routing tables should have the 10.2.2.0 and 10.3.3.0 networks. Once you are done you may clean up and go have your self a very pleasant day and remember cisco is very very sneakie. :)&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1483</id>
		<title>Frame relay multipoint lab</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1483"/>
		<updated>2010-04-27T16:57:02Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: /* Phase One */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Frame Relay Multipoint Lab==&lt;br /&gt;
[[File:diagram.jpeg|middle]]&lt;br /&gt;
==Goals of this lab==&lt;br /&gt;
*To create a network using Multipoint Frame Relay&lt;br /&gt;
*Achieve Frame Relay using the Adtran Atlas 550&lt;br /&gt;
*Configure OSPF for multipoint routing&lt;br /&gt;
==Phase One==&lt;br /&gt;
Connect the network according to the diagram. You will need to pay attention to which ports you use on the Adtran as this is be your DLCI numbers. For this lab we will be using Port 1 of the Adtran for R1, Port 2 for R2, and Port 3 for R3. Below is how you determine what is going on with the Adtran.&lt;br /&gt;
&lt;br /&gt;
[[File:portnum.JPG|middle]]&lt;br /&gt;
[[File:table.JPG|middle]]&lt;br /&gt;
&lt;br /&gt;
==Phase Two==&lt;br /&gt;
You will want to do the basics on Routers like:&lt;br /&gt;
*Hostname&lt;br /&gt;
*Address your Fast Ethernet ports so they can recieve some mail.&lt;br /&gt;
*No ip domain-lookup&lt;br /&gt;
*Some Banner action&lt;br /&gt;
*Password the crap out of your router so demons dont get you while you sleep at night!&lt;br /&gt;
==Phase Three==&lt;br /&gt;
This phase will be all about how to setup your frame relay on your routers. We will be starting on R1 so please be there. You will start off by going into global config mode.&lt;br /&gt;
*interface s0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 multipoint&lt;br /&gt;
*ip address 192.168.0.1 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 103&lt;br /&gt;
*exit (out of the dlci command interface thingy)&lt;br /&gt;
*frame-relay interface-dlci 102&lt;br /&gt;
*exit&lt;br /&gt;
*ip ospf network point-to-multipoint (So OSPF will work in this enviroment)&lt;br /&gt;
Now on R2 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.2 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 201&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Now on R3 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.3 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 301&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Your network should be able to ping each other at this point in time.&lt;br /&gt;
==Phase Five==&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1482</id>
		<title>Frame relay multipoint lab</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1482"/>
		<updated>2010-04-27T16:56:15Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Frame Relay Multipoint Lab==&lt;br /&gt;
[[File:diagram.jpeg|middle]]&lt;br /&gt;
==Goals of this lab==&lt;br /&gt;
*To create a network using Multipoint Frame Relay&lt;br /&gt;
*Achieve Frame Relay using the Adtran Atlas 550&lt;br /&gt;
*Configure OSPF for multipoint routing&lt;br /&gt;
==Phase One==&lt;br /&gt;
Connect the network according to the diagram. You will need to pay attention to which ports you use on the Adtran as this is be your DLCI numbers. For this lab we will be using Port 1 of the Adtran for R1, Port 2 for R2, and Port 3 for R3. Below is how you determine what is going on with the Adtran.&lt;br /&gt;
[[File:portnum.JPG|middle]]&lt;br /&gt;
[[File:table.JPG|middle]]&lt;br /&gt;
==Phase Two==&lt;br /&gt;
You will want to do the basics on Routers like:&lt;br /&gt;
*Hostname&lt;br /&gt;
*Address your Fast Ethernet ports so they can recieve some mail.&lt;br /&gt;
*No ip domain-lookup&lt;br /&gt;
*Some Banner action&lt;br /&gt;
*Password the crap out of your router so demons dont get you while you sleep at night!&lt;br /&gt;
==Phase Three==&lt;br /&gt;
This phase will be all about how to setup your frame relay on your routers. We will be starting on R1 so please be there. You will start off by going into global config mode.&lt;br /&gt;
*interface s0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 multipoint&lt;br /&gt;
*ip address 192.168.0.1 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 103&lt;br /&gt;
*exit (out of the dlci command interface thingy)&lt;br /&gt;
*frame-relay interface-dlci 102&lt;br /&gt;
*exit&lt;br /&gt;
*ip ospf network point-to-multipoint (So OSPF will work in this enviroment)&lt;br /&gt;
Now on R2 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.2 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 201&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Now on R3 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.3 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 301&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Your network should be able to ping each other at this point in time.&lt;br /&gt;
==Phase Five==&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1481</id>
		<title>Frame relay multipoint lab</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Frame_relay_multipoint_lab&amp;diff=1481"/>
		<updated>2010-04-27T16:55:27Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: Created page with &amp;#039;==Frame Relay Multipoint Lab== middle ==Goals of this lab== *To create a network using Multipoint Frame Relay *Achieve Frame Relay using the Adtran Atlas 55…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Frame Relay Multipoint Lab==&lt;br /&gt;
[[File:diagram.jpeg|middle]]&lt;br /&gt;
==Goals of this lab==&lt;br /&gt;
*To create a network using Multipoint Frame Relay&lt;br /&gt;
*Achieve Frame Relay using the Adtran Atlas 550&lt;br /&gt;
*Configure OSPF for multipoint routing&lt;br /&gt;
==Phase One==&lt;br /&gt;
Connect the network according to the diagram. You will need to pay attention to which ports you use on the Adtran as this is be your DLCI numbers. For this lab we will be using Port 1 of the Adtran for R1, Port 2 for R2, and Port 3 for R3. Below is how you determine what is going on with the Adtran.&lt;br /&gt;
[[File:portnum.jpg|middle]]&lt;br /&gt;
[[File:table.jpg|middle]]&lt;br /&gt;
==Phase Two==&lt;br /&gt;
You will want to do the basics on Routers like:&lt;br /&gt;
*Hostname&lt;br /&gt;
*Address your Fast Ethernet ports so they can recieve some mail.&lt;br /&gt;
*No ip domain-lookup&lt;br /&gt;
*Some Banner action&lt;br /&gt;
*Password the crap out of your router so demons dont get you while you sleep at night!&lt;br /&gt;
==Phase Three==&lt;br /&gt;
This phase will be all about how to setup your frame relay on your routers. We will be starting on R1 so please be there. You will start off by going into global config mode.&lt;br /&gt;
*interface s0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 multipoint&lt;br /&gt;
*ip address 192.168.0.1 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 103&lt;br /&gt;
*exit (out of the dlci command interface thingy)&lt;br /&gt;
*frame-relay interface-dlci 102&lt;br /&gt;
*exit&lt;br /&gt;
*ip ospf network point-to-multipoint (So OSPF will work in this enviroment)&lt;br /&gt;
Now on R2 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.2 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 201&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Now on R3 in global configuration mode&lt;br /&gt;
*interface serial0/0/0&lt;br /&gt;
*encapsulation frame-relay&lt;br /&gt;
*interface s0/0/0.1 point-to-point&lt;br /&gt;
*ip address 192.168.0.3 255.255.255.0&lt;br /&gt;
*frame-relay interface-dlci 301&lt;br /&gt;
*ip ospf network point-to-multipoint&lt;br /&gt;
Your network should be able to ping each other at this point in time.&lt;br /&gt;
==Phase Five==&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2530&amp;diff=936</id>
		<title>Franske CNT-2530</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Franske_CNT-2530&amp;diff=936"/>
		<updated>2010-02-24T16:42:40Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: /* Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the homepage for the CNT-2530: Switching Fundamentals and Intermediate Routing classes taught by Dr. Ben Franske.&lt;br /&gt;
&lt;br /&gt;
== General Course Information ==&lt;br /&gt;
* [[Franske CNT-2530 SP10 Syllabus|Spring 2010 Course Syllabus]]&lt;br /&gt;
* [[Franske CNT-2530 SP10 Schedule|Spring 2010 Course Schedule]]&lt;br /&gt;
* [[Franske CNT-2530 Labs|Lab List]]&lt;br /&gt;
* [[Franske CNT-2530 Lab Point Sheet|Lab/Homework Point Sheet]]&lt;br /&gt;
* [[Franske CNT-2530 Homework|Homework Assignments]]&lt;br /&gt;
* [[Franske CNT Service Project Assignment|Service Project Assignment]]&lt;br /&gt;
* [[Franske Lab Report Format|Lab Report Format]]&lt;br /&gt;
* Assessments and online curriculum available at [http://cisco.netacad.net http://cisco.netacad.net]&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
*[[Cacti]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Subnetting ===&lt;br /&gt;
* [http://www.learntosubnet.com LearnToSubnet.com] (Requires using Internet Explorer)&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=935</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=935"/>
		<updated>2010-02-24T16:13:00Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Cactimac.JPG|middle]]&lt;br /&gt;
== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to all together usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. Cacti can be found at [http://www.cacti.net Cacti.net] and also more information provided.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
*Step 5. On the switch you will have to enter these basic commands. You can add more like an access list but this is just the basics. First you will need to configure the Vlan you will be operating on. Then you will need to be in configure terminal. Enter logging trap debug. Then enter logging (ip address of cacti). Then enter snmp-server community (Community Name) ro. Now your switch should be set.&lt;br /&gt;
[[File:switchcmd.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;br /&gt;
*To change the settings for cacti click the settings link on the left side menu of the console tab. You will need to change the SNMP version you are using on the devices. The SNMP community is the group you assigned the SNMP logging to on the device.&lt;br /&gt;
[[File:settings.JPG]]&lt;br /&gt;
*To create the graphs you will need to go New Graphs on the left menu on the console tab. This is pretty much up to you and how you want it to show and look for.&lt;br /&gt;
[[File:creategraph.JPG]]&lt;br /&gt;
*Here is a picture of our attempt to view traffic on the room switch, but the laptop we used was a school one and kept crashing so thats the reason for low activity spots.&lt;br /&gt;
[[File:Graph1.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=934</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=934"/>
		<updated>2010-02-24T16:10:58Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Cactimac.JPG|middle]]&lt;br /&gt;
== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to all together usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. Cacti can be found at [http://www.cacti.net Cacti.net] and also more information provided.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
*Step 5. On the switch you will have to enter these basic commands. You can add more like an access list but this is just the basics. First you will need to configure the Vlan you will be operating on. Then you will need to be in configure terminal. Enter logging trap debug. Then enter logging (ip address of cacti). Then enter snmp-server community (Community Name) ro. Now your switch should be set.&lt;br /&gt;
[[File:switchcmd.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;br /&gt;
*To change the settings for cacti click the settings link on the left side menu of the console tab. You will need to change the SNMP version you are using on the devices. The SNMP community is the group you assigned the SNMP logging to on the device.&lt;br /&gt;
[[File:settings.JPG]]&lt;br /&gt;
*To create the graphs you will need to go New Graphs on the left menu on the console tab. This is pretty much up to you and how you want it to show and look for.&lt;br /&gt;
[[File:creategraph.JPG]]&lt;br /&gt;
[[File:Graph1.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Graph1.JPG&amp;diff=933</id>
		<title>File:Graph1.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Graph1.JPG&amp;diff=933"/>
		<updated>2010-02-24T16:09:46Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=932</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=932"/>
		<updated>2010-02-24T15:25:12Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Cactimac.JPG|middle]]&lt;br /&gt;
== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to all together usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. Cacti can be found at [http://www.cacti.net Cacti.net] and also more information provided.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
*Step 5. On the switch you will have to enter these basic commands. You can add more like an access list but this is just the basics. First you will need to configure the Vlan you will be operating on. Then you will need to be in configure terminal. Enter logging trap debug. Then enter logging (ip address of cacti). Then enter snmp-server community (Community Name) ro. Now your switch should be set.&lt;br /&gt;
[[File:switchcmd.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;br /&gt;
*To change the settings for cacti click the settings link on the left side menu of the console tab. You will need to change the SNMP version you are using on the devices. The SNMP community is the group you assigned the SNMP logging to on the device.&lt;br /&gt;
[[File:settings.JPG]]&lt;br /&gt;
*To create the graphs you will need to go New Graphs on the left menu on the console tab. This is pretty much up to you and how you want it to show and look for.&lt;br /&gt;
[[File:creategraph.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=931</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=931"/>
		<updated>2010-02-24T15:20:05Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Cactimac.JPG|middle]]&lt;br /&gt;
== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
*Step 5. On the switch you will have to enter these basic commands. You can add more like an access list but this is just the basics. First you will need to configure the Vlan you will be operating on. Then you will need to be in configure terminal. Enter logging trap debug. Then enter logging (ip address of cacti). Then enter snmp-server community (Community Name) ro. Now your switch should be set.&lt;br /&gt;
[[File:switchcmd.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;br /&gt;
*To change the settings for cacti click the settings link on the left side menu of the console tab. You will need to change the SNMP version you are using on the devices. The SNMP community is the group you assigned the SNMP logging to on the device.&lt;br /&gt;
[[File:settings.JPG]]&lt;br /&gt;
*To create the graphs you will need to go New Graphs on the left menu on the console tab. This is pretty much up to you and how you want it to show and look for.&lt;br /&gt;
[[File:creategraph.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Cactimac.JPG&amp;diff=930</id>
		<title>File:Cactimac.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Cactimac.JPG&amp;diff=930"/>
		<updated>2010-02-24T15:19:39Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Switchcmd.JPG&amp;diff=929</id>
		<title>File:Switchcmd.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Switchcmd.JPG&amp;diff=929"/>
		<updated>2010-02-24T15:19:26Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=928</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=928"/>
		<updated>2010-02-24T15:17:57Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Cactimac.bmp|middle]]&lt;br /&gt;
== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
*Step 5. On the switch you will have to enter these basic commands. You can add more like an access list but this is just the basics. First you will need to configure the Vlan you will be operating on. Then you will need to be in configure terminal. Enter logging trap debug. Then enter logging (ip address of cacti). Then enter snmp-server community (Community Name) ro. Now your switch should be set.&lt;br /&gt;
[[File:switchcmd.bmp]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;br /&gt;
*To change the settings for cacti click the settings link on the left side menu of the console tab. You will need to change the SNMP version you are using on the devices. The SNMP community is the group you assigned the SNMP logging to on the device.&lt;br /&gt;
[[File:settings.JPG]]&lt;br /&gt;
*To create the graphs you will need to go New Graphs on the left menu on the console tab. This is pretty much up to you and how you want it to show and look for.&lt;br /&gt;
[[File:creategraph.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=927</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=927"/>
		<updated>2010-02-24T15:01:03Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
*To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
*Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
*To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=926</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=926"/>
		<updated>2010-02-24T15:00:25Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.JPG]]&lt;br /&gt;
Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.JPG]]&lt;br /&gt;
To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=925</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=925"/>
		<updated>2010-02-24T14:59:50Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;br /&gt;
== Usage ==&lt;br /&gt;
To use cacti you will first need to know where it is on your network. To get the cacti server&#039;s IP address in the Linux server type ifconfig.&lt;br /&gt;
[[File:ifconfig.jpg]]&lt;br /&gt;
Now you will be prompted to login. The default login is admin/admin.&lt;br /&gt;
[[File:login2.jpg]]&lt;br /&gt;
To configure the devices over on the left side if you are on the console tab there will be a link that is called devices. On this page you will have to set the name for the device. The device&#039;s IP address. The Host Template which is the type of device you are going to monitor. The SNMP community is group name you gave to the SNMP permissions on the device. Then click save.&lt;br /&gt;
[[File:devices.jpg]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Creategraph.JPG&amp;diff=924</id>
		<title>File:Creategraph.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Creategraph.JPG&amp;diff=924"/>
		<updated>2010-02-24T14:50:22Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Settings.JPG&amp;diff=923</id>
		<title>File:Settings.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Settings.JPG&amp;diff=923"/>
		<updated>2010-02-24T14:49:49Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Devices.JPG&amp;diff=922</id>
		<title>File:Devices.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Devices.JPG&amp;diff=922"/>
		<updated>2010-02-24T14:49:36Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Ifconfig.JPG&amp;diff=921</id>
		<title>File:Ifconfig.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Ifconfig.JPG&amp;diff=921"/>
		<updated>2010-02-24T14:49:23Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Cactuar.jpg&amp;diff=920</id>
		<title>File:Cactuar.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Cactuar.jpg&amp;diff=920"/>
		<updated>2010-02-22T19:44:14Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Login2.JPG&amp;diff=919</id>
		<title>File:Login2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Login2.JPG&amp;diff=919"/>
		<updated>2010-02-22T19:40:06Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Apacheconf.JPG&amp;diff=918</id>
		<title>File:Apacheconf.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Apacheconf.JPG&amp;diff=918"/>
		<updated>2010-02-22T19:33:01Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=917</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=917"/>
		<updated>2010-02-22T19:32:53Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:Apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=916</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=916"/>
		<updated>2010-02-22T19:32:17Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;br /&gt;
[[File:apacheconf.JPG]]&lt;br /&gt;
*Step 4. In the crontab you will need to create a new task. You can edit this by: nano /etc/crontab . In here you will add a task by putting in this line: * /5 * * * * Root /www/php/bin/php /www/htdocs/cacti/poller.php &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
[[File:crontab.JPG]]&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Crontab.JPG&amp;diff=915</id>
		<title>File:Crontab.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Crontab.JPG&amp;diff=915"/>
		<updated>2010-02-22T19:30:41Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=914</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=914"/>
		<updated>2010-02-22T19:21:32Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
[[File:installrrd.JPG]]&lt;br /&gt;
*Step 2. Install Cacti using apt-get or aptitude.&lt;br /&gt;
[[File:icacti2.JPG]]&lt;br /&gt;
*Step 3. Go into the Apache2 folder and change the configuration file /etc/apache2/apache.conf with nano or any text editor. At the end of the file add the line: Include /etc/cacti/apache.conf&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Installrrd.JPG&amp;diff=913</id>
		<title>File:Installrrd.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Installrrd.JPG&amp;diff=913"/>
		<updated>2010-02-22T19:17:33Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Icacti2.JPG&amp;diff=912</id>
		<title>File:Icacti2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Icacti2.JPG&amp;diff=912"/>
		<updated>2010-02-22T19:17:22Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=911</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=911"/>
		<updated>2010-02-22T19:15:14Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.JPG‎]]&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=910</id>
		<title>Cacti</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Cacti&amp;diff=910"/>
		<updated>2010-02-22T19:13:51Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: Created page with &amp;#039;== Cacti == Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be ins…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Cacti ==&lt;br /&gt;
Cacti is graphical representation of network traffic over a device. It can be used to monitor network traffic over individual ports to altogether usage. It can be installed in the windows enviroment or you may install it on a Unix-Linux based OS. &lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
For this installation we will be installing cacti on a Ubuntu virtual box system.&lt;br /&gt;
*Step 1. You will need to install three dependicies for cacti you will need RRdTool, Apache2, MySQL with apt-get or aptitude.&lt;br /&gt;
[[File:Install_rrdtool.jpg]]&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=File:Install_rrdtool.JPG&amp;diff=909</id>
		<title>File:Install rrdtool.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=File:Install_rrdtool.JPG&amp;diff=909"/>
		<updated>2010-02-22T19:12:07Z</updated>

		<summary type="html">&lt;p&gt;Jeffkuhn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jeffkuhn</name></author>
	</entry>
</feed>