<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.rosemarknetworks.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Cisco_Catalyst_Template</id>
	<title>Cisco Catalyst Template - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.rosemarknetworks.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Cisco_Catalyst_Template"/>
	<link rel="alternate" type="text/html" href="https://www.rosemarknetworks.com/wiki/index.php?title=Cisco_Catalyst_Template&amp;action=history"/>
	<updated>2026-05-01T10:03:21Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://www.rosemarknetworks.com/wiki/index.php?title=Cisco_Catalyst_Template&amp;diff=99&amp;oldid=prev</id>
		<title>Maeve: Created entire page</title>
		<link rel="alternate" type="text/html" href="https://www.rosemarknetworks.com/wiki/index.php?title=Cisco_Catalyst_Template&amp;diff=99&amp;oldid=prev"/>
		<updated>2024-10-10T17:35:11Z</updated>

		<summary type="html">&lt;p&gt;Created entire page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt; ! &amp;#039;&amp;#039;&amp;#039;Enter configuration mode&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 en&lt;br /&gt;
 conf t&lt;br /&gt;
  &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Turn on rapid spanning tree&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 spanning-tree mode rapid-pvst &lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Set the hostname&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 hostname &amp;#039;&amp;#039;&amp;#039;examplename&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Enables password encryption&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 service password-encryption&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Optional. Enable secret followed by a password will require console users to provide a password before they can &amp;quot;enable&amp;quot; the switch, allowing them to edit conf mode, run show run, etc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 enable secret &amp;#039;&amp;#039;&amp;#039;supersecretpassword&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Create a superuser / admin. The name can be anything&amp;#039;&amp;#039;&amp;#039;. &lt;br /&gt;
 username AdminUser priv 15 secret &amp;#039;&amp;#039;&amp;#039;incrediblysecurepassword&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Set Timezone&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 clock timezone UTC 0 0&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Set NTP server. If DNS is functional, use one of these&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
 ntp server 0.north-america.pool.ntp.org&lt;br /&gt;
 ntp server 1.north-america.pool.ntp.org&lt;br /&gt;
 ntp server 2.north-america.pool.ntp.org&lt;br /&gt;
 ntp server 3.north-america.pool.ntp.org&lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Alternatively, if you want this device to instead pull NTP from another device in your network, supply an IP&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
 ! ntp server &amp;#039;&amp;#039;&amp;#039;10.0.0.1&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;aaa new-model enables a suite of features that are now standard across all other Cisco devices.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 aaa new-model&lt;br /&gt;
 aaa authentication login default local&lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Console connection&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 aaa authorization console&lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;SSH connection&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 aaa authorization exec default local &lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Disables requirement for password on the console. If enabled, this would be one step behind enable secret.&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 line con 0&lt;br /&gt;
 no password&lt;br /&gt;
 exit &lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;This configures SSH access in the same way that we configured the above console connection. a vty is a remote connection. IOS supports 16 concurrently&amp;#039;&amp;#039;&amp;#039;. &lt;br /&gt;
 line vty 0 15&lt;br /&gt;
 no password&lt;br /&gt;
 transport input ssh&lt;br /&gt;
 exit&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Disables default interface for VLAN 1. VLAN 1 should be avoided when possible as this is the default VLAN that ports will take when reset.&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 int vlan 1&lt;br /&gt;
 no ip address&lt;br /&gt;
 shutdown&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Define a default domain name.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 !no ip domain-lookup&lt;br /&gt;
 ip domain-name &amp;#039;&amp;#039;&amp;#039;your-internal-domain-name&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 ip name-server &amp;#039;&amp;#039;&amp;#039;your-local-dns-server&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 ! Generates a cryptokey to enable SSH &lt;br /&gt;
 crypto key generate rsa modulus 4096 &lt;br /&gt;
 ip ssh version 2&lt;br /&gt;
 ! ip ssh {timeout seconds | authentication-retries number}&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Here we add a port to VLAN 10. This assumes VLAN 10 is the VLAN you&amp;#039;re going to use for your primary management. Adjust as appropriate.&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
 int te 1/0/48 &lt;br /&gt;
 switchport access VLAN 10 &lt;br /&gt;
 int vlan 18&lt;br /&gt;
 ip address 192.168.10.10 255.255.255.0&lt;br /&gt;
 ip default-gateway 192.168.10.1&lt;br /&gt;
 exit&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Ping the device from itself to ensure the interface has come alive.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 ping 192.168.10.10&lt;br /&gt;
 &lt;br /&gt;
 ! &amp;#039;&amp;#039;&amp;#039;Write to memory.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 wr&lt;/div&gt;</summary>
		<author><name>Maeve</name></author>
	</entry>
</feed>