create account

[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA by robrigo

View this thread on: hive.blogpeakd.comecency.com
· @robrigo · (edited)
$2,702.03
[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA
<center><img src="https://duo.com/assets/img/blog/security-evolution-week-9.png" /></center>
[My last post](https://steemit.com/steemit/@robrigo/security-how-to-how-anyone-can-avoid-losing-access-to-their-steemit-account-with-lastpass-and-duo) explained how to use Duo in order to protect your LastPass account. Now I will provide a quick run down on how to protect your Unix-variant servers with Duo out-of-band authentication. Leveraging Duo Push with autopush enabled, you can set up your 2FA experience to be less disruptive to your workflow, because it doesn't require the use of one-time passcodes.

<h4>When you are running a production critical system, maintaining a high degree of security and uptime is a necessity. </h4>

Anyone operating a [steemd](https://github.com/steemit/steem) for the purposes of running a witness, seed node, miner, API server, etc. should ensure this additional factor of authentication is enabled if they haven't already. This provides an additional layer of security against attackers looking to exfiltrate your private keys or disrupt your service. 

<h1><em>DISCLAIMER:</em> Please be careful not to lock yourself out of your server. In fact, I would HIGHLY suggest that you make a backup image of your server before trying this. A lot of VPS providers have functionality built into their admin panels to do this.</h1>

<h2><center>Step #1: Create a Duo Unix Application</center></h2>
<center><img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at1.57.43PMc3bd1.png" /></center>
<ol>
<li><h3><a href="https://admin.duosecurity.com/login?next=%2F">Login</a> to your Duo account, or <a href="https://signup.duo.com/">sign-up</a> for a free account if you haven't already.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.08.04PM91c4d.png" /></center>
<li><h3>Go to the Applications page and click <b>Protect an application</b>.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/search-for-unix7c292.png" /></center>
<li><h3>Search for Unix application and protect it.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/unix-created21bcd.png" /></center>
<li><h3>You'll see the integration keys and other information that will be needed later.</h3></li>
</ol>

<h2><center>Step #2: Install Duo Unix Software</center></h2>

<ol>
<center><img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.03.34PMdddc4.png" /></center>
<li><h3>Login to your server via ssh.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/install-duo-unix-deps8d669.png" /></center>
<li><h3>Install Duo Unix dependencies. The commands pictured above are for Ubuntu; if you want to see what packages are required for other distros, look <a href="https://duo.com/docs/duounix#installation">here</a>.</h3></li>
<li><h3>You can install Duo Unix via a package manager on Ubuntu, RHEL, CentOS, or Debian by following the instructions for your target distro <a href="https://duo.com/docs/duounix#linux-distribution-packages">here</a>. Otherwise if you'd like to build from source, pull the source from Duo:</h3></li>

>wget https://dl.duosecurity.com/duo_unix-latest.tar.gz
>tar zxf duo_unix-latest.tar.gz
>cd duo_unix-1.9.18 
</ol>

<h2><center>Step #3: Build Duo Unix Software (optional)</center></h2>
<ol>
<li><h3>Complete this step if you pulled the source code in the previous step, and didn't use a package manager to install Duo Unix.</h3></li>
<li><h3>Run the following command in the duo_unix directory, to make Duo Unix:</h3></li>

>./configure --with-pam --prefix=/usr && make && sudo make install
</ol>

<h2><center>Step #4: Configure Duo Unix Software</center></h2>
<ol>
<center><img src="https://www.steemimg.com/images/2016/07/29/configure-duo-unixaeb1b.png" /></center>
<li><h3>Edit the configuration file located at <em>/etc/duo/pam_duo.conf</em> and add the keys from the application you created in the Duo Admin Panel. Also uncomment <em>pushinfo</em>, and set <em>autopush = yes</em> and <em>prompts = 1</em>. Note: the keys above are invalid. Never expose your actual secret key to anyone.</h3></li>
<li><h3>You can reference all of the config options <a href="https://duo.com/docs/duounix#duo-configuration-options">here</a>.</h3></li>
</ol>

<h2><center>Step #5: Set up Duo to work with ssh public key authentication (optional)</center></h2>
<ol>
<li><h3>If you're using ssh to authenticate to your servers, you'll want to take the following steps. Please note, it is always a best practice when configuring ssh to have a separate ssh connection to the server open until you verify this is working, so you don't accidentally get locked out.</h3></li>
<li><h3>Make sure the following options are configured in your <em>/etc/ssh/sshd_config</em> file. If you're using password authentication currently, you'll need to add a public key generated on your local computer to your user's authorized_keys file at <em>~/.ssh/authorized_keys</em> BEFORE turning off PasswordAuthentication.</h3></li>

>PubkeyAuthentication yes
>PasswordAuthentication no
>AuthenticationMethods publickey,keyboard-interactive
>UsePAM yes
>ChallengeResponseAuthentication yes
>UseDNS no

<center><img src="https://www.steemimg.com/images/2016/07/29/restart-ssha65e8.png" /></center>
<h3><center>After the sshd configurations are added, restart sshd.</center></h3>
</ol>
<center><h2>Step #6: Configure PAM with Duo</h2></center>
<ol>
<center><img src="https://www.steemimg.com/images/2016/07/29/open-pam-config5edce.png" /></center>
<li><h3>If you're using ssh, edit the PAM configuration located at <em>/etc/pam.d/sshd</em> to use duo_pam.so, as seen above. Distros other than Ubuntu 16.04 should refer to <a href="https://duo.com/docs/duounix#PAM-examples">this documentation</a> to determine the location of the pam configurations and .so files. If the <em>pam_duo.so</em> file is not located in <em>/lib/security</em>, you'll also need to specify the full path to the file in the PAM configuration file. If you're using passwords, you'll want to edit <em>/etc/pam.d/common-auth</em> instead to configure system-wide authentication. See the commands below for that. Notice that the default configuration (top line) is commented out.</h3></li>

>\# auth  [success=1 default=ignore] pam_unix.so nullok_secure
>auth  requisite pam_unix.so nullok_secure
>auth  [success=1 default=ignore] pam_duo.so
>auth  requisite pam_deny.so
>auth  required pam_permit.so
</ol>
<center><h2>Step #7: Enroll a 2FA Device</h2></center>
<ol>
<center><img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.59.17PM92203.png" /></center>
<li><h3>Now, it's time to try it out. Open a separate terminal instance and try to log into your server the way you typically do. You should be prompted to enroll a device in Duo.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/enroll-confetti85ae6.gif" /></center>
<li><h3>Follow the link, and enroll your Android or iOS device into Duo. You'll need to install the Duo Mobile app from your respective platform's official app store if you do not already have it. Otherwise, if you don't have a smartphone, make sure autopush isn't configured, so that you can use the VoIP or passcode flow instead.</h3></li>
<center><img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at3.10.09PM75398.png" /></center>
<li><h3>Now try it again, this time you should have no problem accessing the service after accepting the Duo Push notification sent to your phone. Make sure you confirm this is working before you drop your remote shell, so you aren't locked out of your server!</h3></li>
</ol>

<h3>Thank you for reading, I hope it was useful! Please leave feedback and don't hesitate to ask me any questions you have in the comment section if you run into a problem.</h3>

<h3>Until next time,</h3>
<img src="https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at11.37.09AMa2d22.png" />

<p>#security #steemit #mining #witnesses #how-to #duo #unix #2FA #linux #ubuntu #debian #centos #sysadmin</p>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 149 others
properties (23)
authorrobrigo
permlinksecurity-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa
categorysteem
json_metadata{"tags":["steem","mining","security","witnesses","how-to"],"image":["https://duo.com/assets/img/blog/security-evolution-week-9.png","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at1.57.43PMc3bd1.png","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.08.04PM91c4d.png","https://www.steemimg.com/images/2016/07/29/search-for-unix7c292.png","https://www.steemimg.com/images/2016/07/29/unix-created21bcd.png","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.03.34PMdddc4.png","https://www.steemimg.com/images/2016/07/29/install-duo-unix-deps8d669.png","https://www.steemimg.com/images/2016/07/29/configure-duo-unixaeb1b.png","https://www.steemimg.com/images/2016/07/29/restart-ssha65e8.png","https://www.steemimg.com/images/2016/07/29/open-pam-config5edce.png","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at2.59.17PM92203.png","https://www.steemimg.com/images/2016/07/29/enroll-confetti85ae6.gif","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at3.10.09PM75398.png","https://www.steemimg.com/images/2016/07/29/ScreenShot2016-07-29at11.37.09AMa2d22.png"],"links":["https://steemit.com/steemit/@robrigo/security-how-to-how-anyone-can-avoid-losing-access-to-their-steemit-account-with-lastpass-and-duo","https://github.com/steemit/steem","https://admin.duosecurity.com/login?next=%2F","https://signup.duo.com/","https://duo.com/docs/duounix#installation","https://duo.com/docs/duounix#linux-distribution-packages","https://dl.duosecurity.com/duo_unix-latest.tar.gz","https://duo.com/docs/duounix#duo-configuration-options","https://duo.com/docs/duounix#PAM-examples"]}
created2016-07-29 19:11:09
last_update2016-07-29 22:20:54
depth0
children24
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value2,296.637 HBD
curator_payout_value405.391 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,121
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,060
net_rshares76,808,859,133,827
author_curate_reward""
vote details (213)
@eric-boucher ·
$0.15
Very technical works here, but understandable, especially with the help of your graphics. Thank you for your work and dedication to the Steem community, namaste   :)
πŸ‘  , ,
properties (23)
authoreric-boucher
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213442022z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 21:34:42
last_update2016-07-29 21:34:42
depth1
children2
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.145 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation68,503,601,066,539
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,079
net_rshares82,608,783,688
author_curate_reward""
vote details (3)
@robrigo ·
$0.09
You're welcome, Eric.  The way I see it, we've all got something useful to contribute!
πŸ‘  
properties (23)
authorrobrigo
permlinkre-eric-boucher-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213702432z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 21:37:03
last_update2016-07-29 21:37:03
depth2
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.087 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,120
net_rshares51,071,504,420
author_curate_reward""
vote details (1)
@eric-boucher ·
$0.13
We do, all for one and one for all!   Namaste   :)
πŸ‘  ,
properties (23)
authoreric-boucher
permlinkre-robrigo-re-eric-boucher-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t214151695z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 21:41:51
last_update2016-07-29 21:41:51
depth3
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.133 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation68,503,601,066,539
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,197
net_rshares76,362,943,358
author_curate_reward""
vote details (2)
@faddat ·
$0.04
I just wanted to mention how good and I thought that this post once. I think that there's a lot of room for a lot more tutorials on steemit and that this is a great example of a tutorial monetized using steemit system.
πŸ‘  
properties (23)
authorfaddat
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t215341860z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 21:53:45
last_update2016-07-29 21:53:45
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation36,581,868,473,026
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,376
net_rshares25,291,438,938
author_curate_reward""
vote details (1)
@robrigo · (edited)
Thank you @faddat. I completely agree!
properties (22)
authorrobrigo
permlinkre-faddat-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t215445475z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 21:54:45
last_update2016-07-29 21:54:51
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,394
net_rshares0
@feedthemachine ·
Fantastic!  Very well written.  What are your thoughts on a hardware key like the Yubikey? to go along with the securing. ![image](https://www.yubico.com/wp-content/uploads/2015/12/YubiKey-4-1000.png)
πŸ‘  
properties (23)
authorfeedthemachine
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160731t002628282z
categorysteem
json_metadata{"tags":["steem"],"image":["https://www.yubico.com/wp-content/uploads/2015/12/YubiKey-4-1000.png"]}
created2016-07-31 00:26:24
last_update2016-07-31 00:26:24
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation164,191,748,705
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id501,880
net_rshares28,151,069,917
author_curate_reward""
vote details (1)
@robrigo ·
Yubikeys are awesome, use them if you have them! Now you've inspired me to talk about U2F tokens in a future post. :)
properties (22)
authorrobrigo
permlinkre-feedthemachine-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160731t005330763z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-31 00:53:30
last_update2016-07-31 00:53:30
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id502,381
net_rshares0
@james-show ·
$0.11
A good post!

Here are some of mine I consider not bad also...
[Beyond the STEEM Whitepaper –2. Where the money come from; New Users DO NOT Increase the Value of Steem (yet)]( https://steemit.com/steemit/@james-show/beyond-the-steem-whitepaper-2-where-the-money-come-from-new-users-do-not-increase-the-value-of-steem-yet)
[Beyond the STEEM Whitepaper – 1. Blogging and Curation Rewards Fund; Steem Backed Dollars Creation](https://steemit.com/steemit/@james-show/beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation)
[Beyond Trading – The Medium Term Fundamentals. 1. – 7.29.2016]( https://steemit.com/steemit/@james-show/beyond-trading-the-medium-term-fundamentals-1-7-29-2016)
Or
[Steem – The Solution to Curation Rewards]( https://steemit.com/steem/@james-show/steem-the-solution-to-curation-rewards)
πŸ‘  ,
properties (23)
authorjames-show
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t233504232z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/steemit/@james-show/beyond-the-steem-whitepaper-2-where-the-money-come-from-new-users-do-not-increase-the-value-of-steem-yet"]}
created2016-07-29 23:35:12
last_update2016-07-29 23:35:12
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.114 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length845
author_reputation5,698,866,469,447
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id476,906
net_rshares64,876,905,306
author_curate_reward""
vote details (2)
@robrigo ·
Thanks, they look interesting!
properties (22)
authorrobrigo
permlinkre-james-show-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t014759976z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-30 01:48:00
last_update2016-07-30 01:48:00
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id478,487
net_rshares0
@knozaki2015 ·
$0.09
Great post ! i hope there will be more security tutorials, as this is really valuable content !
πŸ‘  ,
properties (23)
authorknozaki2015
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t191956669z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:20:03
last_update2016-07-29 19:20:03
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.087 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation1,102,353,973,346,032
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,238
net_rshares51,145,105,084
author_curate_reward""
vote details (2)
@robrigo ·
Thanks for the compliment. I'm just getting started!
properties (22)
authorrobrigo
permlinkre-knozaki2015-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t192238213z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:22:39
last_update2016-07-29 19:22:39
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,305
net_rshares0
@meteor78 ·
$0.09
πŸ‘nice tutorial..., very interested
πŸ‘  ,
properties (23)
authormeteor78
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t193525041z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:35:33
last_update2016-07-29 19:35:33
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation184,361,553,890
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,552
net_rshares49,776,537,231
author_curate_reward""
vote details (2)
@robrigo ·
Glad you like it!
properties (22)
authorrobrigo
permlinkre-meteor78-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t193634786z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:36:33
last_update2016-07-29 19:36:33
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,582
net_rshares0
@papa-pepper ·
$0.04
Nice job on these last two @robrigo ! I can get you guys those free seeds from my [giveaway](https://steemit.com/gardening/@papa-pepper/free-first-ever-steemit-seed-giveaway-garden-plant-spotlight-1-chinese-red-noodle-bean) if you or your roommate can get me a shipping address. Thanks for the support and keep up the good work!
πŸ‘  
properties (23)
authorpapa-pepper
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213940825z
categorysteem
json_metadata{"tags":["steem"],"users":["robrigo"],"links":["https://steemit.com/gardening/@papa-pepper/free-first-ever-steemit-seed-giveaway-garden-plant-spotlight-1-chinese-red-noodle-bean"]}
created2016-07-29 21:39:45
last_update2016-07-29 21:39:45
depth1
children3
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length328
author_reputation1,951,223,832,091,597
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,156
net_rshares25,291,438,938
author_curate_reward""
vote details (1)
@robrigo ·
You rock Papa!

I'll private message it to you if you make an account on https://steemit.chat!
πŸ‘  
properties (23)
authorrobrigo
permlinkre-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t214057687z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.chat"]}
created2016-07-29 21:40:57
last_update2016-07-29 21:40:57
depth2
children2
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,185
net_rshares4,636,566,670
author_curate_reward""
vote details (1)
@papa-pepper ·
$0.04
***DONE.*** I'm **papa-pepper** on steemit chat now. Let me know and *I'll ship your prize-pack from my seed giveaway*. I'll throw in the **[KIWANO](https://steemit.com/gardening/@papa-pepper/steemit-seed-giveaway-garden-plant-spotlight-2-kiwano)** seeds too for you guys.
πŸ‘  
properties (23)
authorpapa-pepper
permlinkre-robrigo-re-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t044126857z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/gardening/@papa-pepper/steemit-seed-giveaway-garden-plant-spotlight-2-kiwano"]}
created2016-07-30 04:41:33
last_update2016-07-30 04:41:33
depth3
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length272
author_reputation1,951,223,832,091,597
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id480,868
net_rshares24,280,793,103
author_curate_reward""
vote details (1)
@papa-pepper ·
https://i.imgsafe.org/cb83bba86b.jpg
Here's your **Prize Pack** from the [seed giveaway](https://steemit.com/gardening/@papa-pepper/free-first-ever-steemit-seed-giveaway-garden-plant-spotlight-1-chinese-red-noodle-bean) - I threw in some Fatali Pepper seeds, ***just 'cause I'm @papa-pepper***. I'll mail them out shortly. Congratulations, and *thanks* for the support! **Happy growing.**
properties (22)
authorpapa-pepper
permlinkre-robrigo-re-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t142809091z
categorysteem
json_metadata{"tags":["steem"],"users":["papa-pepper"],"image":["https://i.imgsafe.org/cb83bba86b.jpg"]}
created2016-07-30 14:28:18
last_update2016-07-30 14:28:18
depth3
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length388
author_reputation1,951,223,832,091,597
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id489,423
net_rshares0
@razvanelulmarin ·
$0.10
IT's so weird. more security make me feel nervous. less: same. 
I'm in constant anxiety that I overlooked something or that I locked it too well.
It's so bizzare.

I know there are no unbreakable vaults and if they were and i had the key to it i'd lose it. 

Am I the only one?
[nice post, rob, as always!]
πŸ‘  ,
properties (23)
authorrazvanelulmarin
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t194257554z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:43:06
last_update2016-07-29 19:43:06
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.099 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length306
author_reputation176,753,416,199,361
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,764
net_rshares57,277,567,583
author_curate_reward""
vote details (2)
@robrigo ·
$0.05
It is definitely important to err on the side of caution. Actually I'm going to add a little disclaimer here telling people they should save an image of their server before trying this. Thanks for making me think about that!
πŸ‘  
properties (23)
authorrobrigo
permlinkre-razvanelulmarin-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195051018z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:50:51
last_update2016-07-29 19:50:51
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id472,941
net_rshares30,996,812,709
author_curate_reward""
vote details (1)
@timsaid ·
$0.05
Thank you robrigo,

I just secured my account with you help. Hope more people will do so. No one leaves the house door open right? So take care of your steemit account as well.

Upvoted this post in the hope more people see it
πŸ‘  ,
properties (23)
authortimsaid
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195740663z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 19:57:42
last_update2016-07-29 19:57:42
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.053 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation338,948,364,553,435
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,094
net_rshares30,950,070,489
author_curate_reward""
vote details (2)
@robrigo ·
You're very welcome @timsaid!
properties (22)
authorrobrigo
permlinkre-timsaid-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195931368z
categorysteem
json_metadata{"tags":["steem"],"users":["timsaid"]}
created2016-07-29 19:59:30
last_update2016-07-29 19:59:30
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,129
net_rshares0
@toroiskandar ·
$0.04
great post!
nice @robrigo
πŸ‘  ,
properties (23)
authortoroiskandar
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t223053860z
categorysteem
json_metadata{"tags":["steem"],"users":["robrigo"]}
created2016-07-29 22:31:03
last_update2016-07-29 22:31:03
depth1
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation1,308,752,360,910
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id476,078
net_rshares26,161,225,620
author_curate_reward""
vote details (2)
@yulia98 ·
$0.04
As I'm creative person, your design is very set and readable, in my opinion
πŸ‘  
properties (23)
authoryulia98
permlinkre-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t200839373z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 20:08:36
last_update2016-07-29 20:08:36
depth1
children1
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation93,680,067,057
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,311
net_rshares27,314,515,185
author_curate_reward""
vote details (1)
@robrigo ·
Thanks Yulia. Props to the #Duo creative team for their hard work!
properties (22)
authorrobrigo
permlinkre-yulia98-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t201349049z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 20:13:48
last_update2016-07-29 20:13:48
depth2
children0
last_payout2016-08-29 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation36,085,196,360,202
root_title"[SECURITY HOW-TO] Set up Duo Unix to protect your Steem node with Out-of-Band 2FA"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,413
net_rshares0