<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Minemeld with Proxy in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77980#M98014</link>
    <description>&lt;P&gt;Fixed in MineMeld 0.9.10 (just released)&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2016 08:52:48 GMT</pubDate>
    <dc:creator>lmori</dc:creator>
    <dc:date>2016-05-12T08:52:48Z</dc:date>
    <item>
      <title>Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77356#M98003</link>
      <description>&lt;P&gt;Is there any way to perform the minemeld install from behind a proxy? I am deploying a minemeld node in a datacenter where internet access is only available via squid proxy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nasir&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 14:38:03 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77356#M98003</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-02T14:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77360#M98004</link>
      <description>&lt;P&gt;Hi Nasir,&lt;/P&gt;
&lt;P&gt;yes, you can use HTTP_PROXY and HTTPS_PROXY environment variables in &lt;STRONG&gt;/etc/default/minemeld&lt;/STRONG&gt; to specify&amp;nbsp;the proxy address:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;$ sudo su -
# echo "export HTTP_PROXY=http://10.1.1.1:8080" &amp;gt;&amp;gt; /etc/default/minemeld
# echo "export HTTPS_PROXY=http://10.1.1.1:8080" &amp;gt;&amp;gt; /etc/default/minemeld
# service minemeld stop&lt;BR /&gt;&amp;nbsp;* Stopping: minemeld [ OK ]
# service minemeld start&lt;BR /&gt; * Starting: minemeld [ OK ]
# exit
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 15:23:37 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77360#M98004</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2016-05-02T15:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77361#M98005</link>
      <description>&lt;P&gt;Thanks Luigi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, that'll only work after the initial install, correct? When first booting the VM and logging in, I find that it cannot complete the "initalizing minemeld....this could take sever minutes, please wait" step when sitting behind the proxy. If I interrupt that process in order to update the proxy configuration, I find that the minemeld service was never installed. Is there a way to manually install/re-install minemeld if it has been interrupted?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: I also updated /etc/environment with our proxy configuration and found that things like curl and wget work. Does minemeld check /etc/environment as well, or do I need to also set these values under /etc/default/minemeld?&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 15:36:05 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77361#M98005</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-02T15:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77364#M98006</link>
      <description>&lt;P&gt;Hi Nasir,&lt;/P&gt;
&lt;P&gt;you need to export the variables in /etc/default/minemeld, otherwise minemeld service will not use those variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To restart minemeld installation you can try&amp;nbsp;this:&lt;/P&gt;
&lt;PRE&gt;$ sudo su -
# export HTTP_PROXY=&amp;lt;http proxy address here&amp;gt;
# export HTTPS_PROXY=&amp;lt;https proxy address here&amp;gt;
# rm -rf /var/lib/cloud/*
# cloud-init init
# cloud-init modules -m final
# exit
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;There are some packages installed via apt, and I am not 100% sure apt-get will hinerit the environment variables.&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 15:56:29 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77364#M98006</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2016-05-02T15:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77365#M98007</link>
      <description>&lt;P&gt;Or maybe from a different angle... is there a way to preconfigure the proxy settings by modifying/regenerating the ISO that is attached to the VM?&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 15:57:12 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77365#M98007</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-02T15:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77366#M98008</link>
      <description>&lt;P&gt;You're right, there were a few packages that had to be installed. In the end, here was the working order of operations:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Booted Minemeld after deploying OVA from here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://minemeld-dist.s3.amazonaws.com/0_9/minemeld-vm-0.9.0rc2.ova" target="_blank"&gt;https://minemeld-dist.s3.amazonaws.com/0_9/minemeld-vm-0.9.0rc2.ova&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Logged in with default credentials&lt;/P&gt;&lt;P&gt;ubuntu/rsplizardspock&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Interrupted Minemeld Intiatlization:&lt;/P&gt;&lt;P&gt;Ctrl+C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) Updated proxy configuration (maybe overkill)&lt;/P&gt;&lt;P&gt;# printf "export HTTP_PROXY=http://username:password@10.1.1.1:8080\n" &amp;gt;&amp;gt; /etc/default/minemeld&lt;BR /&gt;# printf "export HTTPS_PROXY=http://&lt;SPAN&gt;username:password@&lt;/SPAN&gt;10.1.1.1:8080\n" &amp;gt;&amp;gt; /etc/default/minemeld&lt;/P&gt;&lt;P&gt;# printf "Acquire::http::proxy \"http://&lt;SPAN&gt;username:password@&lt;/SPAN&gt;10.1.1.1:8080/\";\n" &amp;gt;&amp;gt; /etc/apt/apt.conf.d/95proxies&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;# printf "&lt;/SPAN&gt;&lt;SPAN&gt;Acquire::https::proxy \"http://username:password@10.1.1.1:8080/\";\n" &amp;gt;&amp;gt; /etc/apt/apt.conf.d/95proxies&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;# printf "&lt;SPAN&gt;Acquire::ftp::proxy \"http://username:password@10.1.1.1:8080/\";\n" &amp;gt;&amp;gt; /etc/apt/apt.conf.d/95proxies&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;# printf "http_proxy=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "https_proxy=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "ftp_proxy=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "no_proxy=\"localhost,127.0.0.1,localaddress,.localdomain.com\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "HTTP_PROXY=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "HTTPS_PROXY=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "FTP_PROXY=\"http://username:password@10.1.1.1:8080/\"\n" &amp;gt;&amp;gt; /etc/environment&lt;BR /&gt;# printf "NO_PROXY=\"localhost,127.0.0.1,localaddress,.localdomain.com\"\n" &amp;gt;&amp;gt; /etc/environment&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5) Cleared old cloud config:&lt;/P&gt;&lt;P&gt;# rm -rf /var/lib/cloud/*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;6) Installed required packages&lt;/P&gt;&lt;P&gt;&amp;nbsp;# sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install collectd-core nginx rabbitmq-server redis-server librabbitmq1 libsnappy1 libleveldb1 -y&lt;BR /&gt;&amp;nbsp;# apt-get -f install&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;7) Ran cloud-init stuff&lt;/P&gt;&lt;P&gt;&amp;nbsp;# cloud-init init&lt;BR /&gt;&amp;nbsp;# cloud-init modules -m final&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; Ran minemeld auto-update:&lt;/P&gt;&lt;P&gt;&amp;nbsp;# minemeld-auto-update&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;9) Reboot&lt;/P&gt;&lt;P&gt;&amp;nbsp;# reboot now&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 13:58:40 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77366#M98008</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-03T13:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77427#M98010</link>
      <description>&lt;P&gt;Luigi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like Office365 polling may not be using the proxy config from /etc/environment, /etc/default/minemeld:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ubuntu@minemeld:~$ tail -n 40 /opt/minemeld/log/minemeld-engine.log | grep ConnectTimeout&lt;BR /&gt;raise ConnectTimeout(e, request=request)&lt;BR /&gt;ConnectTimeout: HTTPSConnectionPool(host='support.content.office.net', port=443): Max retries exceeded with url: /en-us/static/O365IPAddresses.xml (Caused by ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a887dcd0&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)'))&lt;BR /&gt;2016-05-03T15:48:05 (1412)basepoller._run ERROR: Exception in polling loop for Office365-IPv4-Miner: HTTPSConnectionPool(host='support.content.office.net', port=443): Max retries exceeded with url: /en-us/static/O365IPAddresses.xml (Caused by ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a887d6d0&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)'))&lt;BR /&gt;raise ConnectTimeout(e, request=request)&lt;BR /&gt;ConnectTimeout: HTTPSConnectionPool(host='support.content.office.net', port=443): Max retries exceeded with url: /en-us/static/O365IPAddresses.xml (Caused by ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a887d6d0&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)'))&lt;BR /&gt;2016-05-03T15:48:26 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8879c90&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;BR /&gt;2016-05-03T15:48:29 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8cff190&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;BR /&gt;2016-05-03T15:48:47 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8cffc50&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;BR /&gt;2016-05-03T15:48:49 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8cff9d0&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;BR /&gt;2016-05-03T15:49:07 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8cff110&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;BR /&gt;2016-05-03T15:49:10 (1412)connectionpool.urlopen WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(&amp;lt;requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe4a8cff790&amp;gt;, 'Connection to support.content.office.net timed out. (connect timeout=20)')': /en-us/static/O365IPAddresses.xml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ubuntu@minemeld:~$ &lt;STRONG&gt;cat /etc/default/minemeld&amp;nbsp;(obfuscated)&lt;/STRONG&gt;&lt;BR /&gt;export HTTP_PROXY="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;export HTTPS_PROXY="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ubuntu@minemeld:~$ &lt;STRONG&gt;cat /etc/environment (obfuscated)&lt;/STRONG&gt;&lt;BR /&gt;PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"&lt;BR /&gt;http_proxy="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;https_proxy="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;ftp_proxy="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"&lt;BR /&gt;HTTP_PROXY="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;HTTPS_PROXY="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;FTP_PROXY="http://xxxx:yyyy@proxy.mycustomer:8080/"&lt;BR /&gt;NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any chance there's an additional place we need to add some proxy awareness?&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 15:52:13 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77427#M98010</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-03T15:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77428#M98011</link>
      <description>&lt;P&gt;Hi Nasir,&lt;/P&gt;
&lt;P&gt;please, could you double check with a curl or looking at the proxy logs ?&lt;/P&gt;
&lt;P&gt;Sometime the logs of the HTTP library used by MineMeld are misleading when it comes to HTTPS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Luigi&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 16:06:06 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77428#M98011</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2016-05-03T16:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77433#M98012</link>
      <description>&lt;P&gt;Good&amp;nbsp;idea.&amp;nbsp;Curls and Wget's use the proxy and yield good results. See below (truncated for sanity):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ubuntu@minemeld:~$ curl https://support.office.com/en-us/article/Office-365-URLs-and-IP-address-ranges-8548a211-3fe7-47cb-abb1-355ea5aa88a2

&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en-US" dir="ltr" class="no-js"&amp;gt;
&amp;lt;head&amp;gt;

&amp;lt;title&amp;gt;Office 365 URLs and IP address ranges - Office 365&amp;lt;/title&amp;gt;
&amp;lt;meta http-equiv="content-type" content="text/html; charset=utf-8"/&amp;gt;
&amp;lt;meta http-equiv="content-language" name="Language" content="en-US"/&amp;gt;
&amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"/&amp;gt;
&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0 " /&amp;gt;
&amp;lt;link href="/favicon.ico?b=16069262150" rel="shortcut icon" type="image/x-icon"/&amp;gt;

&amp;lt;script type="text/javascript"&amp;gt;
var ariaToken = '1b3c419f862842df99f49c661508cc63-88b16260-a8e4-4d5d-8055-a5014e02c560-7464';
&amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;P&gt;Note that other miners (like Spamhaus) are working. Does the office-365 miner config require some additional config that is present in the other miners?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Nasir&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 16:29:26 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77433#M98012</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-03T16:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77445#M98013</link>
      <description>&lt;P&gt;Created minemeld-core bug #11 to track this.&lt;/P&gt;
&lt;P&gt;Related to&amp;nbsp;&lt;A href="https://github.com/kennethreitz/requests/issues/2807" target="_blank"&gt;https://github.com/kennethreitz/requests/issues/2807&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Should be fixed in the next minor.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 18:04:58 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77445#M98013</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2016-05-03T18:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77980#M98014</link>
      <description>&lt;P&gt;Fixed in MineMeld 0.9.10 (just released)&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 08:52:48 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/77980#M98014</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2016-05-12T08:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/78000#M98015</link>
      <description>&lt;P&gt;I can confirm that 0.9.10 fixes this issue for us. Now O365 prototypes also use our squid proxy.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 14:23:15 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/78000#M98015</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-05-12T14:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Minemeld with Proxy</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/216885#M98016</link>
      <description>&lt;P&gt;Just a quick note, that this doesn't work on Ubuntu 16.04, as this version uses systemd, and after some small troubleshooting&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/11678"&gt;@lmori&lt;/a&gt;&amp;nbsp;came up with the following solution for the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;@borising ok, now I understand why it's not working: Ubuntu 16.04 LTS uses systemd. To add the environment variables to MineMeld you should do `sudo systemctl edit minemeld.service` and then paste something like


luigimori [10:29 PM]
added this Plain Text snippet: Untitled 
[Service]
Environment=HTTPS_PROXY=&amp;lt;...&amp;gt;
Environment=HTTP_PROXY=&amp;lt;...&amp;gt;

luigimori [10:29 PM]
`sudo systemctl daemon-reload`
`sudo systemctl restart minemeld`&lt;/PRE&gt;
&lt;P&gt;And after I did this, it worked as expected.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jun 2018 17:29:53 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-with-proxy/m-p/216885#M98016</guid>
      <dc:creator>borising</dc:creator>
      <dc:date>2018-06-06T17:29:53Z</dc:date>
    </item>
  </channel>
</rss>

