Advertisement
khalequzzaman17

DHCP Configuration in CPT

May 27th, 2022 (edited)
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Router CLI:
  2.  
  3. $ y
  4.  
  5. $ ENTER
  6.  
  7. $ en
  8.  
  9. $ conf t
  10.  
  11. $ int fa0/0
  12.  
  13. $ ip address 192.168.0.1 255.255.255.0
  14.  
  15. $ no shutdown
  16.  
  17. $ do write memory
  18.  
  19. $ ip dhcp pool net1
  20.  
  21. $ network 192.168.0.1 255.255.255.0
  22.  
  23. $ exit
  24.  
  25. ---
  26.  
  27. $ int fa0/1
  28.  
  29. $ ip address 192.168.1.1 255.255.255.0
  30.  
  31. $ no shutdown
  32.  
  33. $ do write memory
  34.  
  35. $ ip dhcp pool net2
  36.  
  37. $ network 192.168.1.1 255.255.255.0
  38.  
  39. $ exit
  40.  
  41. ---
  42.  
  43. Device * Laptop:
  44.  
  45. Select DHCP Connection
  46.  
  47. for each...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement