Creating an EC2 Instance on AWS to use as a Tor Relay node by five34a4b

View this thread on steempeak.com
· @five34a4b ·
$3.22
Creating an EC2 Instance on AWS to use as a Tor Relay node
<h2>But This One Goes to Eleven</h2>
Last week I documented the steps necessary to get a <a href="https://www.torproject.org/">tor</a> relay node up and running using Windows.  This was mainly because I wanted to give a gentle introduction to anyone interested in cryptography and internet freedom who may not have a large chunk of experience in tech.  I strongly believe anyone can become an expert in any niche given the scale of information currently available on the internet, and I don't think technology is any different.  All it takes is a little bit of inspiration, which I was hoping to provide by taking it slow.  Now we're going to turn up the volume a bit.

<img class="alignnone size-full wp-image-876" src="https://sjkelleyjrblog.files.wordpress.com/2017/08/these-go-to-eleven-2.jpg" alt="these-go-to-eleven-2" width="570" height="309" />
<h2>Introduction</h2>
One large drawback of hosting a relay node on your personal laptop is your connection to the tor network is not persistent.  Every time you close your laptop or shut it off and turn it back on, your tor software loses all the connections that were so helpfully shuttling network traffic for everyone.  This time, we're going to set up a Free Tier AWS EC2 instance in the cloud, and run the relay node software using this server space.  This will ensure our node will forever stay up supporting the tor network and internet freedom!

One thing to note is, once you've got your EC2 instance provisioned, you can put any software you want on it and it will automatically be connected to the rest of the internet!  I use this frequently for a lot of my side projects.

Also, I'm going to assume you're running some flavor of Linux and have some familiarity with the command line moving forward.  If you don't, please don't fret, just google, and as always, don't hesitate to <a href="http://twitter.com/@sjkelleyjr">reach out to me</a> and ask for help!
<h2>Welcome to The Cloud</h2>
First, we'll go to <a href="https://aws.amazon.com/">https://aws.amazon.com/</a> and click "Sign In to Console".  You'll click "I am a new user." after being directed to the next page and entering your email address.  Heore you'll enter your first name, retype your email address, and set your password.  Then click "Create account".  You'll then be redirected to a Contact Information page.  Select the Personal Account radio button.  Fill out the information in the form.  When you're done, click the Agreement check box and then Create Account (if it took you more than two tries to get the captcha don't worry....I did too).  Next AWS asks for your payment information.  I know when I first signed up I was hesitant.  I'm always hestitant about inputting credit card info.  However, I assure you, your account will not be charged throughout this tutorial.  And in fact, I've inadvertently <a href="https://sjkelleyjrblog.wordpress.com/2017/07/12/hacked/">racked up $1100</a> in AWS charges after uploading my IAM keys to github (yes, I'm that stupid) and had them all refunded.  Amazon rocks with refunds.

Next, you'll fill out the captcha and click the button to receive the phone call from Amazon herself.  Type in the pin shown on the screen and end the phone call.  Then click Continue.  We want the Basic support plan, so select that and again click continue.  You'll be taken to the homepage, click Signin to Console.  Enter your email, and password your set earlier in the tutorial.

You now have an AWS account.  Welcome to the cloud.
<h2>AWS</h2>
There are an endless supply of cloud computing resources supplied by Amazon.  We'll only be looking at 1 today, but I recommend you check out as much as you can.  In fact, if you don't have a job, or dislike the one you've got and you learn the ins and outs of AWS, you could easily land yourself a dev-ops role at <a href="https://www.indeed.com/jobs?q=AWS&l=">a great company</a>.
<h2>EC2</h2>
We'll be using the EC2 service provided by AWS, so click that one, under AWS services.  EC2 stands for Elastic Compute Gen 2.  The elastic part means that your computational resources can scale up or down depending on how much you're using.  I believe you can also bid on computing resources, whereby the price fluctuates with demand for Amazon's servers.  Since we'll be doing very minimal computing, this means ours will be free!

Click the blue Launch Instance button.  You'll be presented with various different Operating Systems that you can put on your EC2 instance.  We'll be using Ubuntu, so scroll down until you see Ubuntu Server 16.04 and click select.  Here we'll choose the computing resources that we'd like to use on the server.  Leave it as is, which should be the t2.micro settings, which as Amazon has so kindly informed us is free tier eligible.  Now, click Review and Launch, and finally, Launch.
<h2>Private Key File</h2>
You'll now be presented with a pop up informing you that you need to create a private key file in order to SSH (secure shell) into your Ubuntu server.  As I said, we're turning the volume up for this tutorial.  Here's the general idea of what we're doing.

You have a laptop that you're reading this blog post on.  Somewhere in New York or Oregon, or hell, even Tokyo, Amazon has a bunch of servers it uses for various tasks on its website.  Well it's decided to sell some of those servers to the public to make money when they aren't using them.  You've just been given a server somewhere in the deepest depths of Mordor.<img class="alignnone size-full wp-image-913" src="https://sjkelleyjrblog.files.wordpress.com/2017/08/c-hrivxvoaalxjl.jpg" alt="c-hrivxvoaalxjl" width="1024" height="768" />

Great! we have a server! but how do we access it?  We have to use a networking protocol that allows us to pass commands to the computer through the internet.  However, we don't want anyone to be able to pass commands to our computer, so we need a way of securing it.  Enter: the private key file.  Using roughly the <a href="https://www.youtube.com/watch?v=iQsKdtjwtYI">same technique</a> that keeps your traffic secure while you do your online banking, or the bitcoin blockchain secure, we can keep our commands to the cloud computer safe.
<h2>Bombs Away!</h2>
Select Create a new key pair, then name it whatever you like.  I'm going to name mine "torRelayNode" because that's what I'll be using this EC2 instance for.  Then click "Download Key Pair".  Save this file somewhere safe, if anyone gets ahold of it, they'll have <a href="https://sjkelleyjrblog.wordpress.com/2017/07/12/hacked/">access to your server</a> and can do whatever they'd like with your AWS account.

<img class="alignnone size-full wp-image-1110" src="https://sjkelleyjrblog.files.wordpress.com/2017/08/65eed5fd6adc52ed940f76b91d507693b43aecb09b6133e0b7e3f01947e5144a.jpg" alt="65eed5fd6adc52ed940f76b91d507693b43aecb09b6133e0b7e3f01947e5144a" width="638" height="266" />

Now click Launch Instances, then View Instances.  You should see your new t2.micro instance, with an Instance State of running.

While we're here, we're going to set the port forwarding for the port we'll be using on the tor node.  On the left, you'll see Network & Security, and under that Security Groups, click that.  You should see two security groups, we want the one that belongs to the launch-wizard-1 Group Name.  When you click it you should see it's current network rules.  The only one should be of type SSH, using the TCP protocol, on port 22, from any source (0.0.0.0/0).  Click the Edit button above that, and Add Rule.  From the drop down under Type, choose Custom TCP, the protocol is TCP, the port will be 9001 (as we'll see in the<a href="http://sjkelleyjrblog.wordpress.com/2017/08/13/hosting-a-tor-relay-node-on-an-aws-ec2-instance/"> next tutorial</a>).  Using the Source dropdown, select "Anywhere".  You've now added the firewall rule to allow for incoming connections on the tor network to connect to your node on port 9001.  If at any point you decide to change the tor node's port in the torrc file, don't forget to change it here as well!

You now have your very own cloud computer!
<h2>SSH</h2>
But how do we access it?  We use that private key file we downloaded, and ssh into it. First we need to get the public IP address associated with our EC2 instance.  On the left (where you saw Network & Security) you should see Instances, click Instances under that.  You should see "Public DNS:" below where all of your EC2 instances are listed, and a big long string starting with "ec2-".  That's your shiny new server's address on the internet.  Copy it, we'll need it later.

Next, we'll open up the command line, cd into whatever directory you downloaded or moved the private key file to, then change the execution permissions of that file with chmod:


>chmod 400 <The name of your .pem file, in my case torRelayNode.pem>



and finally:


>ssh -i <The name of your .pem file> ubuntu@ec2-the-ip-address-you-copied-from-before


Note, that you'll need to be in the same directory as your .pem file, or pass the command the path to your .pem file.  If it's your first time logging into your EC2 instance, you'll be asked if you want to trust it.  Type yes and hit enter.  Now you're on your new computer!
<h2>Shutting it Down</h2>
Before I forget, if you do somehow end up getting charged somewhere down the road from AWS, you can kill your instance by going to the Instances page, clicking your instance, selecting the Actions drop down, and changing the Instance State from Start to Stop (and the nuclear option, Terminate).  You'll still have to cough up the charges (they should be small) but this should stop you from getting any more.  Also, on that note, I'd recommend looking into setting a <a href="http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/monitor-charges.html">billing alarm</a> to send you an email if you ever do get charged.  I'll also monitor this EC2 instance for a month and post an update if it does end up charging me, so we can fix it together if it does.  Also, again, don't hesitate to get in <a href="mailto:sjkelleyjr@gmail.com">touch</a> if you have any problems with the charges!
<h2>Next Steps</h2>
In the <a href="http://sjkelleyjrblog.wordpress.com/2017/08/13/hosting-a-tor-relay-node-on-an-aws-ec2-instance/">next blog post</a>, we'll get the tor relay software up and running on your new cloud server, and you can now brag at parties that you're actually protecting revolutionaries in dictatorial countries, just like I do any time someone asks me which VPN to use.  Also, don't forget to buy a <a href="https://www.zazzle.com/tor_project_sticker-217321395720197056">tor sticker</a> to put on your laptop, as you'll have joined the brotherhood after the next tutorial.





Feel free to follow me on any of these other outlets.
https://www.twitter.com/@sjkelleyjr
https://www.instagram.com/sjkelleyjr
https://www.linkedin.com/in/s-jackson-kelley-jr-b63135104/
https://sjkelleyjrblog.wordpress.com/
http://www.sjkelleyjr.com

I'm also available for blockchain consultancy, and freelance blockchain, web, and mobile development.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 4 others
properties (23)
post_id18,093,675
authorfive34a4b
permlinkcreating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node
categoryblog
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://www.torproject.org/", "http://twitter.com/@sjkelleyjr", "https://aws.amazon.com/", "https://sjkelleyjrblog.wordpress.com/2017/07/12/hacked/", "https://www.indeed.com/jobs?q=AWS&l=", "https://www.youtube.com/watch?v=iQsKdtjwtYI", "http://sjkelleyjrblog.wordpress.com/2017/08/13/hosting-a-tor-relay-node-on-an-aws-ec2-instance/", "http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/monitor-charges.html", "mailto:sjkelleyjr@gmail.com", "https://www.zazzle.com/tor_project_sticker-217321395720197056", "https://www.twitter.com/@sjkelleyjr", "https://www.instagram.com/sjkelleyjr", "https://www.linkedin.com/in/s-jackson-kelley-jr-b63135104/", "https://sjkelleyjrblog.wordpress.com/", "http://www.sjkelleyjr.com"], "image": ["https://sjkelleyjrblog.files.wordpress.com/2017/08/these-go-to-eleven-2.jpg"], "tags": ["blog", "technology", "minnowsunite", "howto", "tutorial"]}"
created2017-11-19 04:00:36
last_update2017-11-19 04:00:36
depth0
children17
net_rshares1,436,756,590,238
last_payout2017-11-26 04:00:36
cashout_time1969-12-31 23:59:59
total_payout_value2.699 SBD
curator_payout_value0.521 SBD
pending_payout_value0.000 SBD
promoted0.625 SBD
body_length11,100
author_reputation1,119,151,519,991
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (68)
@five34a4b ·
@originalworks
properties (22)
post_id18,093,759
authorfive34a4b
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t040207712z
categoryblog
json_metadata"{"app": "steemit/0.1", "users": ["originalworks"], "tags": ["blog"]}"
created2017-11-19 04:02:06
last_update2017-11-19 04:02:06
depth1
children1
net_rshares0
last_payout2017-11-26 04:02:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation1,119,151,519,991
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@originalworks ·
originalworks
The @OriginalWorks bot has determined this post by @five34a4b to be original material and upvoted(1.5%) it! 
<center>![ezgif.com-resize.gif](https://steemitimages.com/DQmaBi37A5oTnQ9NBLH8YU4jpvhhmFauyvgg3YRrEJwskM9/ezgif.com-resize.gif)</center> 

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
properties (22)
post_id18,093,827
authororiginalworks
permlinkre-re-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t040207712z-20171119t040315
categoryblog
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-19 04:03:15
last_update2017-11-19 04:03:15
depth2
children0
net_rshares0
last_payout2017-11-26 04:03:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length351
author_reputation79,229,860,066,508
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@booster ·
<p>This post has received a 3.76 % upvote from @booster thanks to: @five34a4b.</p>
properties (22)
post_id18,094,968
authorbooster
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t042542392z
categoryblog
json_metadata"{"app": "drotto/0.0.3rc1", "tags": ["blog"]}"
created2017-11-19 04:26:03
last_update2017-11-19 04:26:03
depth1
children0
net_rshares0
last_payout2017-11-26 04:26:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length83
author_reputation68,830,001,303,403
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@liborum ·
Did not know I could do this for free, time to join the brotherhood
👍  
properties (23)
post_id18,095,651
authorliborum
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t043757590z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-19 04:37:57
last_update2017-11-19 04:37:57
depth1
children0
net_rshares4,513,669,385
last_payout2017-11-26 04:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation49,229,136,963
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mazidoank ·
Nice
properties (22)
post_id18,127,284
authormazidoank
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t131401337z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-19 13:14:06
last_update2017-11-19 13:14:06
depth1
children0
net_rshares0
last_payout2017-11-26 13:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation715,227,895,273
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@happyweblancer ·
![](https://steemitimages.com/DQmS1XSEbzuSzpiNX6bwATBjEHkt4qm9SQjLuuEppZe5Q3M/image.png)
properties (22)
post_id18,157,058
authorhappyweblancer
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171119t192931938z
categoryblog
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmS1XSEbzuSzpiNX6bwATBjEHkt4qm9SQjLuuEppZe5Q3M/image.png"], "tags": ["blog"]}"
created2017-11-19 19:29:33
last_update2017-11-19 19:29:33
depth1
children0
net_rshares0
last_payout2017-11-26 19:29:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length88
author_reputation552,360,001,628
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kaleem345 · (edited)
Good work friend
properties (22)
post_id18,183,312
authorkaleem345
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171120t033113382z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-20 03:34:12
last_update2017-11-20 03:34:24
depth1
children0
net_rshares0
last_payout2017-11-27 03:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation9,847,666,521,101
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@yunus1234 ·
please me vote comment
properties (22)
post_id18,347,889
authoryunus1234
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171121t191909393z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-21 19:19:18
last_update2017-11-21 19:19:18
depth1
children0
net_rshares0
last_payout2017-11-28 19:19:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation143,438,807,721
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@alidervash ·
Thank you for sharing such good post thank you.
properties (22)
post_id18,441,339
authoralidervash
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171122t185123023z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-22 18:51:33
last_update2017-11-22 18:51:33
depth1
children0
net_rshares0
last_payout2017-11-29 18:51:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length47
author_reputation145,285,483,228
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@robin-ho ·
Great discussion about amazon, i'm still new to it , so your articles is quite interesting to me. thanks for this.
properties (22)
post_id18,448,032
authorrobin-ho
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171122t203747335z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-22 20:37:51
last_update2017-11-22 20:37:51
depth1
children1
net_rshares0
last_payout2017-11-29 20:37:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length114
author_reputation57,691,404,381,021
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@five34a4b ·
I'm glad to hear that!
properties (22)
post_id18,712,507
authorfive34a4b
permlinkre-robin-ho-re-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171126t024716224z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-26 02:47:15
last_update2017-11-26 02:47:15
depth2
children0
net_rshares0
last_payout2017-12-03 02:47:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation1,119,151,519,991
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@long888 ·
Still have to re-read it to understand hehe
properties (22)
post_id18,549,807
authorlong888
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171124t014724719z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-24 01:47:30
last_update2017-11-24 01:47:30
depth1
children1
net_rshares0
last_payout2017-12-01 01:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation35,938,136,638,046
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@five34a4b ·
Oh no! I'm sorry to hear that.  That's the last thing I want to hear.  What was unclear? I'd love to clarify.
properties (22)
post_id18,712,484
authorfive34a4b
permlinkre-long888-re-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171126t024646569z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-26 02:46:45
last_update2017-11-26 02:46:45
depth2
children0
net_rshares0
last_payout2017-12-03 02:46:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length109
author_reputation1,119,151,519,991
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kaleem345 ·
Thanks bro
properties (22)
post_id18,549,965
authorkaleem345
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171124t015026145z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-24 01:50:27
last_update2017-11-24 01:50:27
depth1
children0
net_rshares0
last_payout2017-12-01 01:50:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation9,847,666,521,101
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jyoti-thelight ·
good post .....good tutorial..... but is all free???
properties (22)
post_id18,568,803
authorjyoti-thelight
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171124t082010778z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-11-24 08:20:09
last_update2017-11-24 08:20:09
depth1
children0
net_rshares0
last_payout2017-12-01 08:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation645,654,229,034,656
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@marathaking ·
sharing such good post thank you. @five34a4b
properties (22)
post_id19,715,303
authormarathaking
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171207t140457062z
categoryblog
json_metadata"{"app": "steemit/0.1", "users": ["five34a4b"], "tags": ["blog"]}"
created2017-12-07 14:05:00
last_update2017-12-07 14:05:00
depth1
children0
net_rshares0
last_payout2017-12-14 14:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length44
author_reputation4,115,706,952,380
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mrazi ·
Steady,,friend,,vote me mrazi,,i ilke steemit
👍  
properties (23)
post_id21,577,669
authormrazi
permlinkre-five34a4b-creating-an-ec2-instance-on-aws-to-use-as-a-tor-relay-node-20171223t040812146z
categoryblog
json_metadata"{"app": "steemit/0.1", "tags": ["blog"]}"
created2017-12-23 04:08:06
last_update2017-12-23 04:08:06
depth1
children0
net_rshares691,630,222
last_payout2017-12-30 04:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length45
author_reputation84,896,324,612
root_title"Creating an EC2 Instance on AWS to use as a Tor Relay node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)