I have a L3 switch (PC6224) that I am using for a proof of concept configuration. My native/default VLAN is 192.168.12.0/24. I also have available 10.1.100.0/24(VoIP devices), 192.168.13.0/24(computers), and 192.168.100.0/24 (computers).
When I plug into say Port #6, I am able to get a DHCP address from the firewall (192.168.12.1). I can also get to the internet with no issues. However, if I manually configure an IP address on my computer with ANY of the other subnets(and having either 192.168.12.1 or the VLAN's IP address as the DG), I cannot get to the 192.168.12.1 router.
Any thoughts? This cant be brain ***.
config
vlan database
vlan 10,12,13,100
vlan routing 10 1
vlan routing 12 2
vlan routing 13 3
vlan routing 100 4
exit
hostname "stack"
ip address 172.168.1.2 255.255.255.0
ip routing
ip route 0.0.0.0 0.0.0.0 192.168.12.1
int vlan 10
routing
name "voip"
ip address 10.1.100.254 255.255.255.0
exit
int vlan 12
routing
name "-org-servers"
ip address 192.168.12.254 255.255.255.0
exit
int vlan 13
routing
name "-org-clients"
ip address 192.168.13.254 255.255.255.0
exit
int vlan 100
routing
name "-com"
ip address 192.168.100.254 255.255.255.0
exit
!
int eth 1/g1
description "uplink_to_edgemark"
switchport mode general
switchport general pvid 10
switchport general allowed vlan add 12,13,100
exit
!
int eth 1/g2
description "uplink_to_internet"
spanning-tree portfast
switchport mode general
switchport general pvid 12
switchport general allowed vlan add 12,13,100
exit
!
int range eth 1/g3-1/g22
description "user_ports"
spanning-tree portfast
switchport mode general
switchport general pvid 12
switchport general allowed vlan add 10,12,13,100
switchport general allowed vlan add 10 tagged
exit
!