<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>
author | robrigo |
---|---|
permlink | security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa |
category | steem |
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"]} |
created | 2016-07-29 19:11:09 |
last_update | 2016-07-29 22:20:54 |
depth | 0 |
children | 24 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2,296.637 HBD |
curator_payout_value | 405.391 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,121 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,060 |
net_rshares | 76,808,859,133,827 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
summon | 0 | 14,436,036,861,341 | 100% | ||
blocktrades | 0 | 42,452,207,771,300 | 100% | ||
justin | 0 | 747,827,408,488 | 100% | ||
nextgencrypto | 0 | 5,538,915,762,880 | 100% | ||
roadscape | 0 | 6,135,077,146,795 | 100% | ||
complexring | 0 | 2,228,016,171,395 | 100% | ||
steemychicken1 | 0 | 1,350,916,009,906 | 100% | ||
ajvest | 0 | 457,400,037,993 | 100% | ||
chloe | 0 | 5,302,423,925 | 100% | ||
jen | 0 | 5,317,443,720 | 100% | ||
steemservices | 0 | 527,175,287,436 | 100% | ||
kelly | 0 | 112,592,168 | 100% | ||
bentley | 0 | 15,613,621,252 | 100% | ||
cass | 0 | 765,656,637,898 | 100% | ||
dedriss | 0 | 23,466,221,386 | 100% | ||
edgeland | 0 | 79,648,634,557 | 100% | ||
sandwich | 0 | 12,702,396,262 | 100% | ||
pavel-tyh | 0 | 533,249,853 | 100% | ||
cryptoalina | 0 | 449,498,924 | 100% | ||
cryptogee | 0 | 395,953,345,571 | 100% | ||
fernan | 0 | 439,484,849 | 100% | ||
generalizethis | 0 | 7,104,003,153 | 100% | ||
jerome-colley | 0 | 5,844,292,492 | 100% | ||
hannixx42 | 0 | 42,277,683,450 | 100% | ||
murh | 0 | 3,481,483,451 | 100% | ||
slickwilly | 0 | 415,272,975 | 100% | ||
andu | 0 | 12,016,420,073 | 100% | ||
cyber | 0 | 312,993,337,784 | 100% | ||
btotherest | 0 | 7,543,491,293 | 100% | ||
eric-boucher | 0 | 52,963,041,621 | 100% | ||
thread | 0 | 6,370,757,137 | 100% | ||
yonatann | 0 | 326,792,333 | 100% | ||
gsaibabu | 0 | 324,650,265 | 100% | ||
kenny-crane | 0 | 104,192,336,441 | 100% | ||
wongshiying | 0 | 30,917,038,665 | 100% | ||
faddat | 0 | 54,537,259,034 | 100% | ||
kingofchaos | 0 | 6,205,546,326 | 100% | ||
tim-johnston | 0 | 75,771,371,813 | 100% | ||
schro | 0 | 120,076,929,828 | 100% | ||
tee-em | 0 | 322,608,139 | 100% | ||
geoffrey | 0 | 18,042,315,651 | 100% | ||
bitcoinci | 0 | 390,381,989 | 100% | ||
jonnyrevolution | 0 | 18,981,284,896 | 100% | ||
vladon | 0 | 10,618,032,807 | 100% | ||
razvanelulmarin | 0 | 29,963,095,834 | 100% | ||
greatguardian100 | 0 | 1,588,554,709 | 100% | ||
ladyclair | 0 | 262,053,738 | 100% | ||
asmolokalo | 0 | 226,176,239,581 | 100% | ||
getssidetracked | 0 | 6,353,056,770 | 100% | ||
bitcointop | 0 | 208,005,032 | 100% | ||
riscadox | 0 | 2,847,529,129 | 100% | ||
soupernerd | 0 | 56,519,353 | 1% | ||
robrigo | 0 | 28,326,040,016 | 100% | ||
matt-a | 0 | 3,887,176,651 | 100% | ||
menta | 0 | 17,359,935,727 | 100% | ||
sillyfilthy | 0 | 7,456,454,085 | 100% | ||
hakise | 0 | 16,324,097,474 | 100% | ||
elyaque | 0 | 7,495,066,766 | 100% | ||
chamviet | 0 | 345,942,269 | 100% | ||
toroiskandar | 0 | 1,844,553,176 | 100% | ||
zhuvazhuva | 0 | 212,944,854 | 100% | ||
chriscrypto | 0 | 18,326,288,615 | 100% | ||
marcgodard | 0 | 434,927,054 | 100% | ||
yuridan | 0 | 167,495,607 | 100% | ||
thegoodguy | 0 | 3,061,769,196 | 100% | ||
showmethecoinz | 0 | 17,520,899,214 | 100% | ||
sephiroth | 0 | 43,550,820,389 | 100% | ||
theanubisrider | 0 | 4,904,538,307 | 100% | ||
dcryptogold | 0 | 3,035,613,445 | 100% | ||
stephencurry | 0 | 55,896,798,844 | 100% | ||
kuriko | 0 | 8,571,904,469 | 100% | ||
knozaki2015 | 0 | 22,819,065,068 | 100% | ||
martin1 | 0 | 14,369,805,621 | 100% | ||
natali22 | 0 | 247,288,131 | 100% | ||
btcbtcbtc20155 | 0 | 2,294,750,996 | 100% | ||
kapets123 | 0 | 89,925,335 | 100% | ||
lenar79 | 0 | 461,843,050 | 100% | ||
calaber24p | 0 | 20,350,014,574 | 100% | ||
rockymtnbarkeep | 0 | 1,484,812,567 | 100% | ||
fhc | 0 | 116,878,930 | 100% | ||
magz8716 | 0 | 7,577,722,434 | 100% | ||
digitalarchitect | 0 | 901,921,150 | 100% | ||
idan4326 | 0 | 1,855,661,180 | 100% | ||
sauravrungta | 0 | 2,008,347,459 | 100% | ||
neroru | 0 | 5,086,414,699 | 100% | ||
frostwind | 0 | 41,975,130,700 | 100% | ||
meteor78 | 0 | 97,446,825 | 100% | ||
queiroz | 0 | 355,022,562 | 100% | ||
yarly2 | 0 | 183,923,850 | 100% | ||
yarly4 | 0 | 103,603,929 | 100% | ||
yarly7 | 0 | 67,894,310 | 100% | ||
johnsmith | 0 | 76,017,373,620 | 100% | ||
papa-pepper | 0 | 4,636,566,670 | 100% | ||
psixto | 0 | 132,657,662 | 100% | ||
sisterholics | 0 | 506,736,082 | 100% | ||
yarly12 | 0 | 59,308,131 | 100% | ||
kukuy | 0 | 106,954,208 | 100% | ||
elliottgodard | 0 | 27,227,492 | 100% | ||
taz | 0 | 38,882,599 | 100% | ||
crazylife | 0 | 2,195,734,844 | 100% | ||
emilyelizabeth | 0 | 4,256,286 | 1% | ||
michiel | 0 | 7,583,822,314 | 100% | ||
buyselltrade | 0 | 106,238,527 | 100% | ||
ternovic | 0 | 109,744,268 | 100% | ||
weenis | 0 | 55,457,639 | 1% | ||
mahekg | 0 | 141,711,194 | 100% | ||
bergy | 0 | 3,670,153,582 | 100% | ||
metaflute | 0 | 912,756,035 | 100% | ||
yulia98 | 0 | 112,977,594 | 100% | ||
johnblow | 0 | 15,433,739 | 100% | ||
freeflix | 0 | 62,727,667 | 100% | ||
beachbum | 0 | 58,865,152 | 100% | ||
persianqueen | 0 | 48,508,014 | 100% | ||
bitcoin-novosti | 0 | 66,524,973 | 100% | ||
steemitlove | 0 | 1,277,435 | 1% | ||
steemlove | 0 | 1,283,024 | 1% | ||
kodijacked | 0 | 62,524,491 | 100% | ||
gmurph | 0 | 3,870,945,031 | 100% | ||
timsaid | 0 | 3,709,750,310 | 100% | ||
bitron | 0 | 61,588,711 | 100% | ||
soratoasu | 0 | 152,782,856 | 100% | ||
opserver | 0 | 61,787,078 | 100% | ||
cryptotrade | 0 | 61,762,331 | 100% | ||
kobayashi | 0 | 61,744,851 | 100% | ||
primamore | 0 | 61,732,826 | 100% | ||
lechiffre | 0 | 61,706,581 | 100% | ||
pepino | 0 | 61,693,705 | 100% | ||
dottore.chimica | 0 | 61,682,621 | 100% | ||
studio54 | 0 | 61,656,733 | 100% | ||
feedthemachine | 0 | 411,669,207 | 100% | ||
fireballofdoom | 0 | 23,950,454 | 100% | ||
steemit.tips | 0 | 2,846,658 | 1% | ||
ich | 0 | 52,528,751 | 100% | ||
poorassbastard | 0 | 61,209,444 | 100% | ||
aiaconelli707 | 0 | 45,993,714 | 100% | ||
nonlinearone | 0 | 1,048,069,600 | 100% | ||
msjennifer | 0 | 44,543,332 | 100% | ||
ciao | 0 | 13,929,767 | 100% | ||
curls4life | 0 | 1,237,709 | 1% | ||
belkin | 0 | 178,754,180 | 100% | ||
alniskobs | 0 | 1,236,422 | 1% | ||
amboyst | 0 | 1,236,413 | 1% | ||
cheremet | 0 | 1,244,069 | 1% | ||
anarchypory | 0 | 1,237,141 | 1% | ||
angevel | 0 | 1,247,182 | 1% | ||
backetri | 0 | 1,237,101 | 1% | ||
chonesta | 0 | 1,563,167 | 1% | ||
countrytalented | 0 | 1,245,075 | 1% | ||
cozyone123 | 0 | 1,238,610 | 1% | ||
crumaner | 0 | 1,237,392 | 1% | ||
daysaiyan | 0 | 1,238,995 | 1% | ||
daysmega | 0 | 1,234,910 | 1% | ||
daysmega1421 | 0 | 1,234,097 | 1% | ||
dotersvilic | 0 | 1,234,087 | 1% | ||
eternalabove | 0 | 1,234,073 | 1% | ||
steem-sales | 0 | 60,454,339 | 100% | ||
kalipen | 0 | 60,436,398 | 100% | ||
corax | 0 | 1,248,087 | 100% | ||
steemo | 0 | 1,232,221 | 100% | ||
steema | 0 | 1,229,043 | 100% | ||
sugarfromhell | 0 | 1,228,844 | 1% | ||
gaspot | 0 | 1,228,835 | 1% | ||
forgetthefallen | 0 | 1,228,825 | 1% | ||
eleiminer | 0 | 1,232,854 | 1% | ||
etccrap | 0 | 1,228,746 | 1% | ||
abctrade | 0 | 1,552,371 | 1% | ||
yandra86 | 0 | 1,228,697 | 1% | ||
hxclife | 0 | 1,236,329 | 1% | ||
rottennasty | 0 | 1,228,671 | 1% | ||
bignastywhale | 0 | 1,228,658 | 1% | ||
nonamer | 0 | 74,162,920 | 100% | ||
darktrade | 0 | 60,167,887 | 100% | ||
erikclark13 | 0 | 369,901,621 | 100% | ||
deepdarkweb | 0 | 60,144,649 | 100% | ||
mammon | 0 | 54,413,722 | 100% | ||
saveljev57 | 0 | 56,376,609 | 100% | ||
genesisproject | 0 | 60,047,598 | 100% | ||
infocus7 | 0 | 124,024,635 | 100% | ||
nextplx | 0 | 86,873,766 | 100% | ||
confucius | 0 | 4,838,730 | 100% | ||
dottore | 0 | 59,968,362 | 100% | ||
loveangel | 0 | 626,826,078 | 100% | ||
gh0st | 0 | 59,932,723 | 100% | ||
bledarus | 0 | 34,732,121 | 100% | ||
feeltheblade | 0 | 1,222,361 | 1% | ||
silvesterstay | 0 | 1,222,338 | 1% | ||
joujou666 | 0 | 1,220,710 | 1% | ||
praisenoone | 0 | 1,219,891 | 1% | ||
rickydevil | 0 | 1,219,879 | 1% | ||
softpunk | 0 | 1,224,308 | 1% | ||
redddet | 0 | 1,219,858 | 1% | ||
catirabella | 0 | 1,219,843 | 1% | ||
redredwinewine | 0 | 1,219,834 | 1% | ||
gunpower | 0 | 1,224,270 | 1% | ||
th3g3ntl3m3n | 0 | 59,605,551 | 100% | ||
aethercollector | 0 | 54,806,838 | 100% | ||
thedarknet | 0 | 59,503,524 | 100% | ||
jarvis | 0 | 8,719,730 | 100% | ||
iamchaos | 0 | 59,405,350 | 100% | ||
stats | 0 | 7,259,479 | 100% | ||
puttyswag | 0 | 34,830,836 | 100% | ||
steeminvest | 0 | 59,229,141 | 100% | ||
assistant | 0 | 21,747,172 | 100% | ||
darksteem | 0 | 59,192,831 | 100% | ||
juiceoflife | 0 | 59,170,909 | 100% | ||
mabiturm | 0 | 57,949,812 | 100% | ||
steemachine | 0 | 56,721,326 | 100% | ||
steemdeutschland | 0 | 51,885,417 | 100% | ||
punkgal69 | 0 | 56,703,312 | 100% | ||
imdren | 0 | 56,646,485 | 100% | ||
xsteem | 0 | 57,763,088 | 100% | ||
steemtravels | 0 | 58,934,916 | 100% | ||
tattootravels | 0 | 58,908,864 | 100% |
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 :)
author | eric-boucher |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213442022z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 21:34:42 |
last_update | 2016-07-29 21:34:42 |
depth | 1 |
children | 2 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.145 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 68,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,079 |
net_rshares | 82,608,783,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 51,071,504,420 | 100% | ||
thread | 0 | 6,245,840,330 | 100% | ||
robrigo | 0 | 25,291,438,938 | 100% |
You're welcome, Eric. The way I see it, we've all got something useful to contribute!
author | robrigo |
---|---|
permlink | re-eric-boucher-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213702432z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 21:37:03 |
last_update | 2016-07-29 21:37:03 |
depth | 2 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.087 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,120 |
net_rshares | 51,071,504,420 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 51,071,504,420 | 100% |
We do, all for one and one for all! Namaste :)
author | eric-boucher |
---|---|
permlink | re-robrigo-re-eric-boucher-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t214151695z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 21:41:51 |
last_update | 2016-07-29 21:41:51 |
depth | 3 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.133 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 68,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,197 |
net_rshares | 76,362,943,358 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 51,071,504,420 | 100% | ||
robrigo | 0 | 25,291,438,938 | 100% |
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.
author | faddat |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t215341860z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 21:53:45 |
last_update | 2016-07-29 21:53:45 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,376 |
net_rshares | 25,291,438,938 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 25,291,438,938 | 100% |
Thank you @faddat. I completely agree!
author | robrigo |
---|---|
permlink | re-faddat-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t215445475z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 21:54:45 |
last_update | 2016-07-29 21:54:51 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,394 |
net_rshares | 0 |
Fantastic! Very well written. What are your thoughts on a hardware key like the Yubikey? to go along with the securing. 
author | feedthemachine |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160731t002628282z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://www.yubico.com/wp-content/uploads/2015/12/YubiKey-4-1000.png"]} |
created | 2016-07-31 00:26:24 |
last_update | 2016-07-31 00:26:24 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 164,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 501,880 |
net_rshares | 28,151,069,917 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 28,151,069,917 | 100% |
Yubikeys are awesome, use them if you have them! Now you've inspired me to talk about U2F tokens in a future post. :)
author | robrigo |
---|---|
permlink | re-feedthemachine-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160731t005330763z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-31 00:53:30 |
last_update | 2016-07-31 00:53:30 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 502,381 |
net_rshares | 0 |
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)
author | james-show |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t233504232z |
category | steem |
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"]} |
created | 2016-07-29 23:35:12 |
last_update | 2016-07-29 23:35:12 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 845 |
author_reputation | 5,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 476,906 |
net_rshares | 64,876,905,306 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
james-show | 0 | 40,597,066,060 | 100% | ||
robrigo | 0 | 24,279,839,246 | 100% |
Thanks, they look interesting!
author | robrigo |
---|---|
permlink | re-james-show-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t014759976z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-30 01:48:00 |
last_update | 2016-07-30 01:48:00 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 478,487 |
net_rshares | 0 |
Great post ! i hope there will be more security tutorials, as this is really valuable content !
author | knozaki2015 |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t191956669z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:20:03 |
last_update | 2016-07-29 19:20:03 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.087 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,238 |
net_rshares | 51,145,105,084 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 28,326,040,016 | 100% | ||
knozaki2015 | 0 | 22,819,065,068 | 100% |
Thanks for the compliment. I'm just getting started!
author | robrigo |
---|---|
permlink | re-knozaki2015-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t192238213z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:22:39 |
last_update | 2016-07-29 19:22:39 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,305 |
net_rshares | 0 |
πnice tutorial..., very interested
author | meteor78 |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t193525041z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:35:33 |
last_update | 2016-07-29 19:35:33 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.080 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 184,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,552 |
net_rshares | 49,776,537,231 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blackjincrypto | 0 | 21,450,418,380 | 100% | ||
robrigo | 0 | 28,326,118,851 | 100% |
Glad you like it!
author | robrigo |
---|---|
permlink | re-meteor78-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t193634786z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:36:33 |
last_update | 2016-07-29 19:36:33 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,582 |
net_rshares | 0 |
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!
author | papa-pepper |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t213940825z |
category | steem |
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"]} |
created | 2016-07-29 21:39:45 |
last_update | 2016-07-29 21:39:45 |
depth | 1 |
children | 3 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 328 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,156 |
net_rshares | 25,291,438,938 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 25,291,438,938 | 100% |
You rock Papa! I'll private message it to you if you make an account on https://steemit.chat!
author | robrigo |
---|---|
permlink | re-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t214057687z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.chat"]} |
created | 2016-07-29 21:40:57 |
last_update | 2016-07-29 21:40:57 |
depth | 2 |
children | 2 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 475,185 |
net_rshares | 4,636,566,670 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
papa-pepper | 0 | 4,636,566,670 | 100% |
***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.
author | papa-pepper |
---|---|
permlink | re-robrigo-re-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t044126857z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/gardening/@papa-pepper/steemit-seed-giveaway-garden-plant-spotlight-2-kiwano"]} |
created | 2016-07-30 04:41:33 |
last_update | 2016-07-30 04:41:33 |
depth | 3 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 272 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 480,868 |
net_rshares | 24,280,793,103 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 24,280,793,103 | 100% |
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.**
author | papa-pepper |
---|---|
permlink | re-robrigo-re-papa-pepper-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160730t142809091z |
category | steem |
json_metadata | {"tags":["steem"],"users":["papa-pepper"],"image":["https://i.imgsafe.org/cb83bba86b.jpg"]} |
created | 2016-07-30 14:28:18 |
last_update | 2016-07-30 14:28:18 |
depth | 3 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 388 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 489,423 |
net_rshares | 0 |
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!]
author | razvanelulmarin |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t194257554z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:43:06 |
last_update | 2016-07-29 19:43:06 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.099 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 306 |
author_reputation | 176,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,764 |
net_rshares | 57,277,567,583 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
razvanelulmarin | 0 | 29,963,095,834 | 100% | ||
robrigo | 0 | 27,314,471,749 | 100% |
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!
author | robrigo |
---|---|
permlink | re-razvanelulmarin-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195051018z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:50:51 |
last_update | 2016-07-29 19:50:51 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 224 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 472,941 |
net_rshares | 30,996,812,709 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
razvanelulmarin | 0 | 30,996,812,709 | 100% |
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
author | timsaid |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195740663z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 19:57:42 |
last_update | 2016-07-29 19:57:42 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.053 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 226 |
author_reputation | 338,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,094 |
net_rshares | 30,950,070,489 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 27,314,515,185 | 100% | ||
timsaid | 0 | 3,635,555,304 | 100% |
You're very welcome @timsaid!
author | robrigo |
---|---|
permlink | re-timsaid-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t195931368z |
category | steem |
json_metadata | {"tags":["steem"],"users":["timsaid"]} |
created | 2016-07-29 19:59:30 |
last_update | 2016-07-29 19:59:30 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,129 |
net_rshares | 0 |
great post! nice @robrigo
author | toroiskandar |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t223053860z |
category | steem |
json_metadata | {"tags":["steem"],"users":["robrigo"]} |
created | 2016-07-29 22:31:03 |
last_update | 2016-07-29 22:31:03 |
depth | 1 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 476,078 |
net_rshares | 26,161,225,620 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 24,279,781,380 | 100% | ||
toroiskandar | 0 | 1,881,444,240 | 100% |
As I'm creative person, your design is very set and readable, in my opinion
author | yulia98 |
---|---|
permlink | re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t200839373z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 20:08:36 |
last_update | 2016-07-29 20:08:36 |
depth | 1 |
children | 1 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 93,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,311 |
net_rshares | 27,314,515,185 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 27,314,515,185 | 100% |
Thanks Yulia. Props to the #Duo creative team for their hard work!
author | robrigo |
---|---|
permlink | re-yulia98-re-robrigo-security-how-to-set-up-duo-unix-to-protect-your-steem-node-with-out-of-band-2fa-20160729t201349049z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 20:13:48 |
last_update | 2016-07-29 20:13:48 |
depth | 2 |
children | 0 |
last_payout | 2016-08-29 09:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 36,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,413 |
net_rshares | 0 |