Link to home
Start Free TrialLog in
Avatar of leblanc
leblanc

asked on

dhcp server and hsrp

This is what I have and everything is working as far as ping goes:

core1<---> switch1 as dhcp server
                    |
core2<-------|

I have dhcp pool configure on switch1 with default-router pointed to the HSRP virtual server and it did not work. Any thoughts? Thanks

switch 1:
ip dhcp pool my-network
   network 192.168.110.0 255.255.255.0
   default-router 192.168.110.1

ip default-gateway 192.168.190.1

core1:
interface Vlan110
 ip address 192.168.110.2 255.255.255.0
 standby 1 ip 192.168.110.1
!
interface vlan190
 ip address 192.168.190.2 255.255.255.0
 standby 1 ip 192.168.190.1

core2:
interface Vlan110
 ip address 192.168.110.3 255.255.255.0
 standby 1 ip 192.168.110.1 preempt
!
interface vlan190
 ip address 192.168.190.3 255.255.255.0
 standby 1 ip 192.168.190.1 preempt
ASKER CERTIFIED SOLUTION
Avatar of Netman66
Netman66
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of leblanc
leblanc

ASKER

Not sure why I posted the threads twice. But anyway, I did not think of ip helper. Let me try it later on. Thank you.