I received my 3524PRW switch today and it has been busting my brain.
I needed to remove my HWICD-9ESW from my 2811 router because I needed more powered ports!
I am running a router on a stick w/ vlans 1, 101, and 107 (101 is Data valn, 107 is Voice vlan, 1 is management) on f0/1 of the router. Router is set up with OSPF. Router IOS = 12.4(15)T1, Switch IOS = 12.0(5)WC17.
PCs connected to the 7960s are able to communicate and get DHCP addresses with no issues. 7960s do not get DHCP configurations!
The only thing that has changed is I removed the 9ESW-PWR interface and the vlans 101 and 107 where I had the same IP address assigned to the VLANs as i now have assigned to the f0/1.101 and fo/1.107 interfaces on the router.
The 2811s sh ver is:
Hermesz_R1#sh ver
Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)
Technical Support:
Cisco - Shortcut
Copyright (c) 1986-2007 by Cisco Systems, Inc.
Compiled Wed 18-Jul-07 06:21 by prod_rel_team
ROM: System Bootstrap, Version 12.4(13r)T, RELEASE SOFTWARE (fc1)
|
Cisco 2811 (revision 53.50) with 247808K/14336K bytes of memory.
Processor board ID FTX1122A41G
2 FastEthernet interfaces
1 Serial interface
1 Virtual Private Network (VPN) Module
4 Voice FXO interfaces
2 Voice FXS interfaces
DRAM configuration is 64 bits wide with parity enabled.
239K bytes of non-volatile configuration memory.
62720K bytes of ATA CompactFlash (Read/Write)
Configuration register is 0x2102
Router Code
!
ip cef
no ip dhcp use vrf connected
ip dhcp excluded-address 10.10.11.193 10.10.11.200
ip dhcp excluded-address 10.10.11.1 10.10.11.20
!
ip dhcp pool HermeszPhones
import all
network 10.10.11.192 255.255.255.224
default-router 10.10.11.193
option 150 ip 10.10.11.193
!
ip dhcp pool HermeszDataLAN
import all
network 10.10.11.0 255.255.255.224
default-router 10.10.11.1
!
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
!
interface FastEthernet0/1.1
encapsulation dot1Q 1 native
ip address 10.10.11.225 255.255.255.224
ip nat inside
ip virtual-reassembly
!
interface FastEthernet0/1.101
description $Hermesz data LAN$
encapsulation dot1Q 101
ip address 10.10.11.1 255.255.255.224
ip nat inside
ip virtual-reassembly
!
interface FastEthernet0/1.107
description $Hermesz Voice LAN$
encapsulation dot1Q 107
ip address 10.10.11.193 255.255.255.224
ip nat inside
ip virtual-reassembly
!
interface Serial0/2/0
no ip address
shutdown
no fair-queue
!
router ospf 1
log-adjacency-changes
passive-interface FastEthernet0/0
passive-interface Serial0/2/0
network 10.10.0.0 0.0.255.255 area 0
!
!
ip http server
ip http authentication local
no ip http secure-server
ip nat inside source list 1 interface FastEthernet0/0 overload
!
access-list 1 remark SDM_ACL Category=2
access-list 1 permit 10.10.11.0 0.0.0.31
access-list 1 permit 10.10.11.192 0.0.0.31
access-list 1 permit 10.10.11.224 0.0.0.31
!
!
Switch Code
interface FastEthernet0/1
description $Connection to Office$
switchport trunk encapsulation dot1q
switchport trunk native vlan 101
switchport trunk allowed vlan 1,101,107,1002-1005
switchport mode trunk
switchport voice vlan 107
spanning-tree portfast
!
[I]Output Cut[/I]
!
interface FastEthernet0/17
description $Connection to Hermesz-R1 LAN$
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1,101,107,1002-1005
switchport mode trunk
!
[I]Output Cut[/I]
!
interface VLAN1
ip address 10.10.11.226 255.255.255.224
no ip directed-broadcast
no ip route-cache
!
ip default-gateway 10.10.11.225
ip http authentication local
!
When I look at the mac-address-table on the 3524PWR, I can see that the phones are connected to vlans 101 and 107 and if I open CNA, they show in the topology.
I am able to ping all interfaces on the router and the switch's VLAN1 IP Address from any device on my network.
What am I missing????
John