Unsolved
This post is more than 5 years old
1 Message
0
40726
August 31st, 2012 21:00
5548P static routing -- stumped.
Hello all,
My first of probably many posts on this forum. I have inherited a project from my boss who was let go. I have been thrown to the wolves real quick. Here is my situation. I sure hope somebody can help me. I have configured these switches before but only real basics.
I have a Sonicwall NSA250 (10.1.1.1) configured with some VLANs (10.1.2.1, 10.1.3.1, etc.) connected to a trunk port on a 5548P. There is a fiber run coming out of that switch that goes to a flat switch that has devices connected to it with 30.30.30.x addresses. I somehow need the 10.1.3.1 vlan to communicate with the 30.30.30 devices and also make sure the 30.30.30 devices can see out to the internet.
I am honestly very stuck here. I am no longer on-site but I can vpn in and do whatever I need to fix/test. Is there anyway I can accomplish this task with help from this community. I would greatly appreciate it or my Labor Day weekend is going to be rough.
0 events found


cerbera_a84f2d
176 Posts
0
September 5th, 2012 10:00
Hi
You can configure up to 16 static routes on the 5500. Are you tagging VLANs on the Sonicwall?; if you are, then you will need to configure the port on the 5500 to the sonicwall as untagged, if not, then you could try...assuming we can use VLAN 30 for the port to the remote switch......this will make the default gateway 30.30.30.254 for all the clients in that VLAN; if you are using the Sonicwall as a DHCP server then you will need to enable DHCP helper on the 5500 as well
enable
config
vlan database
vlan 3,30
exit
interface vlan 30
ip address 30.30.30.254 /24
exit
interface vlan 3
ip address 10.1.3.254 /16
exit
interface gi1/0/x where x is the port connected to the remote switch
switchport access vlan 30
exit
interface gi1/0/y where y is the port to the Sonicwall
switchport access vlan 3
exit
ip routing
ip route 0.0.0.0 /16 10.1.3.1
exit
exit