DHCP question

XtendXtend Member Posts: 27 ■□□□□□□□□□
is it possible to configure mutliple DHCP instances on the same router? like in the picture, Server router can configure by DHCP ip's on both clients? also, i was wondering how can u setup rip or any other router protocol (ospf, eigrp) to work between them, in order for ClientA to ping ClientB icon_confused.gif:

captureal.jpg

Comments

  • deth1kdeth1k Member Posts: 312
    Xtend wrote: »
    is it possible to configure mutliple DHCP instances on the same router? like in the picture, Server router can configure by DHCP ip's on both clients? also, i was wondering how can u setup rip or any other router protocol (ospf, eigrp) to work between them, in order for ClientA to ping ClientB icon_confused.gif:

    captureal.jpg


    You sure can setup two DHCP pools for each network you have:

    ip dhcp pool Client_a
    network 192.168.1.0 255.255.255.0
    default-router 192.168.1.x
    !
    ip dhcp pool Client_b
    network 192.168.10.0 255.255.255.0
    default-router 192.168.10.x

    On client ports facing DHCP server:

    ip address dhcp


    No need for routing protocol as you have a router in the middle with two connected networks which it will route by default unless you have an ACL in place to deny traffic between those networks.
  • XtendXtend Member Posts: 27 ■□□□□□□□□□
    ty vm, it helps alot!
Sign In or Register to comment.