Link to home
Start Free TrialLog in
Avatar of AXISHK
AXISHK

asked on

Setup TFTP option on Cisco DHCP service

How to add the TFTP option on Cisco DHCP service ?

ip dhcp excluded-address 192.168.1.0 192.168.1.99
!
ip dhcp pool UPC-dhcp
   network 192.168.1.0 255.255.255.0
   dns-server 192.168.150.32 192.168.150.37
   default-router 192.168.1.2

Thanks
Avatar of AXISHK
AXISHK

ASKER

To clarify further, when my network client recieve the DHCP information from Cisco router, they will also get the TFTP information pointing to another server in our netowrk.  Can we configure this ?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of vikrantambhore
vikrantambhore
Flag of India 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
Avatar of Istvan Kalmar
In same cases you need to use standard tftp option:

ip dhcp excluded-address 192.168.1.0 192.168.1.99
!
ip dhcp pool UPC-dhcp
   network 192.168.1.0 255.255.255.0
   dns-server 192.168.150.32 192.168.150.37
   default-router 192.168.1.2
   option 66 ip  XX.XX.XX.XX
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
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 AXISHK

ASKER

tks