Unsolved

This post is more than 5 years old

10 Posts

24247

February 8th, 2007 16:00

Powerconnect 62xx Routing capability

We are looking to utilize the powerconnect 6248 in our office enviornment.  Our Telco has an ethernet drop that they have put here and if I plug a pc into this drop and give it an ip and gateway I'm able to get to the WAN.
 
They have also assigned us a class C network.   Is it possible to utilize the 6248 to route traffic from the class c to the telco gateway and visa versa?
 
I just want to make sure this is possible with this.  We also have a firewall to our private network that I would want to plug into the class c side of things. 


Message Edited by Gwish on 02-08-2007 01:02 PM

10 Posts

February 8th, 2007 17:00

I apologize for the subject not being very descriptive.  I can't find a place to edit this.

626 Posts

February 8th, 2007 18:00

Yes, the PowerConnect has several Routing Protocols built into it, which makes it capable of routing between subnets.

10 Posts

February 8th, 2007 19:00

We have set up 2 vlans on seperate networks at this point and they are not talking.  I was under the impression that these should be talking without setting up any special routes at this point.  Is this incorrect?

626 Posts

February 8th, 2007 20:00

You have to configure the switch to route between the VLANs.  It doesn't do it automatically.  Many administrators wouldn't want that to happen automatically.  Here's an example of how I configured my PC6248 to route between two VLANs.  I've got it configured to route between VLAN 2 and 3. 
 
console#show running-config
!Current Configuration:
!System Description "Dell PowerConnect"
!System Software Version 1.0.0.27
!
configure
vlan database
vlan 2-3
exit
stack
member 1 2
exit
ip address 192.168.1.100 255.255.255.0
interface vlan 2
routing
ip address  192.168.50.1  255.255.255.0
exit
interface vlan 3
routing
ip address  192.168.60.1  255.255.255.0
exit
ip routing
router rip
no enable
no hostroutesaccept
exit
username "admin" password 5f4dcc3b5aa765d61d8327deb882cf99 level 15 encrypted
no spanning-tree
!
interface ethernet 1/g1
switchport access vlan 2
exit
!
interface ethernet 1/g33
switchport access vlan 3
exit
enable password 5f4dcc3b5aa765d61d8327deb882cf99 encrypted
exit

10 Posts

February 8th, 2007 21:00

Thank you!
 
Subnets are talking now thanks to you, but our gateway is on vlan2 and this is fine for vlan2 computers (they can access the internet fine).   However vlan3 PC's can only ping Vlan2 PC's, but not the gateway on vlan2.
 
gateway is 75.40.196.6
Any thoughts on what we may be missing?
 
Here is the config if this helps
 

configure
vlan database
vlan 2-3
exit
stack
member 1 2
exit
ip address 10.1.1.2 255.255.255.0
ip default-gateway 10.1.1.1
interface vlan 2
routing
ip address  75.40.196.1  255.255.255.248
exit
interface vlan 3
routing
ip address  75.40.187.1  255.255.255.0
exit
ip routing
ip route 0.0.0.0 0.0.0.0 75.40.196.6
router rip
no enable
no hostroutesaccept
default-metric 1
exit
username "admin" password be564d5b5cb4edbfc61e6d6bd5b32015 level 15 encrypt
no spanning-tree
!
interface ethernet 1/g1
description 'Uplink'
switchport access vlan 2
exit
!
interface ethernet 1/g2
mdix on
switchport access vlan 2
exit
!
interface ethernet 1/g4
mdix on
switchport access vlan 3
exit
!
interface ethernet 1/g5
switchport access vlan 3
exit

February 9th, 2007 10:00

What do you have as the default gaeway for the clients in VLAN3?
 
 

10 Posts

February 9th, 2007 11:00

The Vlan interface IP.  Those machines can ping across the VLAN they just can not get out of the gateway.

626 Posts

February 9th, 2007 12:00

From a system on VLAN2, can you ping the VLAN3 IP interface (VLAN3 gateway)?
 
From a system on VLAN3, can you ping the VLAN2 IP interface (VLAN2 gateway)?

10 Posts

February 9th, 2007 12:00

That is correct.  We can ping across subnets at this point. 
 
Vlan 2 can ping the gateway and get out to the internet.
Vlan 2 can also ping PC's on Vlan 3
 
Vlan 3 can not ping the gateway and can not access the internet.
However Vlan 3 can ping Vlan2 interface and PC's on Vlan2.

10 Posts

February 9th, 2007 13:00

This is the output of show ip route

S      0.0.0.0/0 [1/0] via 75.40.196.6,   vlan 2
C      75.40.187.0/24 [0/0] directly connected,   vlan 3
C      75.40.196.0/29 [0/0] directly connected,   vlan 2

626 Posts

February 9th, 2007 13:00

And your gateway to get to the internet is 75.40.196.6?

10 Posts

February 9th, 2007 13:00

Yes that is correct.
 

626 Posts

February 9th, 2007 13:00

Can you give me the output for "show ip route" at the EXEC level on your switch?  I want to see if the switch is recognizing "ip route 0.0.0.0 0.0.0.0 75.40.196.6".

626 Posts

February 9th, 2007 17:00

On the clients that are connected to VLAN2, what do you have set as the default gateway?
 
On the clients that are connected to VLAN3, what do you have set as the default gateway?
 
Right now I think that the solution will be to set the default gateway on the VLAN3 client to 75.40.196.6.  Communications to VLAN2 clients from VLAN3 clients should still be picked up because ARP requests will be forwarded by the switch to VLAN2 (since routing is enabled on the switch).  Try changing the default gateway on one of the VLAN3 clients.  Then on that same client, try to access the internet, then try to ping a system on VLAN2.

10 Posts

February 9th, 2007 17:00

I appreciate your help - thank you again.
I'm missing something rather simple I'm sure.
 
S      0.0.0.0/0 [1/0] via 75.40.196.6,   vlan 2
C      75.40.187.0/24 [0/0] directly connected,   vlan 3
C      75.40.196.0/29 [0/0] directly connected,   vlan 2
 
Clients on Vlan2 use .6 for the gateway
Clients on Vlan3 use the interface IP as the gateway.
 
I have changed the vlan3 client to use the .6 gateway with no luck.  I could still ping across the subnets but still could not get a ping reply from the gateway to those pc's.

0 events found

No Events found!

Top