Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VLAN configuration on Summit x450e-48p 1

Status
Not open for further replies.

CorbinMyMan

Technical User
Feb 4, 2005
267
US
I need to create a new VLAN with Layer3 routing in my Summit x450e-48p.

Basically I need to have a VLAN with a subnet of 192.168.200.0 and a second VLAN with 192.168.10.0 and have routing between the two if needed. Is this possible?
 
yes.
Code:
summit# create vlan vlan_200
summit# configure vlan_200 tag 200
summit# configure vlan_200 ipaddress 192.168.200.254 /24
summit# create vlan vlan_10
summit# configure vlan_10 tag 10
summit# configure vlan_10 ipaddress 192.168.10.254 /24
summit# enable ipforwarding vlan_200
summit# enable ipforwarding vlan_10
summit# configure iproute add default <next_hop_ip>

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Thank you!

I assume I assign a port range for each vlan right? Never done that before either.

Now I have 3 of these switches stacked and I plan on putting the vlan ports on the stack 3 (I really only need 2 ports).
 
Ok so I tried to go into the switch and create a vlan. This is the 3rd switch in a stack of 3.

When I try create vlan it says that command can't be executed on a standby node.

Is this still possible with stacked switches?
 
Ahh I got it. I connected to the first node and created the vlans there and can access ports by the stack number and port number.

Working on the config now
 
The only thing I don't understand is the

configure iproute add default <next_hop_ip>

What is the next hop ip suppose to be?

Thanks
 
Ok so here is what i've done so far, i created a new vlan_10, gave it an address. I removed 4 ports off the vlan "Default" and added them to vlan_10. I gave both Default and vlan_10 Ipaddresses and tags (what are tags for anyway?). I enabled ipforwarding on both Default and vlan_10.

The 'configure iproute add default <next_hop_ip>' command confuses me. I'm not sure what the next_hop_ip is.
 
so the <next_hop_ip> would be the gateway leading out of your local network either to the internet (firewall) or to a private WAN connection.

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Thats what I thought so I put my gateway in and it still doesn't work. My second vlan (on the new subnet) can't get online, and I can't ping between subnets
 
can you post your configuration??

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Here's my vlan config, I'm guessing I should have left the default alone and create two vlans, removed all the ports from the default vlan to my two new vlans

Code:
configure vlan Default tag 200
create vlan "vlan_10"
configure vlan vlan_10 tag 10
configure ports 3:49 auto off speed 10000 duplex full
configure ports 3:50 auto off speed 10000 duplex full
configure vlan Default add ports 3:1-44, 3:49-50 untagged
configure vlan vlan_10 add ports 3:45-48 untagged
configure vlan Default ipaddress 192.168.200.254 255.255.255.0
enable ipforwarding vlan Default
configure vlan vlan_10 ipaddress 192.168.10.254 255.255.255.0
enable ipforwarding vlan vlan_10
configure qosscheduler strict-priority
 
ok, so with this current config you cannot get inter-vlan communication?? you've double checked the client configuration to make sure they are using .254 as the gateway??

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
So for my second vlan (which is vlan_10) I have to set gateway as 10.254?

I'll try that and get back. Thanks.
 
did changing the gateway work for you??

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top