{"id":8344,"date":"2024-10-08T01:37:22","date_gmt":"2024-10-08T01:37:22","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=8344"},"modified":"2024-10-08T02:03:47","modified_gmt":"2024-10-08T02:03:47","slug":"network-dns-not-working-due-to-interfacemetric","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/network-dns-not-working-due-to-interfacemetric","title":{"rendered":"Network DNS not working due to InterfaceMetric on Ethernet smaller then VPN"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\">#Get Metric\nGet-NetIPInterface | Select-Object -Property InterfaceAlias, InterfaceMetric | Sort-Object -Property InterfaceMetric\n <\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">#Fix Metrix \nGet-NetIPInterface | Where-Object {$_.InterfaceAlias -like \"Ethernet*\"} | Set-NetIPInterface -InterfaceMetric 35<\/code><\/pre>\n\n\n\n<p><strong>Proactive Remmeidation<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$metrics = Get-NetIPInterface | Where-Object {$_.InterfaceAlias -like \"Ethernet*\"} | Select-Object InterfaceMetric\n\n\nforeach($metric in $metrics)\n {\n\t\n\t\tif( $metric.InterfaceMetric -ne 35){\n\t\tWrite-Host \"Fixing\"\n\t\texit 1\n\t}\n\t \n\t\n}\n\n \n \tWrite-Host \"Nothing\"\n    #Don't do Anything \n    exit 0\n \n\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Proactive Remmeidation<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-8344","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8344","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=8344"}],"version-history":[{"count":2,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8344\/revisions"}],"predecessor-version":[{"id":8347,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/8344\/revisions\/8347"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=8344"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=8344"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=8344"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}