You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

116 lines
4.0 KiB

  1. # Sample udhcpd configuration file (/etc/udhcpd.conf)
  2. # Values shown are defaults
  3. # The start and end of the IP lease block
  4. start 192.168.0.20
  5. end 192.168.0.254
  6. # The interface that udhcpd will use
  7. interface eth0
  8. # The maximum number of leases (includes addresses reserved
  9. # by OFFER's, DECLINE's, and ARP conflicts). Will be corrected
  10. # if it's bigger than IP lease block, but it ok to make it
  11. # smaller than lease block.
  12. #max_leases 254
  13. # The amount of time that an IP will be reserved (leased to nobody)
  14. # if a DHCP decline message is received (seconds)
  15. #decline_time 3600
  16. # The amount of time that an IP will be reserved
  17. # if an ARP conflict occurs (seconds)
  18. #conflict_time 3600
  19. # How long an offered address is reserved (seconds)
  20. #offer_time 60
  21. # If client asks for lease below this value, it will be rounded up
  22. # to this value (seconds)
  23. #min_lease 60
  24. # The location of the pid file
  25. #pidfile /var/run/udhcpd.pid
  26. # The location of the leases file
  27. #lease_file /var/lib/misc/udhcpd.leases
  28. # The time period at which udhcpd will write out leases file.
  29. # If this is 0, udhcpd will never automatically write leases file.
  30. # Specified in seconds.
  31. #auto_time 7200
  32. # Every time udhcpd writes a leases file, the below script will be called
  33. #notify_file # default: no script
  34. #notify_file dumpleases # useful for debugging
  35. # The following are bootp specific options
  36. # next server to use in bootstrap
  37. #siaddr 192.168.0.22 # default: 0.0.0.0 (none)
  38. # tftp server name
  39. #sname zorak # default: none
  40. # tftp file to download (e.g. kernel image)
  41. #boot_file /var/nfs_root # default: none
  42. # Static leases map
  43. #static_lease 00:60:08:11:CE:4E 192.168.0.54
  44. #static_lease 00:60:08:11:CE:3E 192.168.0.44
  45. # The remainder of options are DHCP options and can be specified with the
  46. # keyword 'opt' or 'option'. If an option can take multiple items, such
  47. # as the dns option, they can be listed on the same line, or multiple
  48. # lines.
  49. # Examples:
  50. opt dns 192.168.10.2 192.168.10.10
  51. option subnet 255.255.255.0
  52. opt router 192.168.10.2
  53. opt wins 192.168.10.10
  54. option dns 129.219.13.81 # appended to above DNS servers for a total of 3
  55. option domain local
  56. option lease 864000 # default: 10 days
  57. option msstaticroutes 10.0.0.0/8 10.127.0.1 # single static route
  58. option staticroutes 10.0.0.0/8 10.127.0.1, 10.11.12.0/24 10.11.12.1
  59. # Arbitrary option in hex form:
  60. option 0x08 01020304 # option 8: "cookie server IP addr: 1.2.3.4"
  61. # Currently supported options (for more info, see options.c):
  62. #opt lease NUM
  63. #opt subnet IP
  64. #opt broadcast IP
  65. #opt router IP_LIST
  66. #opt ipttl NUM
  67. #opt mtu NUM
  68. #opt hostname STRING # client's hostname
  69. #opt domain STRING # client's domain suffix
  70. #opt search STRING_LIST # search domains
  71. #opt nisdomain STRING
  72. #opt timezone NUM # (localtime - UTC_time) in seconds. signed
  73. #opt tftp STRING # tftp server name
  74. #opt bootfile STRING # tftp file to download (e.g. kernel image)
  75. #opt bootsize NUM # size of that file
  76. #opt rootpath STRING # (NFS) path to mount as root fs
  77. #opt wpad STRING
  78. #opt serverid IP # default: server's IP
  79. #opt message STRING # error message (udhcpd sends it on success too)
  80. #opt vlanid NUM # 802.1P VLAN ID
  81. #opt vlanpriority NUM # 802.1Q VLAN priority
  82. # Options specifying server(s)
  83. #opt dns IP_LIST
  84. #opt wins IP_LIST
  85. #opt nissrv IP_LIST
  86. #opt ntpsrv IP_LIST
  87. #opt lprsrv IP_LIST
  88. #opt swapsrv IP
  89. # Options specifying routes
  90. #opt routes IP_PAIR_LIST
  91. #opt staticroutes STATIC_ROUTES # RFC 3442 classless static route option
  92. #opt msstaticroutes STATIC_ROUTES # same, using MS option number
  93. # Obsolete options, no longer supported
  94. #opt logsrv IP_LIST # 704/UDP log server (not syslog!)
  95. #opt namesrv IP_LIST # IEN 116 name server, obsolete (August 1979!!!)
  96. #opt cookiesrv IP_LIST # RFC 865 "quote of the day" server, rarely (never?) used
  97. #opt timesrv IP_LIST # RFC 868 time server, rarely (never?) used
  98. # TODO: in development
  99. #opt userclass STRING # RFC 3004. set of LASCII strings. "I am a printer" etc
  100. #opt sipserv STRING LIST # RFC 3361. flag byte, then: 0: domain names, 1: IP addrs