Guest User

Untitled

a guest
May 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. # The configuration items here are the most original sources.
  2. # At boot they will overwrite any temporary changes that occur
  3. # elsewhere in the system (e.g /etc/resolve.conf).
  4.  
  5. # Write the changes here if you want to make them permanent.
  6.  
  7.  
  8. # Scripts that use this file:
  9. DEPENDANTS:
  10. - /etc/init.d/biocluster-networking-config
  11. - /etc/init.d/biocluster-fs-config
  12. - /etc/init.d/biocluster-nfs-config
  13.  
  14.  
  15. NAMESERVERS:
  16. search: ucr.edu
  17. ns1: 138.23.226.101
  18. ns2: 138.23.146.213
  19.  
  20.  
  21. # The identifier of the node is the MAC of the left built-in network adaptor
  22. # By "left", I mean the one that is on the left hand side when you are
  23. # looking at the back of the actual server.
  24.  
  25. IDENTIFIERS:
  26. biocluster: 00:30:48:5F:78:56
  27. owl: 00:30:48:5F:78:BA
  28.  
  29.  
  30. NETWORK_INTERFACES:
  31.  
  32. biocluster:
  33.  
  34. head-nodes:
  35. device: eth0
  36. ip: 172.16.2.21
  37. netmask: 255.255.255.252
  38. network: 172.16.2.20
  39. broadcast: 172.16.2.23
  40.  
  41. cluster:
  42. device: eth2
  43. ip: 192.168.2.21
  44. netmask: 255.255.255.0
  45. network: 192.168.2.0
  46. broadcast: 192.168.2.7
  47.  
  48. public:
  49. device: eth1
  50. ip: 138.23.201.83
  51. netmask: 255.255.255.248
  52. gateway: 138.23.201.81
  53. network: 138.23.201.80
  54. broadcast: 138.23.201.87
  55.  
  56.  
  57. owl:
  58.  
  59. head-nodes:
  60. device: eth0
  61. ip: 172.16.2.22
  62. netmask: 255.255.255.252
  63. network: 172.16.2.20
  64. broadcast: 172.16.2.23
  65.  
  66. public:
  67. device: eth1
  68. ip: 138.23.201.84
  69. netmask: 255.255.255.248
  70. gateway: 138.23.201.81
  71. network: 138.23.201.80
  72. broadcast: 138.23.201.87
  73.  
  74. cluster:
  75. device: eth2
  76. ip: 192.168.2.22
  77. netmask: 255.255.255.0
  78. network: 192.168.2.0
  79. broadcast: 192.168.2.7
  80.  
  81.  
  82. # The Infiniband network is configured by /etc/init.d/biocluster-infiniband
  83. # This init script will run after the ethernet network is up.
  84.  
  85.  
  86.  
  87. FILESYSTEM_MOUNTS:
  88.  
  89. same:
  90.  
  91. - mount: /proc
  92. filesystem: proc
  93. type: proc
  94. options: defaults
  95. dump: 0
  96. pass: 0
  97.  
  98. - mount: /
  99. filesystem: /dev/sda2
  100. type: xfs
  101. options: defaults
  102. dump: 0
  103. pass: 1
  104.  
  105. - mount: /boot
  106. filesystem: /dev/sda1
  107. type: ext3
  108. options: defaults
  109. dump: 0
  110. pass: 2
  111.  
  112. - mount: /tmp
  113. filesystem: /dev/sda7
  114. type: xfs
  115. options: defaults
  116. dump: 0
  117. pass: 2
  118.  
  119. - mount: /usr
  120. filesystem: /dev/sda5
  121. type: xfs
  122. options: defaults
  123. dump: 0
  124. pass: 2
  125.  
  126. - mount: /var
  127. filesystem: /dev/sda6
  128. type: xfs
  129. options: defaults
  130. dump: 0
  131. pass: 2
  132.  
  133. - mount: /scratch
  134. filesystem: /dev/sda8
  135. type: xfs
  136. options: defaults
  137. dump: 0
  138. pass: 2
  139.  
  140. - mount: none
  141. filesystem: /dev/sda9
  142. type: swap
  143. options: sw
  144. dump: 0
  145. pass: 0
  146.  
  147. - mount: /media/cdrom0
  148. filesystem: /dev/hdb
  149. type: udf,iso9660
  150. options: user,noauto
  151. dump: 0
  152. pass: 0
  153.  
  154.  
  155. different:
  156.  
  157. biocluster:
  158.  
  159. - mount: /srv/projects
  160. filesystem: LABEL="san/projects"
  161. type: xfs
  162. options: defaults
  163. dump: 0
  164. pass: 2
Add Comment
Please, Sign In to add comment