<?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: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123594#M25513</link>
    <description>&lt;P&gt;Using the universal forwarder which requires a login is not a very scalable in a Configuration Management solution unless you deal with the file locally or use an internal repository. &lt;/P&gt;</description>
    <pubDate>Thu, 30 Jun 2016 20:06:19 GMT</pubDate>
    <dc:creator>einarc</dc:creator>
    <dc:date>2016-06-30T20:06:19Z</dc:date>
    <item>
      <title>How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123589#M25508</link>
      <description>&lt;P&gt;We have recently moved some of our applications to the AWS cloud and now I am being tasked with: "install and configure Splunk fwder on the necessary instances ( i.e. anything writing a log)".  I have found posts to allow for creating a Splunk cluster on AWS, but I believe that this is more than I need.  We already have Splunk licensed on a local machine and I am trying to get data, from the logs generated by the apps running on AWS, aggregated with what is already being monitored.  Thanks for any help.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:06:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123589#M25508</guid>
      <dc:creator>mlinebarger</dc:creator>
      <dc:date>2015-04-06T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123590#M25509</link>
      <description>&lt;P&gt;Installing a forwarder on an EC2 instance is really no different than installing a forwarder anywhere else.  EC2 instances are mostly "just computers" and they run the same OSes as other things.&lt;/P&gt;

&lt;P&gt;Your concerns are probably more around issues like:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;How do I get connectivity from EC2 forwarders to my on-prem indexers?&lt;/LI&gt;
&lt;LI&gt;How do I manage forwarders in EC2 from my on-prem deployment server?&lt;/LI&gt;
&lt;LI&gt;Or do I set up a deployment server in AWS?&lt;/LI&gt;
&lt;LI&gt;Or do I want indexers in the cloud too so I can distributed search between my on-prem and cloud indexers?&lt;/LI&gt;
&lt;LI&gt;Or do I want to just pay for Splunk Cloud?&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;So all of these are fairly broad architectural issues.  Some solutions you may consider and judge the relative merits of for yourself:&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;Solution 1 - use AWS's built-in VPN support to establish an IPSec tunnel from your VPC to your data center.&lt;/P&gt;

&lt;P&gt;In this scenario, you build a tunnel from your VPC in AWS to your data center.  Amazon supplies a tunnel endpoint concentrator at one end, you supply the other (like a Cisco ASA or a Linux box running IPSec software).  You establish the tunnel such that IP routing exists between your AWS IP space and your internal network.  From there, you do what you always have in terms of indexers and deployment server.&lt;/P&gt;

&lt;P&gt;Pros:  &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Simple if you understand IPSec and such&lt;/LI&gt;
&lt;LI&gt;Purely a "networking" solution, easy to pass off to LAN/WAN support folks&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Cons:  &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Amazon VPNs are not free.&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;You may not have expertise to support this.&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;May come with added security risk&lt;/LI&gt;
&lt;/UL&gt;

&lt;HR /&gt;

&lt;P&gt;Solution 2 - you stand up some Splunk services in your DMZ and configure them to act as reverse proxies into your existing Splunk infrastructure&lt;/P&gt;

&lt;P&gt;In this scenario, you take your existing DMZ and put up (say) a deployment server and a couple of heavy forwarders.  These are more-or-less exposed to the Internet (maybe you can firewall filter down to just known AWS IP spaces), and act as reverse proxies for getting data into Splunk.  The AWS forwarders send data to the DMZ heavies, who parse it and send it onward to your indexers.  The DMZ deployment server provides configuration information to your AWS forwarders and you can manage them centrally.&lt;/P&gt;

&lt;P&gt;Pros:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Requires no substantial networking expertise&lt;/LI&gt;
&lt;LI&gt;Purely a "software" solution&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Cons:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;You will need to use SSL with Splunk and do it 100% correctly to not put data at risk.  This probably means using client certs to authenticate your forwarders.   Some degree of added complexity here.&lt;/LI&gt;
&lt;LI&gt;You've added additional Splunk infrastructure to support&lt;/LI&gt;
&lt;LI&gt;May come with added security risk&lt;/LI&gt;
&lt;/UL&gt;

&lt;HR /&gt;

&lt;P&gt;There are other ways besides these two for solving this problem, but these are two of the broadest brush strokes that you could consider.  You'll notice that I put "may come with added security risk" as a con for both of these solutions.  No matter what you do in this case you are adding some risk.  Be aware of that and understand what it is and plan to mitigate it appropriately.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:53:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123590#M25509</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2015-04-06T16:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123591#M25510</link>
      <description>&lt;P&gt;Thanks, dwaddle, for the quick response.  Both solutions are definitely worth considering; the "pros" for both are intriguing, but I can definitely fall into some of the "cons" as well.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2015 17:25:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123591#M25510</guid>
      <dc:creator>mlinebarger</dc:creator>
      <dc:date>2015-04-06T17:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123592#M25511</link>
      <description>&lt;P&gt;I'd suggest at least considering setting up an indexer in EC2.  We don't know how much data you're looking to forward, but sending data out of EC2 can get expensive quickly as your indexing requirements grow.  &lt;/P&gt;

&lt;P&gt;My suggestion would be configuring an indexer in EC2, hopefully in the same AZ as where your data is being generated to avoid inter-AZ data transmission cost.  Then, you can simply point your existing search head at that indexer as part of your distributed search configuration.  (This will require some tweaking of your security group to allow connectivity the proper ports from the appropriate sources, etc.)&lt;/P&gt;

&lt;P&gt;This is also, in my opinion, the most straightforward solution.  You won't have to create any VPNs or manage SSL certs.  All you'll have is another indexer in the environment where the data is being generated.  &lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2015 20:16:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123592#M25511</guid>
      <dc:creator>bill_bartlett</dc:creator>
      <dc:date>2015-04-06T20:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123593#M25512</link>
      <description>&lt;P&gt;Thanks, Bill... as it turns out, I was wrong about a local instance of Splunk.  Instead, our indexers are on "splunkcloud.com" and the solution was rather simple.  I was able to install the universal forwarder in my EC2 instance and add an outputs.conf file (with the preconfigured "server=" setting pointing to our indexers) to the "/local" folder under $SPLUNK_HOME.  Worked like a charm (with a few other minor tweaks, of course).&lt;BR /&gt;
Thanks to all for the suggestions; I know that they will help in the future as we grow our cloud presence.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2015 17:45:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123593#M25512</guid>
      <dc:creator>mlinebarger</dc:creator>
      <dc:date>2015-04-09T17:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123594#M25513</link>
      <description>&lt;P&gt;Using the universal forwarder which requires a login is not a very scalable in a Configuration Management solution unless you deal with the file locally or use an internal repository. &lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 20:06:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/123594#M25513</guid>
      <dc:creator>einarc</dc:creator>
      <dc:date>2016-06-30T20:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/679165#M113495</link>
      <description>&lt;P&gt;What are the inbound and outbound rules that need to be set for the EC2 (with the forwarder) and the splunk server/indexer (to receive data from forwarder)?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 16:11:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/679165#M113495</guid>
      <dc:creator>drewh1999</dc:creator>
      <dc:date>2024-02-29T16:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I install a forwarder on an AWS:EC2 instance to send data to a local Server?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/679184#M113498</link>
      <description>Please create a new question instead of continue with several years old accepted answer.</description>
      <pubDate>Thu, 29 Feb 2024 17:30:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-install-a-forwarder-on-an-AWS-EC2-instance-to-send/m-p/679184#M113498</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-02-29T17:30:38Z</dc:date>
    </item>
  </channel>
</rss>

