Link to home
Start Free TrialLog in
Avatar of IvanY
IvanY

asked on

Cisco Catalyst 3560 VLAN routing issue?

Need computers on 2 Vlans see and ping each other.
Vlan 2: 10.1.2.0 255.255.255.0
Vlan 3: 10.1.1.0 255.255.255.0
From the switch I can ping everything in both Vlans
From each computer I can ping up to the opposite Vlan's port, but nothing further. For Ex: from 10.1.2.3 I can ping: 10.1.2.2 and 10.1.1.2 (Vlan on the swith), bun nothing else on 10.1.1.x network.
I'm only using ports 23 (Vlan 2) and 24 (Vlan 3) for now.

What am I missing?

Current configuration : 1701 bytes
!
version 12.2
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Switch
!
!
username XXX privilege 15 secret 5 XXXXXXXXXXXXXXXXXXXX
aaa new-model
aaa authentication login default local
!
aaa session-id common
system mtu routing 1500
ip subnet-zero
ip routing
!
!
!
!        
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!        
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
 switchport access vlan 2
 switchport mode access
!
interface FastEthernet0/24
 switchport access vlan 3
 switchport mode access
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
 no ip address
 shutdown
!
interface Vlan2
 ip address 10.1.2.2 255.255.255.0
!        
interface Vlan3
 ip address 10.1.1.2 255.255.255.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.1.1.1
no ip http server
!
radius-server source-ports 1645-1646
!
control-plane
!
!
line con 0
line vty 0 4
 privilege level 15
line vty 5 15
!
end
ASKER CERTIFIED SOLUTION
Avatar of Dan Craciun
Dan Craciun
Flag of Romania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of IvanY
IvanY

ASKER

Thanks! Due to some of the specifics in my set up (I didn't mention them in my question) the solution was not exactly it, but it got me thinking in a right direction.  Resolved! Appreciate the help