Ok this is the deal; I have setup 4 vlans that are on 4 different networks (10.16,10.1,10.2,128.1). This is an l3 swith, how do I allow the default network (10.16 on vlan1) talk to the other networks?
If they're all configured on that switch, then all VLAN's should be able to communicate with eachother by default. Check that all the VLAN's are active by doing a "show vlan" or "show ip interface brief". One of these commands should help out.
Create interfaces on your 4507 for your vlans. Here's an example:
config t
interface vlan 100
ip address 10.16.0.1 255.255.255.0
no shutdown
!
interface vlan 200
ip address 10.1.0.1 255.255.255.0
no shutdown
end
Now if you set up ports in either vlan, they should be able to ping each other.
"I can picture a world without war. A world without hate. A world without fear. And I can picture us attacking that world, because they'd never expect it."
- Jack Handey, Deep Thoughts
Whoops...don't forget to turn on a routing protocol, it's best practice. Not that you should need it...since all routers know about all directly connected interfaces.
"I can picture a world without war. A world without hate. A world without fear. And I can picture us attacking that world, because they'd never expect it."
- Jack Handey, Deep Thoughts
My vlans are setup but I did not setup ports, I think that is my problem. I can see ips on the same network 10.16 to 10.16, just not 10.16 to 10.1 . What do I need to do on my ports....
To be able to pass traffic between these VLANs, you need to enable routing on your 4507. This should get you going. You also may want to specify a default route out of the network towards a corporate firewall or router (i.e. ip route 0.0.0.0 0.0.0.0 w.x.y.z)
router eigrp 1
network 10.0.0.0
no auto-summary
eigrp log-neighbor-changes
Try doing "ip routing". This will turn on TCP/IP routing on your switch. I know on the 3550's it's off by default, so maybe it's the case w/ your 4500.
Vlan 1 shoud be able to talk to your other networks. I don't see any ports assigned to any other vlan except vlan 1.
Have you tried assigning a port to vlan 2 then pinging between the interfaces?
"I can picture a world without war. A world without hate. A world without fear. And I can picture us attacking that world, because they'd never expect it."
- Jack Handey, Deep Thoughts
In other words, what ipkonfig is trying to tell you is that the VLANs exist, now you just need to assign ports to them. I don't have a 4500 to mess around with, but it generally goes something like this on IOS-based switches:
Switch#conf t
Switch(config)#int g3/1 (or whatever)
Switch(config-if)#switchport access vlan 2
Connect a client to switchport 2, give them a 10.2.x.x address, point them at 10.2.50.2 for their default gateway, and off you go.
Same thing, but the 10.16 clients go into VLAN 1 and use 10.16.50.1 as the default gateway. By default, all ports are in VLAN 1. Now we're back to your original question -
"how do I allow the default network (10.16 on vlan1) talk to the other networks?"
Given that this switch has a route processor (Sup III I'm assuming) it should automatically route between the attached interfaces (The VLANs are the interfaces in this case). If you do a "show ip route", you should see routes to your VLAN networks. Plug a client in and give it a try.
If the client has a 10.16.x.x address, then they must be connected to a switchport that is assigned to Vlan 1. You would just change the switchport allocation, e.g.
Switch#conf t
Switch(config)#int g3/1 (or whatever)
Switch(config-if)#switchport access vlan 1
Just remember that the client's port Vlan assigment must match the IP subnet they are on. For example, if the client's IP address is 10.1.x.x, your config states that this is Vlan 3:
interface Vlan3
ip address 10.1.50.1 255.255.0.0
Therefore, that client must be plugged into a port that is a member of Vlan 3. Again, this is done using the switchport access Vlan X command.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.