{"id":1070,"date":"2022-01-01T14:17:24","date_gmt":"2022-01-01T22:17:24","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=1070"},"modified":"2024-04-16T09:44:01","modified_gmt":"2024-04-16T17:44:01","slug":"idrac-7-8-lower-fan-noise-on-dell-servers","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/","title":{"rendered":"iDrac 7 and 8: Lower fan noise on Dell Servers"},"content":{"rendered":"<p>I have a Dell R720xd and its default fan curve is&#8230; aggressive. Here is how i found to lower the fan speeds so its not a constant vacuum cleaner in my living room.<\/p>\n<p>&nbsp;<\/p>\n<h2>Set fan speed properties via iDrac<\/h2>\n<p>Enable SSH on iDrac. Connect then connect to it and run:<\/p>\n<pre>racadm set system.thermalsettings.FanSpeedOffset 255\r\nracadm set system.thermalsettings.ThirdPartyPCIFanResponse 0\r\nracadm set system.thermalsettings.ThermalProfile 2<\/pre>\n<p>Note: This sometimes does sometimes not survive an idrac power off or system reboot.<\/p>\n<p>One way to solve this is to have a systemd service that applies this on linux using the <code>racadmin<\/code> command. Create a systemd service file in <code>\/etc\/systemd\/system\/idrac-fan.service<\/code> with the following contents:<\/p>\n<pre>[Unit]\r\nDescription=Fan speeds curve racadm set\r\n#Requires=\r\n#After=\r\n\r\n[Service]\r\nType=oneshot\r\nExecStart=racadm set system.thermalsettings.FanSpeedOffset 255\r\nExecStart=racadm set system.thermalsettings.ThirdPartyPCIFanResponse 0\r\nExecStart=racadm set system.thermalsettings.ThermalProfile 2\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n<p>Do a <code>systemctl daemon-reload<\/code> and then <code>systemctl enable idrac-fan.service<\/code> to have it run at startup. Thanks NeWT for the service file!<\/p>\n<p>On windows you can do something similar with the Dell-iDRACTools for you server. you can get them from dells website. Make a scheduled task that runs at startup with the commands:<\/p>\n<pre>#\/bin\/powershell\r\nracadm set system.thermalsettings.FanSpeedOffset 255\r\nracadm set system.thermalsettings.ThirdPartyPCIFanResponse 0\r\nracadm set system.thermalsettings.ThermalProfile 2<\/pre>\n<p>Note: Make sure to make this file read only after saving it! it also might be a good idea to sign it so nobody tampers with it.<\/p>\n<p>&nbsp;<\/p>\n<p>Lastly, if this system is running as an appliance like VMware ESXi, you can have a vm run a cron job or scheduled task that uses ssh to connect and run a command on idrac at reboot. When you do this, you will either need a key pair generated and added to an idrac&#8217;s user or use an inline password. the base commands would be<\/p>\n<pre>ssh USER@HOST 'racadm set system.thermalsettings.FanSpeedOffset 255'\r\nssh USER@HOST 'racadm set system.thermalsettings.ThirdPartyPCIFanResponse 0'\r\nssh USER@HOST 'racadm set system.thermalsettings.ThermalProfile 2'<\/pre>\n<p>&nbsp;<\/p>\n<h2>Manual fan speed setting<\/h2>\n<p>If you want to go full manual, enable IPMI on iDrac. Then use IPMI tool to set the fan speed manually. I would not recommend this though as it could lead to hardware failure.<\/p>\n<pre class=\" language-bash\"><code class=\" language-bash\">ipmitool -I lanplus -H SERVERS_IP_HERE -U IDRAC_USERNAME -P 'IDRAC_PASSWORD_HERE' raw 0x30 0x30 0x01 0x0<\/code><\/pre>\n<p>Now set the fan speed to what you want. Make sure you have applied new thermal paste on the CPU&#8217;s so they do not overheat. Also make sure to check thermals on nics, PCH, add-in cards, etc as they rely on the chassis fans for cooling.<\/p>\n<pre>#20%\r\nipmitool -I lanplus -H SERVERS_IP_HERE -U IDRAC_USERNAME -P 'IDRAC_PASSWORD_HERE' raw 0x30 0x30 0x02 0xff 0x14\r\n#25%\r\nipmitool -I lanplus -H SERVERS_IP_HERE -U IDRAC_USERNAME -P 'IDRAC_PASSWORD_HERE' raw 0x30 0x30 0x02 0xff 0x19\r\n#30%\r\nipmitool -I lanplus -H SERVERS_IP_HERE -U IDRAC_USERNAME -P 'IDRAC_PASSWORD_HERE' raw 0x30 0x30 0x02 0xff 0x1E\r\n#50%\r\nipmitool -I lanplus -H SERVERS_IP_HERE -U IDRAC_USERNAME -P 'IDRAC_PASSWORD_HERE' raw 0x30 0x30 0x02 0xff 0x32<\/pre>\n<p>&nbsp;<\/p>\n<h2>Note about the <code>ThirdPartyPCIFanResponse 0<\/code><\/h2>\n<p>If you are running pcie cards that do not have active coolers on them, this might not be a good idea to disable. What disabling this does is make it so the system ignore thermal readings from any pcie cards no matter the temperature. Things like network cards, graphics cards, host bus adapters, and RAID cards exhibit weird behavior when the overheat or thermal throttle. I would use a laser thermometer to check the thermals of cards if possible or use something like lm-sensors to check temperatures. My rule is if it gets hotter than 75c it is potentially thermal throttling. Strange behavior includes but is not limited to: packet loss on nics, loss of tcp states, hdd disconnects and smart errors, etc. If you have a gpu installed with no active cooler, do not enable this. To enable fan ramping with pcie cards again run the command <code>racadm set system.thermalsettings.ThirdPartyPCIFanResponse 1<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>There are some other things you could look at in the bios, like disabling turbo boost can lower fan noise as there is not as much heat, setting the power management settings to balanced power or power saving will also lower fan noise at the expense of performance. Things like memory speed dont really effect thermals. Do you have a better solution? Find something that works better? post it so I can add it to the article.<\/p>\n<p>Works with R720 R720xd R520 R620 R730 R730xd R630 R530 R930 server and a Dell Precision R7910. Had to do this for SEO<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have a Dell R720xd and its default fan curve is&#8230; aggressive. Here is how i found to lower the fan speeds so its not a constant vacuum cleaner in my living room. &nbsp; Set fan speed properties via iDrac Enable SSH on iDrac. Connect then connect to it and run: racadm set system.thermalsettings.FanSpeedOffset 255 <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"coauthors":[39],"class_list":["post-1070","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"I have a Dell R720xd and its default fan curve is&#8230; aggressive. Here is how i found to lower the fan speeds so its not a constant vacuum cleaner in my living room. &nbsp; Set fan speed properties via iDrac Enable SSH on iDrac. Connect then connect to it and run: racadm set system.thermalsettings.FanSpeedOffset 255 Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-01T22:17:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-16T17:44:01+00:00\" \/>\n<meta name=\"author\" content=\"Ryan Parker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Parker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/\"},\"author\":{\"name\":\"Ryan Parker\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"headline\":\"iDrac 7 and 8: Lower fan noise on Dell Servers\",\"datePublished\":\"2022-01-01T22:17:24+00:00\",\"dateModified\":\"2024-04-16T17:44:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/\"},\"wordCount\":585,\"commentCount\":14,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/\",\"name\":\"iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"datePublished\":\"2022-01-01T22:17:24+00:00\",\"dateModified\":\"2024-04-16T17:44:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2022\\\/01\\\/grassyloki\\\/idrac-7-8-lower-fan-noise-on-dell-servers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"iDrac 7 and 8: Lower fan noise on Dell Servers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\",\"name\":\"Ryan Parker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"caption\":\"Ryan Parker\"},\"description\":\"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/grassyloki\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/","og_locale":"en_US","og_type":"article","og_title":"iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins","og_description":"I have a Dell R720xd and its default fan curve is&#8230; aggressive. Here is how i found to lower the fan speeds so its not a constant vacuum cleaner in my living room. &nbsp; Set fan speed properties via iDrac Enable SSH on iDrac. Connect then connect to it and run: racadm set system.thermalsettings.FanSpeedOffset 255 Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/","og_site_name":"Angry Sysadmins","article_published_time":"2022-01-01T22:17:24+00:00","article_modified_time":"2024-04-16T17:44:01+00:00","author":"Ryan Parker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ryan Parker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/"},"author":{"name":"Ryan Parker","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"headline":"iDrac 7 and 8: Lower fan noise on Dell Servers","datePublished":"2022-01-01T22:17:24+00:00","dateModified":"2024-04-16T17:44:01+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/"},"wordCount":585,"commentCount":14,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/","name":"iDrac 7 and 8: Lower fan noise on Dell Servers - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"datePublished":"2022-01-01T22:17:24+00:00","dateModified":"2024-04-16T17:44:01+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2022\/01\/grassyloki\/idrac-7-8-lower-fan-noise-on-dell-servers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"iDrac 7 and 8: Lower fan noise on Dell Servers"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199","name":"Ryan Parker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d","url":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","caption":"Ryan Parker"},"description":"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/grassyloki\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/1070","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=1070"}],"version-history":[{"count":6,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/1070\/revisions"}],"predecessor-version":[{"id":1201,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/1070\/revisions\/1201"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=1070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=1070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=1070"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=1070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}