Switches, Hubs, and Modems
1752570 Members
5105 Online
108788 Solutions
New Discussion юеВ

Re: Procurve 2650 VLAN and IP Routing help

 
peter_h
Occasional Advisor

Re: Procurve 2650 VLAN and IP Routing help

Thank you for the reply, it is much appreciated.

Unfortunately, I can not do scenario 2 as the router does not handle VLAN's.

Can you please elaborate on this part in Scenario 1?

"create scobe
scobe 1 (for vlan1)range 192.168.30.60----200
255.255.255.0 route 192.168.30.1
scobe 2 (for vlan40)range 192.168.40.60----200
255.255.255.0 route 192.168.40.1
scobe 3 (for vlan50)range 192.168.40.60----200
255.255.255.0 route 192.168.0.10
"

At this time, untagged VLAN 50 is working.

Tagged VLAN 40 is not.
peter_h
Occasional Advisor

Re: Procurve 2650 VLAN and IP Routing help

Here is new running config

hostname "ProCurve Switch 2650"
snmp-server contact
snmp-server location
ip default-gateway
ip routing
no timesync
snmp-server community "public" Unrestricted
vlan 1
name "DEFAULT_VLAN"
untagged 1-32,49-50
ip address
no untagged 33-48
exit
vlan 40
name "VLAN40"
ip address
ip helper-address
tagged 48
exit
vlan 50
name "router"
untagged 33-48
ip address
exit
ip route
no stack
password manager
password operator

router config
static route IP

AP is plugged into port xx, router into port xx.

As a note, VLAN 1 is not being used.
cenk sasmaztin
Honored Contributor

Re: Procurve 2650 VLAN and IP Routing help

OK... SCENARIO ONE

***********************************************************
dhcp server connect vlan 50 untag port(int 34)
nic ip address 192.168.0.11
subnet mask 255.255.255.0
default gateway 192.168.0.10







"create scobe
scobe 1 (for vlan1)range 192.168.30.60----200
255.255.255.0 route 192.168.30.1
scobe 2 (for vlan40)range 192.168.40.60----200
255.255.255.0 route 192.168.40.1
scobe 3 (for vlan50)range 192.168.0.60----200
255.255.255.0 route 192.168.0.10


**********************************************************

my switch config

hostname
snmp-server contact
snmp-server location
ip default-gateway
ip routing
no timesync
snmp-server community "public" Unrestricted
vlan 1
name "DEFAULT_VLAN"
untagged 1-32,49-50
ip address 192.168.30.1 255.255.255.0
ip helper-address 192.168.0.11
tagged 47
no untagged 33-48
exit
vlan 40
name "VLAN40"
ip address 192.168.40.1 255.255.255.0
ip helper-address 192.168.0.11
tagged 47
exit
vlan 50
name "router"
untagged 33-48
ip address 192.168.0.10 255.255.255.0
exit
ip route 0.0.0.0 0.0.0.0 192.168.0.9
no stack
password manager
password operator
***********************************************************
├Д┬▒NTERNET ROUTER
you can must be static route command on internet router
for vlans

ip route 192.168.40.0 255.255.255.0 192.168.0.10
ip route 192.168.30.0 255.255.255.0 192.168.0.10

and connect router only vlan 50 untag port for example
interface 33

*****************************************************

*********************************************************
*****set up on access point device
ssid 1 for vlan 40 tagged
ssid 2 for vlan 50 untag
ssid 3 for vlan 1 tagged

and connect interface 47
**********************************************************





cenk

peter_h
Occasional Advisor

Re: Procurve 2650 VLAN and IP Routing help

Hi, can this be done without a separate DHCP server? Meaning, can I use only the router?

cenk sasmaztin
Honored Contributor

Re: Procurve 2650 VLAN and IP Routing help

you can must be create 3 dhcp scobe on router
is this possible for your router ?



cenk

peter_h
Occasional Advisor

Re: Procurve 2650 VLAN and IP Routing help

Hi,

I am not sure what a DHCP "scobe" is. Do you mean a scope?

I have the ability to add multiple DHCP pools.

Are you suggesting I create a separate DHCP pool per vlan?
cenk sasmaztin
Honored Contributor

Re: Procurve 2650 VLAN and IP Routing help

you can must be create multiple dhcp scobe on router for each vlan


dhcp scobe :
http://support.microsoft.com/kb/139904

example configuration cisco router on multiple dhcp scobe


nterface FastEthernet0/0.1
encapsulation dot1Q 1 native
ip address 192.168.30.2 255.255.255.0
!
interface FastEthernet0/0.2
encapsulation dot1Q 40
ip address 192.168.40.2 255.255.255.0
!
interface FastEthernet0/0.3
encapsulation dot1Q 50
ip address 192.168.50.2 255.255.255.0
!

ip dhcp pool vlan1
network 192.168.30.0 255.255.255.0
default-router 192.168.30.1
ip dhcp pool vlan30
network 192.168.40.0 255.255.255.0
default-router 192.168.40.1
ip dhcp pool vlan50
network 192.168.50.0 255.255.255.0
default-router 192.168.50.1
!
cenk