Hello All,
I'm new to the Cisco realm and I was recently inspired by a coworker to dig in and give it a shot. I am by trade an IT Generalist (Jack of all trades - Master of Nada!) I'm sure alot of ya feel that way. Anyway, I picked up a couple of Cisco 3550-12T Switches. I have 2 and I intend to expand my knowledge with eventually obtaining more devices once I learn and become more fluid with the commands and setup of devices. Anyway, I'll be as descript as possible. Assume the device is out of the box and i have only given it an ip of 192.168.0.10 255.255.255.0 - GW 192.168.0.1 (router ip). I want 7 VLANs -
VLAN 10= 192.168.1.1 (Gi0\2-3), Desktops
VLAN 20=192.168.2.1 (Gi0\4), Servers
VLAN 30=192.168.3.1 (Gi0\5),iScsi
VLAN 40=192.168.4.1 (Gi0/6), Wireless access
VLAN 50=192.168.5.1 (Gi0\7), Wireless access
VLAN 60=192.168.6.1(Gi0\8), Printers
VLAN 70=192.168.7.1 (Gi0\9), Powerline
VLAN 80=192.168.8.1 (Gi0\10) Testing other devices
The default vlan1 does not have an IP.
Port Gi0\12 is a trunk\uplink to the second switch (Same model). I want to be able to ping other devices on other vlans/switches and have internet access from each vlan. I want to setup a VTP server and client since I have 2. I also have a Microsoft server with will provide dhcp and dns services (192.168.0.5). I also have been having trouble connecting devices directly. I cannot seem to connect my laptop directly to a port. But I can connect a D-Link switch. I have tried straight through and crossover cables from my laptop, and still the port isn't active. I've also intended to make Gi0\1 my uplink port to the D-Link router. Here is what I have setup so far.
Building configuration...
Current configuration : 4554 bytes
!
version 12.2
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Ironman
!
enable secret #######
enable password ######
!
no aaa new-model
clock timezone CST -6
clock summer-time CDT recurring
ip subnet-zero
ip routing
!
!
!
crypto pki trustpoint TP-self-signed-3202378368
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-3202378368
revocation-check none
rsakeypair TP-self-signed-3202378368
!
!
crypto pki certificate chain TP-self-signed-3202378368
certificate self-signed 01
###%%%###%%%
quit
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
!
!
!
!
interface GigabitEthernet0/1
description uplink
no switchport
ip address 192.168.0.2 255.255.255.0
spanning-tree portfast
!
interface GigabitEthernet0/2
description DESKTOPS
switchport access vlan 10
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/3
description DESKTOPS
switchport access vlan 10
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/4
description SERVERS
switchport access vlan 20
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/5
description ISCSI
switchport access vlan 30
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/6
description WIRELESS
switchport access vlan 40
switchport mode access
spanning-tree portfast
!
interface GigabitEthernet0/7
description Wireless
switchport access vlan 50
switchport mode access
spanning-tree portfast
!
interface GigabitEthernet0/8
description Printers
switchport access vlan 60
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/9
description POWERLINE
switchport access vlan 70
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/10
switchport access vlan 80
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/11
switchport mode dynamic desirable
!
interface GigabitEthernet0/12
description VTP
switchport trunk encapsulation dot1q
switchport mode trunk
!
interface Vlan1
no ip address
!
interface Vlan10
ip address 192.168.1.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan20
ip address 192.168.2.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan30
ip address 192.168.3.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan40
ip address 192.168.4.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan50
ip address 192.168.5.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan60
ip address 192.168.6.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan70
ip address 192.168.7.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan80
ip address 192.168.8.1 255.255.255.0
ip helper-address 192.168.0.5
!
ip default-gateway 192.168.0.1
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.0.1
ip http server
ip http secure-server
!
!
!
control-plane
!
!
line con 0
line vty 0 4
password ######
login
line vty 5 15
password #####
login
!
end
What am I missing? Do I have too much? I've only been doing this for about a month, so be easy on me.
I'm new to the Cisco realm and I was recently inspired by a coworker to dig in and give it a shot. I am by trade an IT Generalist (Jack of all trades - Master of Nada!) I'm sure alot of ya feel that way. Anyway, I picked up a couple of Cisco 3550-12T Switches. I have 2 and I intend to expand my knowledge with eventually obtaining more devices once I learn and become more fluid with the commands and setup of devices. Anyway, I'll be as descript as possible. Assume the device is out of the box and i have only given it an ip of 192.168.0.10 255.255.255.0 - GW 192.168.0.1 (router ip). I want 7 VLANs -
VLAN 10= 192.168.1.1 (Gi0\2-3), Desktops
VLAN 20=192.168.2.1 (Gi0\4), Servers
VLAN 30=192.168.3.1 (Gi0\5),iScsi
VLAN 40=192.168.4.1 (Gi0/6), Wireless access
VLAN 50=192.168.5.1 (Gi0\7), Wireless access
VLAN 60=192.168.6.1(Gi0\8), Printers
VLAN 70=192.168.7.1 (Gi0\9), Powerline
VLAN 80=192.168.8.1 (Gi0\10) Testing other devices
The default vlan1 does not have an IP.
Port Gi0\12 is a trunk\uplink to the second switch (Same model). I want to be able to ping other devices on other vlans/switches and have internet access from each vlan. I want to setup a VTP server and client since I have 2. I also have a Microsoft server with will provide dhcp and dns services (192.168.0.5). I also have been having trouble connecting devices directly. I cannot seem to connect my laptop directly to a port. But I can connect a D-Link switch. I have tried straight through and crossover cables from my laptop, and still the port isn't active. I've also intended to make Gi0\1 my uplink port to the D-Link router. Here is what I have setup so far.
Building configuration...
Current configuration : 4554 bytes
!
version 12.2
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Ironman
!
enable secret #######
enable password ######
!
no aaa new-model
clock timezone CST -6
clock summer-time CDT recurring
ip subnet-zero
ip routing
!
!
!
crypto pki trustpoint TP-self-signed-3202378368
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-3202378368
revocation-check none
rsakeypair TP-self-signed-3202378368
!
!
crypto pki certificate chain TP-self-signed-3202378368
certificate self-signed 01
###%%%###%%%
quit
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
!
!
!
!
interface GigabitEthernet0/1
description uplink
no switchport
ip address 192.168.0.2 255.255.255.0
spanning-tree portfast
!
interface GigabitEthernet0/2
description DESKTOPS
switchport access vlan 10
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/3
description DESKTOPS
switchport access vlan 10
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/4
description SERVERS
switchport access vlan 20
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/5
description ISCSI
switchport access vlan 30
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/6
description WIRELESS
switchport access vlan 40
switchport mode access
spanning-tree portfast
!
interface GigabitEthernet0/7
description Wireless
switchport access vlan 50
switchport mode access
spanning-tree portfast
!
interface GigabitEthernet0/8
description Printers
switchport access vlan 60
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/9
description POWERLINE
switchport access vlan 70
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/10
switchport access vlan 80
switchport mode dynamic desirable
spanning-tree portfast
!
interface GigabitEthernet0/11
switchport mode dynamic desirable
!
interface GigabitEthernet0/12
description VTP
switchport trunk encapsulation dot1q
switchport mode trunk
!
interface Vlan1
no ip address
!
interface Vlan10
ip address 192.168.1.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan20
ip address 192.168.2.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan30
ip address 192.168.3.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan40
ip address 192.168.4.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan50
ip address 192.168.5.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan60
ip address 192.168.6.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan70
ip address 192.168.7.1 255.255.255.0
ip helper-address 192.168.0.5
!
interface Vlan80
ip address 192.168.8.1 255.255.255.0
ip helper-address 192.168.0.5
!
ip default-gateway 192.168.0.1
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.0.1
ip http server
ip http secure-server
!
!
!
control-plane
!
!
line con 0
line vty 0 4
password ######
login
line vty 5 15
password #####
login
!
end
What am I missing? Do I have too much? I've only been doing this for about a month, so be easy on me.