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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Another vLAN question

Status
Not open for further replies.

Deepseadata

Technical User
Jul 10, 2008
123
DE
Hey sorry about this.. I've searched but didn't find what I was looking for.

2801 router -- 3560 switch

Ive got to make a dozen vLAN's

vlan 50 192.168.50.0 ADMIN
vlan 51 192.168.51.0 VOICE
vlan 52 192.168.52.0 CCTV
vlan 53 192.168.53.0 GUEST
etc,

before I start laying down the framework I need to understand the difference between Vlan 1 (cisco's admin) and vlan 50 (my created admin vlan).

I setup Vlan 50 so I could include all the IP in that subnet for the switch, router, a SBS server, and all my access points (that have multi SSID's).

I can't seem to get my head around how it should be designed. Do I just forget the vlan 50 because it's already there a vlan1 or do I just forget about the vlan1 and continue with the vLAN 50 idea?

Could someone please have a look at my diagram and see if I have it designed right?




 
here's an updated diagram.

Maybe instead of making, port 48 on my switch, a routed port, I could just make it a Dot1Q trunk. That would bring all the vlans up to the router without any routing. Then I could somehow make the ip route indside the router to get them onto the internet, no?
 
Hello
I have post you the solution to your problem but you just keep ignoring my post.If you really need help let me know.In any case I will repeat again.The router will not be handling VLAN traffic,so all those Vlan interface should be delete.You will just need this command on the router.

interface Vlan1
ip address 10.10.10.1 255.255.255.0

Then for dynamic routing:
router eigrp 1
network 10.10.10.0

For the switch:
router eigrp 1
network 10.10.10.0
network 192.168.50.0
network 192.168.51.0
network ____________
network ____________
network ____________
network ____________
 
Sorry about that, Minue!

I just used your advice and I now have got pings going to and from each vlan and to the ethernet port of a netgear router in out office. I couldn't ping or internet IP address yet, but I feel like it's not far away.

on the router I have got:

router eigrp 1
Network 192.168.0.0 (my outside ethernet subnet)
Network 10.10.10.0

You are the best man!

I'm so far from being done though...

list of things to do: (reading till my eyes pop out)
1)dhcp pools to each vlan
2)vpn connections
3)QoS and or CAR for the voice and unlucky users in some vlans
4)Load balancing/failover for the two WANs
5)Firewall crap

Don't go too far away! :D

see ya in the other threads
 
We'll get you there!
For the internet connection you will have to use the command:
"ip nat inside"

example:
interface Vlan1
ip address 10.10.10.1 255.255.255.0
ip nat inside

For DHCP use the layer 3 switch as the DHCP server or if you prefer to use the router you will have to use the "ip helper-address" command.

Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top