Switches, Hubs, and Modems
1753278 Members
5672 Online
108792 Solutions
New Discussion юеВ

Scope multiple vlan with MS 2003 HP procurve switch 4204vl

 

Scope multiple vlan with MS 2003 HP procurve switch 4204vl

Hi !

i have 3 vlans on my switch 4204vl; with different subnet. My aim is to pu one dhcp server MS server 2003, to attribute DHCP to all the subnet. the thinh is only one of the 3 vlan atttibute ip adresses to dhcp client. Iphelper is activated on the 3 vlans; scope have bieng well store on the dhcp server. Iam missing sommething don't know what.
this is my switch configuration
<<<<<:::::::::::::::::::::::::::::::::

ProCurve Switch 4204vl(config)# show running-config

Running configuration:

; J8770A Configuration Editor; Created on release #L.10.23

hostname "ProCurve Switch 4204vl"
module 1 type J8768A
module 2 type J9033A
ip default-gateway 172.16.1.254
ip routing
snmp-server community "public" Unrestricted
vlan 1
name "DEFAULT_VLAN"
untagged B6-B24
ip address dhcp-bootp
no untagged A1-A24,B1-B5
exit
vlan 21
name "data"
untagged A1-A12
ip address 172.16.60.1 255.255.255.0
ip helper-address 172.16.1.6
exit
vlan 22
name "voip"
untagged A13-A24
ip address 172.16.61.1 255.255.255.0
ip helper-address 172.16.1.6
exit
vlan 23
name "server"
untagged B1-B5
ip address 172.16.1.1 255.255.255.0
ip helper-address 172.16.1.6
exit
password manager
password operator

:::::::::::::>>>>
there is pdf attached explaining my problem thanks you in advance
4 REPLIES 4
Mark Wibaux
Trusted Contributor

Re: Scope multiple vlan with MS 2003 HP procurve switch 4204vl

Couple of things to remove.
In the VLAN23 config on the switch you don't need the ip helper-address as the DHCP server is located in that subnet.

I would also remove the Option "003 Router" from your "Server Options" in DHCP. You need to put it in each individual DHCP scope as the Default Gateway (router) is going to be different for each subnet.

As you have routing enabled on this switch you will also need to add a specific default route (NOTE: the "ip default-gateway" is not the same thing as a default route. From the manual for the "ip default-gateway" command "Configure the IPv4 default gateway address, which will be used when routing is NOT enabled on the switch.").

To add a default route (I'm basing the ip address on what you have in your DHCP)
ip route 0.0.0.0 0.0.0.0 172.16.1.254
I would also make sure your router knows how to get back to the 172.16.60.x and 61.x networks.

Try these cleanups and see how you go. Generally a basic setup like yours should just work.

Re: Scope multiple vlan with MS 2003 HP procurve switch 4204vl

Hi Mark Wibaux,

And thanks for your quick reply. I did all the cleaning except addind to the router routes

the think is i have a adsl router, where i can put static route. And that same router will be conected on the
internet. And in the future all the vlans will not comunicate to the internet.

<>>
i don't know what to do here ?


thank you
Mark Wibaux
Trusted Contributor

Re: Scope multiple vlan with MS 2003 HP procurve switch 4204vl

There should be some sort of option in the router to add "static routes".
Basically you tell it through these static routes that to get to network 172.16.61.0/24 (255.255.255.0) go via 172.16.1.1.
The same applies for your other network.

Re: Scope multiple vlan with MS 2003 HP procurve switch 4204vl

Hi Mark !
The configuration work fine now i can get ip addresses from the oder vlans.

I have a little question for an oder configuration if i want to use the router on the windows server 2003 i should redirect all trafic to 172.16.1.6 and on The Ms 03 add the route to the network rigth ?

And oder thing i want to make sure that the vlans doesn't communicate with the ACl. can you give me an exemple.

Thank you in advance :)