Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.76 KB | None | 0 0
  1. ###############################################################################
  2. # Amino Communications Sample dhcpd.conf file #
  3. # #
  4. # Note, this is not a complete dhcpd.conf file. It just covers the various #
  5. # settings required for Amino AmiNet STB multicast bootstraping #
  6. # it may require some changes for deployment on your network. #
  7. # #
  8. ###############################################################################
  9.  
  10. ###############################################################################
  11. # Misc dhcp options #
  12. ###############################################################################
  13. allow bootp;
  14. ddns-update-style ad-hoc;
  15. filename="AMINET.txt";
  16.  
  17.  
  18.  
  19. ###############################################################################
  20. # Extra Options for AMINO option space (used for multicast) #
  21. ###############################################################################
  22. option space AMINO;
  23. option AMINO.address code 1 = ip-address;
  24. option AMINO.port code 2 = integer 16;
  25. option AMINO.product code 3 = text;
  26. option AMINO.option code 4 = text;
  27. option AMINO.version code 5 = text;
  28. option AMINO.middleware code 6 = ip-address;
  29. option AMINO.mw_port code 7 = integer 16;
  30. option AMINO.homepage code 8 = text;
  31. option AMINO.dindex code 9 = integer 32;
  32. option AMINO.dindex_min code 10 = integer 32;
  33. option AMINO.dindex_page code 11 = text;
  34. option AMINO.STBrc-mcast-address code 12 = ip-address;
  35. option AMINO.STBrc-mcast-port code 13 = integer 16;
  36. option AMINO.STBrc-unicast-port code 14 = integer 16;
  37. option AMINO.local-config code 15 = text;
  38. option AMINO.timezone code 16 = text;
  39. option AMINO.middleware2 code 17 = ip-address;
  40. option AMINO.mw_args code 18 = text;
  41. option AMINO.test_host code 19 = ip-address;
  42. option AMINO.test_dir code 20 = text;
  43. option AMINO.recovery_mode code 21 = integer 8;
  44. option AMINO.mirimon_args code 22 = text;
  45. option AMINO.agama_args code 23 = text;
  46.  
  47. ###############################################################################
  48. # AmiNET103 Configuration Section #
  49. ###############################################################################
  50. # #
  51. # class "AmiNET103 mboot" - boot state when requesting bootstrap image #
  52. # class "AmiNET103 upgrd" - boot state when requesting main upgrade image #
  53. # class "AmiNET103 fisys" - boot state when in normal state #
  54. # #
  55. # The only items that may need changing are as follows: #
  56. # #
  57. # option AMINO.address 225.50.50.50; - the multicast address you are #
  58. # streaming on #
  59. # option AMINO.port 11111; - the port you are streaming on #
  60. # #
  61. # If you change any of these options you must also make sure you make the #
  62. # appropriate changes to /etc/mcastbootd.conf #
  63. # #
  64. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  65. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  66. # multiple match cases may be used. #
  67. # #
  68. ###############################################################################
  69.  
  70.  
  71.  
  72. ###############################################################################
  73. # Class "AmiNET103 mboot" #
  74. # AmiNET103 - response to bootrom request for a bootstrap image #
  75. ###############################################################################
  76. class "AmiNET103 mboot"
  77. {
  78. match if (option vendor-class-identifier="aminoAMINET103mboot<bootrom version>") or
  79. ((substring( option vendor-encapsulated-options, 2, 9)="AMINET103")
  80. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  81.  
  82. # vendor-option-space AMINO;
  83. # option AMINO.address 225.50.50.50;
  84. # option AMINO.port 11111;
  85. }
  86. ###############################################################################
  87.  
  88. ###############################################################################
  89. # Class "AmiNET103 upgrd" #
  90. # AmiNET103 - response to bootstrap request for a main upgrade image #
  91. ###############################################################################
  92. class "AmiNET103 upgrd"
  93. {
  94. match if (option vendor-class-identifier="Aminoaminet103upgrd") or
  95. ((substring( option vendor-encapsulated-options,2,9)="aminet103")
  96. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  97.  
  98. # vendor-option-space AMINO;
  99. # option AMINO.address 225.50.50.51;
  100. # option AMINO.port 11111;
  101. }
  102. ###############################################################################
  103.  
  104. ###############################################################################
  105. # Class "AmiNET103 fisys" #
  106. # AmiNET103 - response when booting in normal boot state #
  107. ###############################################################################
  108. class "AmiNET103 fisys"
  109. {
  110. match if (option vendor-class-identifier="Aminoaminet103fisys") or
  111. ((substring( option vendor-encapsulated-options, 2, 9)="aminet103")
  112. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  113. # vendor-option-space AMINO;
  114. # option AMINO.middleware <mcast address>;
  115. # option AMINO.mw_port <port>;
  116. }
  117.  
  118.  
  119.  
  120.  
  121.  
  122. ###############################################################################
  123. # AmiNET110 Configuration Section #
  124. ###############################################################################
  125. # #
  126. # class "AmiNET110 mboot" - boot state when requesting bootstrap image #
  127. # class "AmiNET110 upgrd" - boot state when requesting main upgrade image #
  128. # class "AmiNET110 fisys" - boot state when in normal state #
  129. # #
  130. # The only items that may need changing are as follows: #
  131. # #
  132. # option AMINO.address 225.50.50.50; - the multicast address you are #
  133. # streaming on #
  134. # option AMINO.port 11111; - the port you are streaming on #
  135. # #
  136. # If you change any of these options you must also make sure you make the #
  137. # appropriate changes to /etc/mcastbootd.conf #
  138. # #
  139. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  140. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  141. # multiple match cases may be used. #
  142. # #
  143. ###############################################################################
  144.  
  145.  
  146.  
  147. ###############################################################################
  148. # Class "AmiNET110 mboot" #
  149. # AmiNET110 - response to bootrom request for a bootstrap image #
  150. ###############################################################################
  151. class "AmiNET110 mboot"
  152. {
  153. match if (option vendor-class-identifier="aminoAMINET11xmboot<bootrom version>") or
  154. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET11x")
  155. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  156.  
  157. # vendor-option-space AMINO;
  158. # option AMINO.address 225.50.50.52;
  159. # option AMINO.port 11111;
  160. }
  161.  
  162. ###############################################################################
  163. # Class "AmiNET110 upgrd" #
  164. # AmiNET110 - response to bootstrap request for a main upgrade image #
  165. ###############################################################################
  166. class "AmiNET110 upgrd"
  167. {
  168. match if (option vendor-class-identifier="Aminoaminet110upgrd") or
  169. ((substring( option vendor-encapsulated-options,2,9)="aminet110")
  170. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  171.  
  172. # vendor-option-space AMINO;
  173. # option AMINO.address 225.50.50.53;
  174. # option AMINO.port 11111;
  175. }
  176.  
  177. ###############################################################################
  178. # Class "AmiNET110 fisys" #
  179. # AmiNET110 - response when booting in normal boot state #
  180. ###############################################################################
  181. class "AmiNET110 fisys"
  182. {
  183. match if (option vendor-class-identifier="Aminoaminet110fisys") or
  184. ((substring( option vendor-encapsulated-options, 2, 9)="aminet110")
  185. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  186. # vendor-option-space AMINO;
  187. # option AMINO.middleware <mcast address>;
  188. # option AMINO.mw_port <port>;
  189. }
  190.  
  191.  
  192.  
  193.  
  194. ###############################################################################
  195. # AmiNET110H Configuration Section #
  196. ###############################################################################
  197. # #
  198. # class "AmiNET110H mboot" - boot state when requesting bootstrap image #
  199. # class "AmiNET110H upgrd" - boot state when requesting main upgrade image #
  200. # class "AmiNET110H fisys" - boot state when in normal state #
  201. # #
  202. # The only items that may need changing are as follows: #
  203. # #
  204. # option AMINO.address 225.50.50.50; - the multicast address you are #
  205. # streaming on #
  206. # option AMINO.port 11111; - the port you are streaming on #
  207. # #
  208. # If you change any of these options you must also make sure you make the #
  209. # appropriate changes to /etc/mcastbootd.conf #
  210. # #
  211. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  212. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  213. # multiple match cases may be used. #
  214. # #
  215. ###############################################################################
  216.  
  217.  
  218.  
  219. ###############################################################################
  220. # Class "AmiNET110H mboot" #
  221. # AmiNET110H - response to bootrom request for a bootstrap image #
  222. ###############################################################################
  223. class "AmiNET110H mboot"
  224. {
  225. match if (option vendor-class-identifier="aminoAMINET110Hmboot<bootrom version>") or
  226. ((substring(option vendor-encapsulated-options, 2, 10)="AMINET110H")
  227. and (substring(option vendor-encapsulated-options, 14, 5)="mboot"));
  228.  
  229. # vendor-option-space AMINO;
  230. # option AMINO.address 225.50.50.52;
  231. # option AMINO.port 11111;
  232. }
  233.  
  234. ###############################################################################
  235. # Class "AmiNET110H upgrd" #
  236. # AmiNET110H - response to bootstrap request for a main upgrade image #
  237. ###############################################################################
  238. class "AmiNET110H upgrd"
  239. {
  240. match if (option vendor-class-identifier="Aminoaminet110hupgrd") or
  241. ((substring( option vendor-encapsulated-options,2,10)="aminet110h")
  242. and (substring( option vendor-encapsulated-options,14,5)="upgrd"));
  243.  
  244. # vendor-option-space AMINO;
  245. # option AMINO.address 225.50.50.53;
  246. # option AMINO.port 11111;
  247. }
  248.  
  249. ###############################################################################
  250. # Class "AmiNET110h fisys" #
  251. # AmiNET110 - response when booting in normal boot state #
  252. ###############################################################################
  253. class "AmiNET110H fisys"
  254. {
  255. match if (option vendor-class-identifier="Aminoaminet110hfisys") or
  256. ((substring( option vendor-encapsulated-options, 2, 10)="aminet110h")
  257. and (substring(option vendor-encapsulated-options, 14, 5)="fisys"));
  258.  
  259. # vendor-option-space AMINO;
  260. # option AMINO.middleware <mcast address>;
  261. # option AMINO.mw_port <port>;
  262. }
  263.  
  264.  
  265.  
  266.  
  267. ###############################################################################
  268. # AmiNET500 Configuration Section #
  269. ###############################################################################
  270. # #
  271. # class "AmiNET500 mboot" - boot state when requesting bootstrap image #
  272. # class "AmiNET500 upgrd" - boot state when requesting main upgrade image #
  273. # class "AmiNET500 fisys" - boot state when in normal state #
  274. # #
  275. # The only items that may need changing are as follows: #
  276. # #
  277. # option AMINO.address 225.50.50.50; - the multicast address you are #
  278. # streaming on #
  279. # option AMINO.port 11111; - the port you are streaming on #
  280. # #
  281. # If you change any of these options you must also make sure you make the #
  282. # appropriate changes to /etc/mcastbootd.conf #
  283. # #
  284. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  285. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  286. # multiple match cases may be used. #
  287. # #
  288. ###############################################################################
  289.  
  290.  
  291.  
  292. ###############################################################################
  293. # Class "AmiNET500 mboot" #
  294. # AmiNET500 - response to bootrom request for a bootstrap image #
  295. ###############################################################################
  296. class "AmiNET500 mboot"
  297. {
  298. match if (option vendor-class-identifier="aminoAMINET5xxmboot<bootrom version>") or
  299. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET5xx")
  300. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  301.  
  302. # vendor-option-space AMINO;
  303. # option AMINO.address 225.50.50.52;
  304. # option AMINO.port 11111;
  305. }
  306.  
  307. ###############################################################################
  308. # Class "AmiNET500 upgrd" #
  309. # AmiNET500 - response to bootstrap request for a main upgrade image #
  310. ###############################################################################
  311. class "AmiNET500 upgrd"
  312. {
  313. match if (option vendor-class-identifier="Aminoaminet500upgrd") or
  314. ((substring( option vendor-encapsulated-options,2,9)="aminet500")
  315. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  316.  
  317. # vendor-option-space AMINO;
  318. # option AMINO.address 225.50.50.53;
  319. # option AMINO.port 11111;
  320. }
  321.  
  322. ###############################################################################
  323. # Class "AmiNET500 fisys" #
  324. # AmiNET500 - response when booting in normal boot state #
  325. ###############################################################################
  326. class "AmiNET500 fisys"
  327. {
  328. match if (option vendor-class-identifier="Aminoaminet500fisys") or
  329. ((substring( option vendor-encapsulated-options, 2, 9)="aminet500")
  330. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  331. # vendor-option-space AMINO;
  332. # option AMINO.middleware <mcast address>;
  333. # option AMINO.mw_port <port>;
  334. }
  335.  
  336.  
  337.  
  338.  
  339. ###############################################################################
  340. # AmiNET124 Configuration Section #
  341. ###############################################################################
  342. # #
  343. # class "AmiNET124 mboot" - boot state when requesting bootstrap image #
  344. # class "AmiNET124 upgrd" - boot state when requesting main upgrade image #
  345. # class "AmiNET124 fisys" - boot state when in normal state #
  346. # #
  347. # The only items that may need changing are as follows: #
  348. # #
  349. # option AMINO.address 225.50.50.50; - the multicast address you are #
  350. # streaming on #
  351. # option AMINO.port 11111; - the port you are streaming on #
  352. # #
  353. # If you change any of these options you must also make sure you make the #
  354. # appropriate changes to /etc/mcastbootd.conf #
  355. # #
  356. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  357. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  358. # multiple match cases may be used. #
  359. # #
  360. ###############################################################################
  361.  
  362.  
  363.  
  364. ###############################################################################
  365. # Class "AmiNET124 mboot" #
  366. # AmiNET124 - response to bootrom request for a bootstrap image #
  367. ###############################################################################
  368. class "AmiNET124 mboot"
  369. {
  370. match if (option vendor-class-identifier="aminoAMINET124mboot<bootrom version>") or
  371. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET124")
  372. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  373.  
  374. # vendor-option-space AMINO;
  375. # option AMINO.address 225.50.50.52;
  376. # option AMINO.port 11111;
  377. }
  378.  
  379. ###############################################################################
  380. # Class "AmiNET124 upgrd" #
  381. # AmiNET124 - response to bootstrap request for a main upgrade image #
  382. ###############################################################################
  383. class "AmiNET124 upgrd"
  384. {
  385. match if (option vendor-class-identifier="Aminoaminet124upgrd") or
  386. ((substring( option vendor-encapsulated-options,2,9)="aminet124")
  387. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  388.  
  389. # vendor-option-space AMINO;
  390. # option AMINO.address 225.50.50.53;
  391. # option AMINO.port 11111;
  392. }
  393.  
  394. ###############################################################################
  395. # Class "AmiNET124 fisys" #
  396. # AmiNET124 - response when booting in normal boot state #
  397. ###############################################################################
  398. class "AmiNET124 fisys"
  399. {
  400. match if (option vendor-class-identifier="Aminoaminet124fisys") or
  401. ((substring( option vendor-encapsulated-options, 2, 9)="aminet124")
  402. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  403. # vendor-option-space AMINO;
  404. # option AMINO.middleware <mcast address>;
  405. # option AMINO.mw_port <port>;
  406. }
  407.  
  408.  
  409.  
  410. ###############################################################################
  411. # AmiNET125 Configuration Section #
  412. ###############################################################################
  413. # #
  414. # class "AmiNET125 mboot" - boot state when requesting bootstrap image #
  415. # class "AmiNET125 upgrd" - boot state when requesting main upgrade image #
  416. # class "AmiNET125 fisys" - boot state when in normal state #
  417. # #
  418. # The only items that may need changing are as follows: #
  419. # #
  420. # option AMINO.address 225.50.50.50; - the multicast address you are #
  421. # streaming on #
  422. # option AMINO.port 11111; - the port you are streaming on #
  423. # #
  424. # If you change any of these options you must also make sure you make the #
  425. # appropriate changes to /etc/mcastbootd.conf #
  426. # #
  427. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  428. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  429. # multiple match cases may be used. #
  430. # #
  431. ###############################################################################
  432.  
  433.  
  434.  
  435. ###############################################################################
  436. # Class "AmiNET125 mboot" #
  437. # AmiNET125 - response to bootrom request for a bootstrap image #
  438. ###############################################################################
  439. class "AmiNET125 mboot"
  440. {
  441. match if (option vendor-class-identifier="aminoAMINET125mboot<bootrom version>") or
  442. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET125")
  443. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  444.  
  445. # vendor-option-space AMINO;
  446. # option AMINO.address <mcast address>;
  447. # option AMINO.port <port>;
  448. }
  449.  
  450. ###############################################################################
  451. # Class "AmiNET125 upgrd" #
  452. # AmiNET125 - response to bootstrap request for a main upgrade image #
  453. ###############################################################################
  454. class "AmiNET125 upgrd"
  455. {
  456. match if (option vendor-class-identifier="Aminoaminet125upgrd") or
  457. ((substring( option vendor-encapsulated-options,2,9)="aminet125")
  458. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  459.  
  460. # vendor-option-space AMINO;
  461. # option AMINO.address <mcast address>;
  462. # option AMINO.port <port>;
  463. }
  464.  
  465. ###############################################################################
  466. # Class "AmiNET125 fisys" #
  467. # AmiNET125 - response when booting in normal boot state #
  468. ###############################################################################
  469. class "AmiNET125 fisys"
  470. {
  471. match if (option vendor-class-identifier="Aminoaminet125fisys") or
  472. ((substring( option vendor-encapsulated-options, 2, 9)="aminet125")
  473. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  474. # vendor-option-space AMINO;
  475. # option AMINO.middleware <mcast address>;
  476. # option AMINO.mw_port <port>;
  477. }
  478.  
  479.  
  480.  
  481.  
  482. ###############################################################################
  483. # Class "AmiNET120 mboot" #
  484. # AmiNET120 - response when bootstrapping #
  485. ###############################################################################
  486. class "AMINET120 mboot"
  487. {
  488. match if (option vendor-class-identifier="aminoAMINET120mboot") or
  489. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET120")
  490. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  491.  
  492. # option log-servers 10.172.2.20;
  493. # vendor-option-space AMINO;
  494. # option AMINO.address 239.255.224.100;
  495. # option AMINO.port 1001;
  496. }
  497.  
  498. ###############################################################################
  499. # Class "AmiNET120 upgrd" #
  500. # AmiNET120 - response when upgrading #
  501. ###############################################################################
  502. class "aminet120 upgrd"
  503. {
  504. match if (option vendor-class-identifier="Aminoaminet120upgrd") or
  505. ((substring( option vendor-encapsulated-options,2,9)="aminet120")
  506. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  507.  
  508. # vendor-option-space AMINO;
  509. # option AMINO.address 239.255.224.101;
  510. # option AMINO.port 1001;
  511. }
  512.  
  513.  
  514.  
  515.  
  516. ###############################################################################
  517. # AmiNET130 Configuration Section #
  518. ###############################################################################
  519. # #
  520. # class "AmiNET130 mboot" - boot state when requesting bootstrap image #
  521. # class "AmiNET130 upgrd" - boot state when requesting main upgrade image #
  522. # class "AmiNET130 fisys" - boot state when in normal state #
  523. # #
  524. # The only items that may need changing are as follows: #
  525. # #
  526. # option AMINO.address 225.50.51.50; - the multicast address you are #
  527. # streaming on #
  528. # option AMINO.port 11111; - the port you are streaming on #
  529. # #
  530. # If you change any of these options you must also make sure you make the #
  531. # appropriate changes to /etc/mcastbootd.conf #
  532. # #
  533. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  534. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  535. # multiple match cases may be used. #
  536. # #
  537. ###############################################################################
  538.  
  539.  
  540.  
  541. ###############################################################################
  542. # Class "AmiNET130 mboot" #
  543. # AmiNET130 - response to bootrom request for a bootstrap image #
  544. ###############################################################################
  545. class "AmiNET130 mboot"
  546. {
  547. match if (option vendor-class-identifier="aminoAMINET130mboot<bootrom version>") or
  548. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET130")
  549. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  550.  
  551. # vendor-option-space AMINO;
  552. # option AMINO.address 225.50.51.52;
  553. # option AMINO.port 11111;
  554. }
  555.  
  556. ###############################################################################
  557. # Class "AmiNET130 upgrd" #
  558. # AmiNET130 - response to bootstrap request for a main upgrade image #
  559. ###############################################################################
  560. class "AmiNET130 upgrd"
  561. {
  562. match if (option vendor-class-identifier="Aminoaminet130upgrd") or
  563. ((substring( option vendor-encapsulated-options,2,9)="aminet130")
  564. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  565.  
  566. # vendor-option-space AMINO;
  567. # option AMINO.address 225.50.51.53;
  568. # option AMINO.port 11111;
  569. }
  570.  
  571. ###############################################################################
  572. # Class "AmiNET130 fisys" #
  573. # AmiNET130 - response when booting in normal boot state #
  574. ###############################################################################
  575. class "AmiNET130 fisys"
  576. {
  577. match if (option vendor-class-identifier="Aminoaminet130fisys") or
  578. ((substring( option vendor-encapsulated-options, 2, 9)="aminet130")
  579. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  580. # vendor-option-space AMINO;
  581. # option AMINO.middleware <mcast address>;
  582. # option AMINO.mw_port <port>;
  583. }
  584.  
  585.  
  586. ###############################################################################
  587. # AmiNET130M Configuration Section #
  588. ###############################################################################
  589. # #
  590. # class "AmiNET130M mboot" - boot state when requesting bootstrap image #
  591. # class "AmiNET130M upgrd" - boot state when requesting main upgrade image #
  592. # class "AmiNET130M fisys" - boot state when in normal state #
  593. # #
  594. # The only items that may need changing are as follows: #
  595. # #
  596. # option AMINO.address 225.50.52.50; - the multicast address you are #
  597. # streaming on #
  598. # option AMINO.port 11111; - the port you are streaming on #
  599. # #
  600. # If you change any of these options you must also make sure you make the #
  601. # appropriate changes to /etc/mcastbootd.conf #
  602. # #
  603. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  604. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  605. # multiple match cases may be used. #
  606. # #
  607. ###############################################################################
  608.  
  609.  
  610.  
  611. ###############################################################################
  612. # Class "AmiNET130M mboot" #
  613. # AmiNET130M - response to bootrom request for a bootstrap image #
  614. ###############################################################################
  615. class "AmiNET130M mboot"
  616. {
  617. match if (option vendor-class-identifier="aminoAMINET130Mmboot<bootrom version>") or
  618. ((substring(option vendor-encapsulated-options, 2, 10)="AMINET130M")
  619. and (substring(option vendor-encapsulated-options, 14, 5)="mboot"));
  620.  
  621. # vendor-option-space AMINO;
  622. # option AMINO.address 225.50.52.52;
  623. # option AMINO.port 11111;
  624. }
  625.  
  626. ###############################################################################
  627. # Class "AmiNET130M upgrd" #
  628. # AmiNET130M - response to bootstrap request for a main upgrade image #
  629. ###############################################################################
  630. class "AmiNET130M upgrd"
  631. {
  632. match if (option vendor-class-identifier="Aminoaminet130mupgrd") or
  633. ((substring( option vendor-encapsulated-options,2,10)="aminet130m")
  634. and (substring( option vendor-encapsulated-options,14,5)="upgrd"));
  635.  
  636. # vendor-option-space AMINO;
  637. # option AMINO.address 225.50.52.53;
  638. # option AMINO.port 11111;
  639. }
  640.  
  641. ###############################################################################
  642. # Class "AmiNET130m fisys" #
  643. # AmiNET130 - response when booting in normal boot state #
  644. ###############################################################################
  645. class "AmiNET130M fisys"
  646. {
  647. match if (option vendor-class-identifier="Aminoaminet130mfisys") or
  648. ((substring( option vendor-encapsulated-options, 2, 10)="aminet130m")
  649. and (substring(option vendor-encapsulated-options, 14, 5)="fisys"));
  650.  
  651. # vendor-option-space AMINO;
  652. # option AMINO.middleware <mcast address>;
  653. # option AMINO.mw_port <port>;
  654. }
  655.  
  656.  
  657. ###############################################################################
  658. # AmiNET130H Configuration Section #
  659. ###############################################################################
  660. # #
  661. # class "AmiNET130H mboot" - boot state when requesting bootstrap image #
  662. # class "AmiNET130H upgrd" - boot state when requesting main upgrade image #
  663. # class "AmiNET130H fisys" - boot state when in normal state #
  664. # #
  665. # The only items that may need changing are as follows: #
  666. # #
  667. # option AMINO.address 225.50.52.50; - the multicast address you are #
  668. # streaming on #
  669. # option AMINO.port 11111; - the port you are streaming on #
  670. # #
  671. # If you change any of these options you must also make sure you make the #
  672. # appropriate changes to /etc/mcastbootd.conf #
  673. # #
  674. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  675. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  676. # multiple match cases may be used. #
  677. # #
  678. ###############################################################################
  679.  
  680.  
  681.  
  682. ###############################################################################
  683. # Class "AmiNET130H mboot" #
  684. # AmiNET130H - response to bootrom request for a bootstrap image #
  685. ###############################################################################
  686. class "AmiNET130H mboot"
  687. {
  688. match if (option vendor-class-identifier="aminoAMINET130Hmboot<bootrom version>") or
  689. ((substring(option vendor-encapsulated-options, 2, 10)="AMINET130H")
  690. and (substring(option vendor-encapsulated-options, 14, 5)="mboot"));
  691.  
  692. vendor-option-space AMINO;
  693. option AMINO.address 225.50.52.52;
  694. option AMINO.port 11111;
  695. }
  696.  
  697. ###############################################################################
  698. # Class "AmiNET130H upgrd" #
  699. # AmiNET130H - response to bootstrap request for a main upgrade image #
  700. ###############################################################################
  701. class "AmiNET130H upgrd"
  702. {
  703. match if (option vendor-class-identifier="Aminoaminet130hupgrd") or
  704. ((substring( option vendor-encapsulated-options,2,10)="aminet130h")
  705. and (substring( option vendor-encapsulated-options,14,5)="upgrd"));
  706.  
  707. vendor-option-space AMINO;
  708. option AMINO.address 225.50.52.53;
  709. option AMINO.port 11111;
  710. }
  711.  
  712. ###############################################################################
  713. # Class "AmiNET130h fisys" #
  714. # AmiNET130 - response when booting in normal boot state #
  715. ###############################################################################
  716. class "AmiNET130H fisys"
  717. {
  718. match if (option vendor-class-identifier="Aminoaminet130hfisys") or
  719. ((substring( option vendor-encapsulated-options, 2, 10)="aminet130h")
  720. and (substring(option vendor-encapsulated-options, 14, 5)="fisys"));
  721.  
  722. vendor-option-space AMINO;
  723. option AMINO.dindex_min 5;
  724. option AMINO.address 225.50.52.53;
  725. option AMINO.port 11111;
  726.  
  727. # option AMINO.middleware <mcast address>;
  728. # option AMINO.mw_port <port>;
  729. }
  730.  
  731.  
  732.  
  733.  
  734.  
  735. ###############################################################################
  736. # AmiNET131 Configuration Section #
  737. ###############################################################################
  738. # #
  739. # class "AmiNET131 mboot" - boot state when requesting bootstrap image #
  740. # class "AmiNET131 upgrd" - boot state when requesting main upgrade image #
  741. # class "AmiNET131 fisys" - boot state when in normal state #
  742. # #
  743. # The only items that may need changing are as follows: #
  744. # #
  745. # option AMINO.address 225.50.53.50; - the multicast address you are #
  746. # streaming on #
  747. # option AMINO.port 11111; - the port you are streaming on #
  748. # #
  749. # If you change any of these options you must also make sure you make the #
  750. # appropriate changes to /etc/mcastbootd.conf #
  751. # #
  752. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  753. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  754. # multiple match cases may be used. #
  755. # #
  756. ###############################################################################
  757.  
  758.  
  759.  
  760. ###############################################################################
  761. # Class "AmiNET131 mboot" #
  762. # AmiNET131 - response to bootrom request for a bootstrap image #
  763. ###############################################################################
  764. class "AmiNET131 mboot"
  765. {
  766. match if (option vendor-class-identifier="aminoAMINET131mboot<bootrom version>") or
  767. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET131")
  768. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  769.  
  770. # vendor-option-space AMINO;
  771. # option AMINO.address 225.50.53.52;
  772. # option AMINO.port 11111;
  773. }
  774.  
  775. ###############################################################################
  776. # Class "AmiNET131 upgrd" #
  777. # AmiNET131 - response to bootstrap request for a main upgrade image #
  778. ###############################################################################
  779. class "AmiNET131 upgrd"
  780. {
  781. match if (option vendor-class-identifier="Aminoaminet131upgrd") or
  782. ((substring( option vendor-encapsulated-options,2,9)="aminet131")
  783. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  784.  
  785. # vendor-option-space AMINO;
  786. # option AMINO.address 225.50.53.53;
  787. # option AMINO.port 11111;
  788. }
  789.  
  790. ###############################################################################
  791. # Class "AmiNET131 fisys" #
  792. # AmiNET131 - response when booting in normal boot state #
  793. ###############################################################################
  794. class "AmiNET131 fisys"
  795. {
  796. match if (option vendor-class-identifier="Aminoaminet131fisys") or
  797. ((substring( option vendor-encapsulated-options, 2, 9)="aminet131")
  798. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  799. # vendor-option-space AMINO;
  800. # option AMINO.middleware <mcast address>;
  801. # option AMINO.mw_port <port>;
  802. }
  803.  
  804. ###############################################################################
  805. # AmiNET132 Configuration Section #
  806. ###############################################################################
  807. # #
  808. # class "AmiNET132 mboot" - boot state when requesting bootstrap image #
  809. # class "AmiNET132 upgrd" - boot state when requesting main upgrade image #
  810. # class "AmiNET132 fisys" - boot state when in normal state #
  811. # #
  812. # The only items that may need changing are as follows: #
  813. # #
  814. # option AMINO.address 225.50.54.50; - the multicast address you are #
  815. # streaming on #
  816. # option AMINO.port 11111; - the port you are streaming on #
  817. # #
  818. # If you change any of these options you must also make sure you make the #
  819. # appropriate changes to /etc/mcastbootd.conf #
  820. # #
  821. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  822. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  823. # multiple match cases may be used. #
  824. # #
  825. ###############################################################################
  826.  
  827.  
  828.  
  829. ###############################################################################
  830. # Class "AmiNET132 mboot" #
  831. # AmiNET132 - response to bootrom request for a bootstrap image #
  832. ###############################################################################
  833. class "AmiNET132 mboot"
  834. {
  835. match if (option vendor-class-identifier="aminoAMINET132mboot<bootrom version>") or
  836. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET132")
  837. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  838.  
  839.  
  840. # vendor-option-space AMINO;
  841.  
  842.  
  843. # option AMINO.address 225.50.54.52;
  844.  
  845. # option AMINO.port 11111;
  846. }
  847.  
  848. ###############################################################################
  849. # Class "AmiNET132 upgrd" #
  850. # AmiNET132 - response to bootstrap request for a main upgrade image #
  851. ###############################################################################
  852. class "AmiNET132 upgrd"
  853. {
  854. match if (option vendor-class-identifier="Aminoaminet132upgrd") or
  855. ((substring( option vendor-encapsulated-options,2,9)="aminet132")
  856. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  857.  
  858.  
  859. # vendor-option-space AMINO;
  860.  
  861.  
  862.  
  863.  
  864. # option AMINO.address 225.50.54.53;
  865.  
  866. # option AMINO.port 11111;
  867. }
  868.  
  869. ###############################################################################
  870. # Class "AmiNET132 fisys" #
  871. # AmiNET132 - response when booting in normal boot state #
  872. ###############################################################################
  873. class "AmiNET132 fisys"
  874. {
  875. match if (option vendor-class-identifier="Aminoaminet132fisys") or
  876. ((substring( option vendor-encapsulated-options, 2, 9)="aminet132")
  877. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  878.  
  879. # vendor-option-space AMINO;
  880.  
  881. # option AMINO.middleware <mcast address>;
  882.  
  883. # option AMINO.mw_port <port>;
  884. }
  885.  
  886. ###############################################################################
  887. # AmiNET532 Configuration Section #
  888. ###############################################################################
  889. # #
  890. # class "AmiNET532 mboot" - boot state when requesting bootstrap image #
  891. # class "AmiNET532 upgrd" - boot state when requesting main upgrade image #
  892. # class "AmiNET532 fisys" - boot state when in normal state #
  893. # #
  894. # The only items that may need changing are as follows: #
  895. # #
  896. # option AMINO.address 225.50.54.50; - the multicast address you are #
  897. # streaming on #
  898. # option AMINO.port 11111; - the port you are streaming on #
  899. # #
  900. # If you change any of these options you must also make sure you make the #
  901. # appropriate changes to /etc/mcastbootd.conf #
  902. # #
  903. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  904. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  905. # multiple match cases may be used. #
  906. # #
  907. ###############################################################################
  908.  
  909.  
  910.  
  911. ###############################################################################
  912. # Class "AmiNET532 mboot" #
  913. # AmiNET532 - response to bootrom request for a bootstrap image #
  914. ###############################################################################
  915. class "AmiNET532 mboot"
  916. {
  917. match if (option vendor-class-identifier="aminoAMINET532mboot<bootrom version>") or
  918. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET532")
  919. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  920.  
  921.  
  922. # vendor-option-space AMINO;
  923.  
  924. # option AMINO.address 225.50.54.52;
  925.  
  926. # option AMINO.port 11111;
  927. }
  928.  
  929. ###############################################################################
  930. # Class "AmiNET532 upgrd" #
  931. # AmiNET532 - response to bootstrap request for a main upgrade image #
  932. ###############################################################################
  933. class "AmiNET532 upgrd"
  934. {
  935. match if (option vendor-class-identifier="Aminoaminet532upgrd") or
  936. ((substring( option vendor-encapsulated-options,2,9)="aminet532")
  937. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  938.  
  939.  
  940. # vendor-option-space AMINO;
  941.  
  942. # option AMINO.address 225.50.54.53;
  943.  
  944. # option AMINO.port 11111;
  945. }
  946.  
  947. ###############################################################################
  948. # Class "AmiNET532 fisys" #
  949. # AmiNET532 - response when booting in normal boot state #
  950. ###############################################################################
  951. class "AmiNET532 fisys"
  952. {
  953. match if (option vendor-class-identifier="Aminoaminet532fisys") or
  954. ((substring( option vendor-encapsulated-options, 2, 9)="aminet532")
  955. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  956.  
  957. # vendor-option-space AMINO;
  958.  
  959. # option AMINO.middleware <mcast address>;
  960.  
  961. # option AMINO.mw_port <port>;
  962. }
  963.  
  964.  
  965.  
  966. ###############################################################################
  967. # AmiNET530 Configuration Section #
  968. ###############################################################################
  969. # #
  970. # class "AmiNET530 mboot" - boot state when requesting bootstrap image #
  971. # class "AmiNET530 upgrd" - boot state when requesting main upgrade image #
  972. # class "AmiNET530 fisys" - boot state when in normal state #
  973. # #
  974. # The only items that may need changing are as follows: #
  975. # #
  976. # option AMINO.address 225.50.54.50; - the multicast address you are #
  977. # streaming on #
  978. # option AMINO.port 11111; - the port you are streaming on #
  979. # #
  980. # If you change any of these options you must also make sure you make the #
  981. # appropriate changes to /etc/mcastbootd.conf #
  982. # #
  983. # In the mboot class, the bootrom version (e.g. 1.32) must be given in the #
  984. # vendor-class-identifier. If multiple bootrom versions need to be supported #
  985. # multiple match cases may be used. #
  986. # #
  987. ###############################################################################
  988.  
  989.  
  990.  
  991. ###############################################################################
  992. # Class "AmiNET530 mboot" #
  993. # AmiNET530 - response to bootrom request for a bootstrap image #
  994. ###############################################################################
  995. class "AmiNET530 mboot"
  996. {
  997. match if (option vendor-class-identifier="aminoAMINET530mboot<bootrom version>") or
  998. ((substring(option vendor-encapsulated-options, 2, 9)="AMINET530")
  999. and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
  1000.  
  1001. # vendor-option-space AMINO;
  1002. # option AMINO.address 225.50.54.52;
  1003. # option AMINO.port 11111;
  1004. }
  1005.  
  1006. ###############################################################################
  1007. # Class "AmiNET530 upgrd" #
  1008. # AmiNET530 - response to bootstrap request for a main upgrade image #
  1009. ###############################################################################
  1010. class "AmiNET530 upgrd"
  1011. {
  1012. match if (option vendor-class-identifier="Aminoaminet530upgrd") or
  1013. ((substring( option vendor-encapsulated-options,2,9)="aminet530")
  1014. and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
  1015.  
  1016. # vendor-option-space AMINO;
  1017. # option AMINO.address 225.50.54.53;
  1018. # option AMINO.port 11111;
  1019. }
  1020.  
  1021. ###############################################################################
  1022. # Class "AmiNET530 fisys" #
  1023. # AmiNET530 - response when booting in normal boot state #
  1024. ###############################################################################
  1025. class "AmiNET530 fisys"
  1026. {
  1027. match if (option vendor-class-identifier="Aminoaminet530fisys") or
  1028. ((substring( option vendor-encapsulated-options, 2, 9)="aminet530")
  1029. and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
  1030. # vendor-option-space AMINO;
  1031. # option AMINO.middleware <mcast address>;
  1032. # option AMINO.mw_port <port>;
  1033. }
  1034.  
  1035.  
  1036.  
  1037. ###############################################################################
  1038. # Subnet Declaration #
  1039. ###############################################################################
  1040. subnet 192.168.1.0 netmask 255.255.255.0
  1041.  
  1042. ###############################################################################
  1043. # Default Gateway - This MUST be set!! #
  1044. ###############################################################################
  1045. option routers 192.168.1.60;
  1046.  
  1047. ###############################################################################
  1048. # Subnet Mask - This MUST be set!! #
  1049. ###############################################################################
  1050. option subnet-mask 255.255.255.0;
  1051.  
  1052. ###############################################################################
  1053. # Domain Name - Optional #
  1054. ###############################################################################
  1055. option domain-name "tecnologiavista.com";
  1056.  
  1057.  
  1058. ###############################################################################
  1059. # DNS Servers - Optional #
  1060. ###############################################################################
  1061. option domain-name-servers 208.67.222.222;
  1062.  
  1063. ###############################################################################
  1064. # NTP Servers - Optional #
  1065. ###############################################################################
  1066. # option ntp-servers europe.pool.ntp.org; # example free NTP service
  1067.  
  1068. ###############################################################################
  1069. # Time Offset - Optional #
  1070. # #
  1071. # This can be in one of three string formats e.g. #
  1072. # UNIX style Region/City - "Europe/London" #
  1073. # Commonly used alias - "GB-Eire" #
  1074. # Fully-specified Posix 1003.1 timezone string - #
  1075. # "GMT0BST-1,M3.5.0/01:00,M10.5.0/02:00" #
  1076. # #
  1077. # TZ info can be found in the following links: #
  1078. # http://www.twinsun.com/tz/tz-link.htm #
  1079. # http://h71000.www7.hp.com/doc/73final/6497/6497pro_007.html #
  1080. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name #
  1081. # #
  1082. ###############################################################################
  1083. option AMINO.timezone "Europe/London";
  1084.  
  1085. ###############################################################################
  1086. # Address Pool - This MUST be set!! #
  1087. # #
  1088. # In this address pool we list the classes which we wish to give addresses to,#
  1089. # unless a device is in this list it will not be given a address! #
  1090. # #
  1091. ###############################################################################
  1092. pool {
  1093.  
  1094. range 192.168.1.50 192.168.1.59;
  1095.  
  1096. # AmiNET103 Member Classes
  1097. #allow members of "AmiNET103 mboot";
  1098. #allow members of "AmiNET103 upgrd";
  1099. #allow members of "AmiNET103 fisys";
  1100.  
  1101. # AmiNET110 Member Classes
  1102. #allow members of "AmiNET110 mboot";
  1103. #allow members of "AmiNET110 upgrd";
  1104. #allow members of "AmiNET110 fisys";
  1105. }
  1106.  
  1107. }
  1108.  
  1109.  
  1110.  
  1111.  
  1112. ###############################################################################
  1113. # End dhcpd.conf #
  1114. ###############################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement