Advertisement
telbizov

system-details

Sep 20th, 2014
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.37 KB | None | 0 0
  1. --- loader.conf ---
  2. autoboot_delay="3"
  3. zfs_load="YES"
  4. vfs.root.mountfrom="zfs:zroot/freebsd10"
  5. vfs.zfs.arc_max="500M"
  6. kern.geom.label.gptid.enable="0"
  7. hw.ix.num_queues="12"
  8. hw.ix.txd="4096"
  9. hw.ix.rxd="4096"
  10. hw.ix.rx_process_limit="4096"
  11. hw.ix.tx_process_limit="4096"
  12.  
  13.  
  14.  
  15. --- sysctl.conf ---
  16. # CARP related
  17. net.inet.carp.allow=1
  18. net.inet.carp.preempt=1
  19. net.inet.carp.log=2
  20.  
  21. # Stop sending ICMP redirects
  22. net.inet.ip.redirect=0
  23.  
  24. # Fast Forwarding
  25. net.inet.ip.fastforwarding=1
  26.  
  27. # Enable better lacp/lagg transmit distribution
  28. net.link.lagg.default_use_flowid=0
  29.  
  30.  
  31.  
  32. --- kernel configuration ---
  33. cpu HAMMER
  34.  
  35. makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
  36. makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
  37.  
  38. options SCHED_ULE # ULE scheduler
  39. options PREEMPTION # Enable kernel thread preemption
  40. options INET # InterNETworking
  41. options INET6 # IPv6 communications protocols
  42. options TCP_OFFLOAD # TCP offload
  43. #options SCTP # Stream Control Transmission Protocol
  44. options FFS # Berkeley Fast Filesystem
  45. options SOFTUPDATES # Enable FFS soft updates support
  46. options UFS_ACL # Support for access control lists
  47. options UFS_DIRHASH # Improve performance on big directories
  48. options UFS_GJOURNAL # Enable gjournal-based UFS journaling
  49. options QUOTA # Enable disk quotas for UFS
  50. options MD_ROOT # MD is a potential root device
  51. options NFSCL # New Network Filesystem Client
  52. options NFSD # New Network Filesystem Server
  53. options NFSLOCKD # Network Lock Manager
  54. options NFS_ROOT # NFS usable as /, requires NFSCL
  55. options MSDOSFS # MSDOS Filesystem
  56. options CD9660 # ISO 9660 Filesystem
  57. options PROCFS # Process filesystem (requires PSEUDOFS)
  58. options PSEUDOFS # Pseudo-filesystem framework
  59. options GEOM_PART_GPT # GUID Partition Tables.
  60. options GEOM_RAID # Soft RAID functionality.
  61. options GEOM_LABEL # Provides labelization
  62. options COMPAT_FREEBSD32 # Compatible with i386 binaries
  63. options COMPAT_FREEBSD4 # Compatible with FreeBSD4
  64. options COMPAT_FREEBSD5 # Compatible with FreeBSD5
  65. options COMPAT_FREEBSD6 # Compatible with FreeBSD6
  66. options COMPAT_FREEBSD7 # Compatible with FreeBSD7
  67. options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
  68. options KTRACE # ktrace(1) support
  69. options STACK # stack(9) support
  70. options SYSVSHM # SYSV-style shared memory
  71. options SYSVMSG # SYSV-style message queues
  72. options SYSVSEM # SYSV-style semaphores
  73. options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
  74. options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
  75. options KBD_INSTALL_CDEV # install a CDEV entry in /dev
  76. options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
  77. options AUDIT # Security event auditing
  78. #options CAPABILITY_MODE # Capsicum capability mode
  79. #options CAPABILITIES # Capsicum capabilities
  80. options PROCDESC # Support for process descriptors
  81. options MAC # TrustedBSD MAC Framework
  82. options KDTRACE_FRAME # Ensure frames are compiled in
  83. options KDTRACE_HOOKS # Kernel DTrace hooks
  84. options DDB_CTF # Kernel ELF linker loads CTF data
  85. options INCLUDE_CONFIG_FILE # Include this file in kernel
  86.  
  87. # Debugging support. Always need this:
  88. #options KDB # Enable kernel debugger support.
  89. #options KDB_TRACE # Print a stack trace for a panic.
  90.  
  91. # Make an SMP-capable kernel by default
  92. options SMP # Symmetric MultiProcessor Kernel
  93.  
  94. # CPU frequency control
  95. device cpufreq
  96.  
  97. # Bus support.
  98. device acpi
  99. options ACPI_DMAR
  100. device pci
  101.  
  102. # Floppy drives
  103. device fdc
  104.  
  105. # ATA controllers
  106. device ahci # AHCI-compatible SATA controllers
  107. device ata # Legacy ATA/SATA controllers
  108. options ATA_STATIC_ID # Static device numbering
  109. #device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
  110. #device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
  111.  
  112. # SCSI Controllers
  113. device ahc # AHA2940 and onboard AIC7xxx devices
  114. options AHC_REG_PRETTY_PRINT # Print register bitfields in debug
  115. # output. Adds ~128k to driver.
  116. device ahd # AHA39320/29320 and onboard AIC79xx devices
  117. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug
  118. # output. Adds ~215k to driver.
  119. device esp # AMD Am53C974 (Tekram DC-390(T))
  120. device hptiop # Highpoint RocketRaid 3xxx series
  121. device isp # Qlogic family
  122. #device ispfw # Firmware for QLogic HBAs- normally a module
  123. device mpt # LSI-Logic MPT-Fusion
  124. device mps # LSI-Logic MPT-Fusion 2
  125. device mpr # LSI-Logic MPT-Fusion 3
  126. #device ncr # NCR/Symbios Logic
  127. device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
  128. device trm # Tekram DC395U/UW/F DC315U adapters
  129.  
  130. device adv # Advansys SCSI adapters
  131. device adw # Advansys wide SCSI adapters
  132. device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
  133. device bt # Buslogic/Mylex MultiMaster SCSI adapters
  134. device isci # Intel C600 SAS controller
  135.  
  136. # ATA/SCSI peripherals
  137. device scbus # SCSI bus (required for ATA/SCSI)
  138. device ch # SCSI media changers
  139. device da # Direct Access (disks)
  140. device sa # Sequential Access (tape etc)
  141. device cd # CD
  142. device pass # Passthrough device (direct ATA/SCSI access)
  143. device ses # Enclosure Services (SES and SAF-TE)
  144. #device ctl # CAM Target Layer
  145.  
  146. # RAID controllers interfaced to the SCSI subsystem
  147. device amr # AMI MegaRAID
  148. device arcmsr # Areca SATA II RAID
  149. #XXX it is not 64-bit clean, -scottl
  150. #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
  151. device ciss # Compaq Smart RAID 5*
  152. device dpt # DPT Smartcache III, IV - See NOTES for options
  153. #device hptmv # Highpoint RocketRAID 182x
  154. #device hptnr # Highpoint DC7280, R750
  155. #device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
  156. #device hpt27xx # Highpoint RocketRAID 27xx
  157. device iir # Intel Integrated RAID
  158. #device ips # IBM (Adaptec) ServeRAID
  159. #device mly # Mylex AcceleRAID/eXtremeRAID
  160. device twa # 3ware 9000 series PATA/SATA RAID
  161. device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
  162.  
  163. # RAID controllers
  164. #device aac # Adaptec FSA RAID
  165. #device aacp # SCSI passthrough for aac (requires CAM)
  166. #device aacraid # Adaptec by PMC RAID
  167. #device ida # Compaq Smart RAID
  168. device mfi # LSI MegaRAID SAS
  169. #device mlx # Mylex DAC960 family
  170. device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
  171. #XXX pointer/int warnings
  172. #device pst # Promise Supertrak SX6000
  173. device twe # 3ware ATA RAID
  174.  
  175. # atkbdc0 controls both the keyboard and the PS/2 mouse
  176. device atkbdc # AT keyboard controller
  177. device atkbd # AT keyboard
  178. device psm # PS/2 mouse
  179.  
  180. device kbdmux # keyboard multiplexer
  181.  
  182. device vga # VGA video card driver
  183. options VESA # Add support for VESA BIOS Extensions (VBE)
  184.  
  185. device splash # Splash screen and screen saver support
  186.  
  187. # syscons is the default console driver, resembling an SCO console
  188. device sc
  189. options SC_PIXEL_MODE # add support for the raster text mode
  190.  
  191. # vt is the new video console driver
  192. device vt
  193. device vt_vga
  194. device vt_efifb
  195.  
  196. device agp # support several AGP chipsets
  197.  
  198. # PCCARD (PCMCIA) support
  199. # PCMCIA and cardbus bridge support
  200. #device cbb # cardbus (yenta) bridge
  201. #device pccard # PC Card (16-bit) bus
  202. #device cardbus # CardBus (32-bit) bus
  203.  
  204. # Serial (COM) ports
  205. device uart # Generic UART driver
  206.  
  207. # Parallel port
  208. #device ppc
  209. #device ppbus # Parallel port bus (required)
  210. #device lpt # Printer
  211. #device ppi # Parallel port interface device
  212. #device vpo # Requires scbus and da
  213.  
  214. #device puc # Multi I/O cards and multi-channel UARTs
  215.  
  216. # PCI Ethernet NICs.
  217. device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
  218. device de # DEC/Intel DC21x4x (``Tulip'')
  219. device em # Intel PRO/1000 Gigabit Ethernet Family
  220. device igb # Intel PRO/1000 PCIE Server Gigabit Family
  221. device ixgbe # Intel PRO/10GbE PCIE Ethernet Family
  222. device le # AMD Am7900 LANCE and Am79C9xx PCnet
  223. device ti # Alteon Networks Tigon I/II gigabit Ethernet
  224. device txp # 3Com 3cR990 (``Typhoon'')
  225. device vx # 3Com 3c590, 3c595 (``Vortex'')
  226.  
  227. # PCI Ethernet NICs that use the common MII bus controller code.
  228. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  229. device miibus # MII bus support
  230. device ae # Attansic/Atheros L2 FastEthernet
  231. device age # Attansic/Atheros L1 Gigabit Ethernet
  232. device alc # Atheros AR8131/AR8132 Ethernet
  233. device ale # Atheros AR8121/AR8113/AR8114 Ethernet
  234. device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
  235. device bfe # Broadcom BCM440x 10/100 Ethernet
  236. device bge # Broadcom BCM570xx Gigabit Ethernet
  237. device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
  238. device dc # DEC/Intel 21143 and various workalikes
  239. device et # Agere ET1310 10/100/Gigabit Ethernet
  240. device fxp # Intel EtherExpress PRO/100B (82557, 82558)
  241. device gem # Sun GEM/Sun ERI/Apple GMAC
  242. device hme # Sun HME (Happy Meal Ethernet)
  243. device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
  244. device lge # Level 1 LXT1001 gigabit Ethernet
  245. device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
  246. device nfe # nVidia nForce MCP on-board Ethernet
  247. device nge # NatSemi DP83820 gigabit Ethernet
  248. #device nve # nVidia nForce MCP on-board Ethernet Networking
  249. device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
  250. device re # RealTek 8139C+/8169/8169S/8110S
  251. device rl # RealTek 8129/8139
  252. device sf # Adaptec AIC-6915 (``Starfire'')
  253. device sge # Silicon Integrated Systems SiS190/191
  254. device sis # Silicon Integrated Systems SiS 900/SiS 7016
  255. device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
  256. device ste # Sundance ST201 (D-Link DFE-550TX)
  257. device stge # Sundance/Tamarack TC9021 gigabit Ethernet
  258. device tl # Texas Instruments ThunderLAN
  259. device tx # SMC EtherPower II (83c170 ``EPIC'')
  260. device vge # VIA VT612x gigabit Ethernet
  261. device vr # VIA Rhine, Rhine II
  262. device wb # Winbond W89C840F
  263. device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
  264.  
  265. # ISA Ethernet NICs. pccard NICs included.
  266. #device cs # Crystal Semiconductor CS89x0 NIC
  267. # 'device ed' requires 'device miibus'
  268. #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
  269. #device ex # Intel EtherExpress Pro/10 and Pro/10+
  270. #device ep # Etherlink III based cards
  271. #device fe # Fujitsu MB8696x based cards
  272. #device sn # SMC's 9000 series of Ethernet chips
  273. #device xe # Xircom pccard Ethernet
  274.  
  275. # Wireless NIC cards
  276. #device wlan # 802.11 support
  277. #options IEEE80211_DEBUG # enable debug msgs
  278. #options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
  279. #options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
  280. #device wlan_wep # 802.11 WEP support
  281. #device wlan_ccmp # 802.11 CCMP support
  282. #device wlan_tkip # 802.11 TKIP support
  283. #device wlan_amrr # AMRR transmit rate control algorithm
  284. #device an # Aironet 4500/4800 802.11 wireless NICs.
  285. #device ath # Atheros NICs
  286. #device ath_pci # Atheros pci/cardbus glue
  287. #device ath_hal # pci/cardbus chip support
  288. #options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
  289. #options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
  290. #options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
  291. #device ath_rate_sample # SampleRate tx rate control for ath
  292. ##device bwi # Broadcom BCM430x/BCM431x wireless NICs.
  293. ##device bwn # Broadcom BCM43xx wireless NICs.
  294. #device ipw # Intel 2100 wireless NICs.
  295. #device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs.
  296. #device iwn # Intel 4965/1000/5000/6000 wireless NICs.
  297. #device malo # Marvell Libertas wireless NICs.
  298. #device mwl # Marvell 88W8363 802.11n wireless NICs.
  299. #device ral # Ralink Technology RT2500 wireless NICs.
  300. #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
  301. #device wpi # Intel 3945ABG wireless NICs.
  302.  
  303. # Pseudo devices.
  304. device loop # Network loopback
  305. device random # Entropy device
  306. device padlock_rng # VIA Padlock RNG
  307. device rdrand_rng # Intel Bull Mountain RNG
  308. device ether # Ethernet support
  309. device vlan # 802.1Q VLAN support
  310. device tun # Packet tunnel.
  311. device md # Memory "disks"
  312. device gif # IPv6 and IPv4 tunneling
  313. device faith # IPv6-to-IPv4 relaying (translation)
  314. device firmware # firmware assist module
  315.  
  316. # The `bpf' device enables the Berkeley Packet Filter.
  317. # Be aware of the administrative consequences of enabling this!
  318. # Note that 'bpf' is required for DHCP.
  319. device bpf # Berkeley packet filter
  320.  
  321. # USB support
  322. options USB_DEBUG # enable debug msgs
  323. device uhci # UHCI PCI->USB interface
  324. device ohci # OHCI PCI->USB interface
  325. device ehci # EHCI PCI->USB interface (USB 2.0)
  326. device xhci # XHCI PCI->USB interface (USB 3.0)
  327. device usb # USB Bus (required)
  328. device ukbd # Keyboard
  329. device umass # Disks/Mass storage - Requires scbus and da
  330.  
  331. # Sound support
  332. #device sound # Generic sound driver (required)
  333. #device snd_cmi # CMedia CMI8338/CMI8738
  334. #device snd_csa # Crystal Semiconductor CS461x/428x
  335. #device snd_emu10kx # Creative SoundBlaster Live! and Audigy
  336. #device snd_es137x # Ensoniq AudioPCI ES137x
  337. #device snd_hda # Intel High Definition Audio
  338. #device snd_ich # Intel, NVidia and other ICH AC'97 Audio
  339. #device snd_via8233 # VIA VT8233x Audio
  340.  
  341. # MMC/SD
  342. #device mmc # MMC/SD bus
  343. #device mmcsd # MMC/SD memory card
  344. #device sdhci # Generic PCI SD Host Controller
  345.  
  346. # VirtIO support
  347. #device virtio # Generic VirtIO bus (required)
  348. #device virtio_pci # VirtIO PCI device
  349. #device vtnet # VirtIO Ethernet device
  350. #device virtio_blk # VirtIO Block device
  351. #device virtio_scsi # VirtIO SCSI device
  352. #device virtio_balloon # VirtIO Memory Balloon device
  353.  
  354. # HyperV drivers
  355. #device hyperv # HyperV drivers
  356.  
  357. # Xen HVM Guest Optimizations
  358. # NOTE: XENHVM depends on xenpci. They must be added or removed together.
  359. #options XENHVM # Xen HVM kernel infrastructure
  360. #device xenpci # Xen HVM Hypervisor services driver
  361.  
  362. # VMware support
  363. #device vmx # VMware VMXNET3 Ethernet
  364.  
  365.  
  366.  
  367. # Custom options
  368. device pf
  369. device pflog
  370. device pfsync
  371. device carp
  372.  
  373. device lagg
  374. #device if_bridge
  375.  
  376. #options IPFIREWALL
  377. #options IPFIREWALL_VERBOSE
  378. #options IPFIREWALL_VERBOSE_LIMIT=100
  379. #options IPFIREWALL_DEFAULT_TO_ACCEPT
  380. #options IPFIREWALL_FORWARD
  381. #options IPFIREWALL_NAT
  382. #options LIBALIAS
  383. #options DUMMYNET
  384.  
  385. options ROUTETABLES=3
  386. options LOCK_PROFILING
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement