Start a Conversation

This post is more than 5 years old

Solved!

Go to Solution

6707

November 9th, 2012 11:00

Dell 6248P - VLAN Routing Issue

I am tring to setup a new Switch to do  vlan routing but it is not cooperating.  This should be pretty simple, but for some reason I can't get it working,  I'm not sure what I'm missing.

I have two hosts attached to the switch for testing

Host_180  - port 18 - host IP  10.100.180.10  /24   gw 10.100.180.1

Host_190  - port 19 - host IP  10.100.190.10  /24   gw 10.100.190.1

 

Host 180 can ping 10.100.180.1, 10.100.190.1  but can NOT ping 10.100.190.10

Host 190 can ping 10.100.190.1, 10.100.180.1  but can NOT ping 10.100.180.10

 

!Current Configuration:
!System Description "PowerConnect 6248P, 3.3.4.1, VxWorks 6.5"
!System Software Version 3.3.4.1
!Cut-through mode is configured as disabled
!
configure
vlan database
vlan 18-20
vlan routing 18 1
vlan routing 19 2
vlan routing 20 3
exit

stack
member 1 5
member 2 5
exit
switch 1 priority 1
switch 2 priority 3

ip address 10.100.100.214 255.255.255.0
ip default-gateway 10.100.100.3
ip routing

interface vlan 18
routing
ip address 10.100.180.1 255.255.255.0
exit

interface vlan 19
routing
ip address 10.100.190.1 255.255.255.0
exit

interface vlan 20
routing
ip address 10.100.200.1 255.255.255.0
exit

username "admin" password xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  level 15 encrypted
!
interface ethernet 1/g18
switchport mode general
switchport general pvid 18
switchport general allowed vlan add 18
exit
!
interface ethernet 1/g19
switchport mode general
switchport general pvid 19
switchport general allowed vlan add 19
exit

!
interface ethernet 1/g43
switchport mode trunk
switchport trunk allowed vlan add 1,18-20
exit
!
interface ethernet 1/g44
switchport mode trunk
switchport trunk allowed vlan add 1,18-20
exit


snmp-server community public rw
exit

 

Any assistance would be appreciated.

Thank you

 

 

12 Posts

November 9th, 2012 12:00

How embarrasing

Hosts I was using to test had windows firewall enabled..  everyhting is working as it should..

12 Posts

November 9th, 2012 11:00

Should have included this in the original post..

console#show ip route

C      10.100.180.0/24 [0/1] directly connected,   vlan 18

C      10.100.190.0/24 [0/1] directly connected,   vlan 19

C      10.100.200.0/24 [0/1] directly connected,   vlan 20

console#show ip interface

Routing Interfaces:

                                                                                Netdir   Multi

Interface    State  IP Address      IP Mask         Bcast    CastFwd

----------   -----  --------------- --------------- -------- --------

vlan 18      Up     10.100.180.1    255.255.255.0   Disable  Disable

vlan 19      Up     10.100.190.1    255.255.255.0   Disable  Disable

vlan 20      Up     10.100.200.1    255.255.255.0   Disable  Disable

No Events found!

Top