Welcome back to the second part of securing your Linux Server. I won't talk about becoming a witness, or what a witness is, until I actually get to that part of the setup myself. This is about securing a server first. Sorry for mentioning the journey to becoming a witness too early, in the first post. So, I'm not becoming a witness yet. I'll mention it again when I actually get there ;) As mentioned in [Part 1](https://steemit.com/witness-category/@krnel/setting-up-a-linux-vps-securely-pt-1-join-me-on-my-journey-to-become-a-witness), this part will deal with SSH keys to make your server even more secure. ### Let's get it on! --- # Public and Private Keys for SSH Again being on Windows, grab the [PuttyGen.exe](https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe) software. Click on that link and it will download. Open the program, nothing is installed. <center><img src="http://www.steemimg.com/images/2016/11/26/generate-keyed3d7.png" alt="generate-keyed3d7.png" border="0"></center> Click on ```Generate```, and move your mouse around the blank area under the status/progress bar. You will see the bar fill up as you move your mouse around. Keep going until the key is generated. After that, you will get your keys. Copy the "Public key for pasting" into a file, call it pub_key.txt. Next, put in a "Key passphrase" if you want some extra security, but if you're the only one connecting to your server then it's not that big of a deal. Then click "Save public key", call it "pub_key". Then click "Save private key", and save it as "private.ppk". <center><img src="http://www.steemimg.com/images/2016/11/26/generate-save724f2.png" alt="generate-save724f2.png" border="0"></center> So if you saved them like I named them, you will have three files: > pubkey.txt > pub_key > private.ppk --- # Install public key on server Now that the keys have been generated on your local computer, it's time to upload the public key to the server so you can connect with it. Open putty, load the profile, and Open the connection. Put your user password, and login. Remember, we're no longer logging in as root. Do the follow commands 1. ```mkdir ~/.ssh``` Make a hidden user directory 2. ```chmod 700 ~/.ssh``` Modify the folder access 3. ```cd ~/.ssh``` Go into the folder 4. ```nano authorized_keys``` Create a file for the key, it has to be this name 5. Open "public_key.txt" from before and copy it's contents. Then paste those contents into putty that has the file "authorized_keys" open. Save and close the file: ctrl+o or just ctrl+x and save the file before exiting. 6. ```chmod 600 authorized_keys``` Set file access on thr public key so no other users can access it, except for root <center><img src="http://www.steemimg.com/images/2016/11/26/ssh-dir962eb.png" alt="ssh-dir962eb.png" border="0"></center> --- # Disable password logins Open the sshd_config file: ```sudo nano /etc/ssh/sshd_config``` Scroll down with the arrow key, or hit Page Down twice, to find ```PasswordAuthentication yes``` Change the "yes" to "no": ```PasswordAuthentication no``` Then restart the service: ```sudo service ssh restart``` <center><img src="http://www.steemimg.com/images/2016/11/27/ssh-password-yes4cfc3.png" alt="ssh-password-yes4cfc3.png" border="0"></center> # Test SSH login with a key, instead of password Open putty, and load your profile. Go to the left panel section, and go to the "Auth" section shown here: <center><img src="http://www.steemimg.com/images/2016/11/26/putty-authfb735.png" alt="putty-authfb735.png" border="0"></center> Next, click "Browse" to find the "private.ppk" file we saved earlier. <center><img src="http://www.steemimg.com/images/2016/11/27/putty-private-leyd7a70.png" alt="putty-private-leyd7a70.png" border="0"></center> The last thing to do is "Save" your profile in putty so that you don't need to do this again. Go to the top to "Session" and you can save again. <center><img src="http://www.steemimg.com/images/2016/11/27/putty-savec88d4.png" alt="putty-savec88d4.png" border="0"></center> And then just click "Open" to connect with your new SSH key. If you are prompted to accept a key, click "Yes". If you set a passphrase for your key earlier, then this when time you need to use it. If you didn't put a passphrase, then you login without using a password, and it's still more secure being it uses private-public keys. <center><img src="http://www.steemimg.com/images/2016/11/27/rsa-prompt88d00.png" alt="rsa-prompt88d00.png" border="0"></center> # Remove IPv6 listening Since no one really uses IPv6 yet, disable this and make one less thing your system is checking for. ```AddressFamily inet``` needs to be added. You can add this manually to the end of the sshd_config file @ ```nano /etc/ssh/sshd_config```. Or just run: ```echo 'AddressFamily inet' | sudo tee -a /etc/ssh/sshd_config``` If you ever need IPv6 SSH back, remove that line. Finish with a restart of SSH: ```sudo service ssh restart``` --- # Done! - [Setting Up A Linux VPS Securely (Pt.1)](https://steemit.com/witness-category/@krnel/setting-up-a-linux-vps-securely-pt-1-join-me-on-my-journey-to-become-a-witness) --- #### Thank you for your time and attention! I appreciate the knowledge reaching more people. Take care. Peace. <center><img src="http://i.imgur.com/LwhouOq.gif" /><img src="http://i.imgur.com/X7bllkJ.png" /> <strong>Payout Selected</strong></center> --- If you appreciate and value the content, please consider: Upvoting <img src="https://www.steemimg.com/images/2016/08/30/upvote91a69.png" alt="upvote91a69.png" /> , Sharing <img src="https://www.steemimg.com/images/2016/08/30/share2195b.png" alt="share2195b.png" /> **and** Reblogging <img src="https://www.steemimg.com/images/2016/09/19/reblog33b5f.png" alt="reblog33b5f.png" /> **below**. [](https://steemit.com/@krnel) me for more content to come! --- @krnel 2016-11-28, 6:10am
author | krnel |
---|---|
permlink | setting-up-a-linux-vps-securely-pt-2 |
category | cybersecurity |
json_metadata | {"tags":["cybersecurity","linux","vps","server","tutorial"],"users":["krnel"],"image":["http://www.steemimg.com/images/2016/11/26/generate-keyed3d7.png","http://www.steemimg.com/images/2016/11/26/generate-save724f2.png","http://www.steemimg.com/images/2016/11/26/ssh-dir962eb.png","http://www.steemimg.com/images/2016/11/27/ssh-password-yes4cfc3.png","http://www.steemimg.com/images/2016/11/26/putty-authfb735.png","http://www.steemimg.com/images/2016/11/27/putty-private-leyd7a70.png","http://www.steemimg.com/images/2016/11/27/putty-savec88d4.png","http://www.steemimg.com/images/2016/11/27/rsa-prompt88d00.png","http://i.imgur.com/LwhouOq.gif","http://i.imgur.com/X7bllkJ.png","https://www.steemimg.com/images/2016/08/30/upvote91a69.png","https://www.steemimg.com/images/2016/08/30/share2195b.png","https://www.steemimg.com/images/2016/09/19/reblog33b5f.png","https://www.steemimg.com/images/2016/08/30/follow2be5e.png"],"links":["https://steemit.com/witness-category/@krnel/setting-up-a-linux-vps-securely-pt-1-join-me-on-my-journey-to-become-a-witness","https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe","https://steemit.com/@krnel"],"app":"steemit/0.1","format":"markdown"} |
created | 2016-11-28 11:10:48 |
last_update | 2016-11-28 12:16:15 |
depth | 0 |
children | 5 |
last_payout | 2016-12-29 11:44:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 13.715 HBD |
curator_payout_value | 0.827 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,029 |
author_reputation | 1,343,547,270,297,082 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 1,863,419 |
net_rshares | 44,702,928,022,501 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
barrie | 0 | 359,914,676,439 | 100% | ||
neogen1 | 0 | 599,633,031,372 | 100% | ||
hermes | 0 | 633,492,355,166 | 100% | ||
hermes-miner | 0 | 763,570,813,180 | 100% | ||
thorium1 | 0 | 435,333,078,459 | 100% | ||
thorium2 | 0 | 381,236,578,231 | 100% | ||
datasecuritynode | 0 | 6,193,502,413,209 | 100% | ||
bunkermining | 0 | 453,408,988,175 | 100% | ||
xeldal | 0 | 8,757,327,627,121 | 100% | ||
bitshares.org | 0 | 195,107,959,982 | 100% | ||
blockchainbunker | 0 | 129,058,030,141 | 100% | ||
enki | 0 | 5,552,456,599,054 | 100% | ||
blocktech | 0 | 46,424,751,900 | 100% | ||
neominer2016 | 0 | 12,139,971,549 | 100% | ||
abderus | 0 | 193,036,127,055 | 100% | ||
olympus-steemy | 0 | 8,379,911,182 | 100% | ||
hephaestus | 0 | 213,498,022,814 | 100% | ||
aquarius.com | 0 | 107,322,480,199 | 100% | ||
minosman | 0 | 46,792,640,803 | 100% | ||
aphrodite | 0 | 133,749,811,758 | 100% | ||
hotels.com | 0 | 16,295,797,659 | 100% | ||
aries.com | 0 | 13,449,367,426 | 100% | ||
rabbitminer | 0 | 77,792,023,359 | 100% | ||
insurance.com | 0 | 21,937,457,278 | 100% | ||
fund.com | 0 | 96,365,902,774 | 100% | ||
heracles | 0 | 12,900,759,786 | 100% | ||
bunkerchainlabs | 0 | 19,136,426,139 | 100% | ||
tigerminer | 0 | 1,549,388,194 | 100% | ||
mineralwasser | 0 | 1,000,269,656 | 100% | ||
boombastic | 0 | 567,428,912,648 | 100% | ||
mrs.agsexplorer | 0 | 73,677,621,578 | 100% | ||
bingo-0 | 0 | 5,512,841,285 | 100% | ||
bingo-1 | 0 | 1,348,919,408 | 100% | ||
benjojo | 0 | 473,503,442,105 | 100% | ||
proctologic | 0 | 13,944,467,463 | 20% | ||
peerplays | 0 | 205,068,036,569 | 100% | ||
full-steem-ahead | 0 | 68,825,901,302 | 100% | ||
jazzycrypt | 0 | 569,616,098 | 100% | ||
apollo | 0 | 16,104,499,173 | 100% | ||
athena | 0 | 10,389,300,650 | 100% | ||
muses | 0 | 1,667,522,778 | 100% | ||
perseus | 0 | 270,601,446 | 100% | ||
proctologic2 | 0 | 195,817,217 | 20% | ||
piedpiper | 0 | 699,942,416,792 | 100% | ||
proctologic3 | 0 | 89,320,016 | 20% | ||
leesunmoo | 0 | 942,703,335,239 | 100% | ||
teamsteem | 0 | 346,571,842,340 | 100% | ||
nanzo-scoop | 0 | 1,433,096,383,652 | 100% | ||
pal | 0 | 58,585,763,508 | 20% | ||
hannixx42 | 0 | 44,242,404,434 | 100% | ||
mummyimperfect | 0 | 219,215,640,497 | 100% | ||
tmendieta | 0 | 26,611,282,105 | 100% | ||
klye | 0 | 118,617,627,357 | 100% | ||
alenevaa | 0 | 20,026,759,160 | 100% | ||
murh | 0 | 2,069,035,412 | 15.09% | ||
cryptofunk | 0 | 1,585,279,922 | 6% | ||
dragonslayer109 | 0 | 227,005,058,678 | 100% | ||
ak2020 | 0 | 91,113,333,397 | 100% | ||
mrsteemgarden | 0 | 275,452,203 | 100% | ||
steemgarden | 0 | 275,274,510 | 100% | ||
pets | 0 | 260,962,667 | 100% | ||
noganoo | 0 | 54,401,223,128 | 100% | ||
applecrisp | 0 | 1,363,799,495 | 20% | ||
stellabelle | 0 | 2,091,039,184,700 | 100% | ||
martin-wichmann | 0 | 92,063,986,993 | 100% | ||
juanmiguelsalas | 0 | 30,031,118,576 | 60% | ||
rednetkjh | 0 | 29,398,443,206 | 100% | ||
gardening | 0 | 222,561,666 | 100% | ||
survival | 0 | 222,654,509 | 100% | ||
arisa | 0 | 7,315,166,853 | 100% | ||
grandpere | 0 | 13,259,855,020 | 70% | ||
mark-waser | 0 | 44,540,909,230 | 100% | ||
seth-krings | 0 | 13,344,936,560 | 100% | ||
crok | 0 | 4,446,859,124 | 100% | ||
christoph3 | 0 | 4,783,919,772 | 100% | ||
technology | 0 | 43,464,214,241 | 100% | ||
jparty | 0 | 17,182,670,726 | 100% | ||
emily-cook | 0 | 85,458,385,228 | 100% | ||
mctiller | 0 | 67,931,524,766 | 100% | ||
jakevanderark | 0 | 32,972,634,637 | 100% | ||
fyrstikken | 0 | 418,915,780,614 | 25% | ||
auction | 0 | 6,588,422,368 | 100% | ||
michaellamden68 | 0 | 2,304,899,455 | 100% | ||
asmolokalo | 0 | 104,151,540,822 | 33% | ||
sonzweil | 0 | 265,736,243,465 | 100% | ||
yoonjang0707 | 0 | 240,173,959,515 | 100% | ||
rubybian | 0 | 59,831,615,874 | 100% | ||
honey | 0 | 168,894,549 | 100% | ||
strangerarray | 0 | 31,652,864,155 | 100% | ||
ausbitbank | 0 | 43,717,820,742 | 100% | ||
transisto | 0 | 3,011,151,532,253 | 100% | ||
luisucv34 | 0 | 9,306,775,742 | 100% | ||
krystle | 0 | 13,580,166,464 | 100% | ||
inertia | 0 | 129,106,778,102 | 100% | ||
ubg | 0 | 29,041,073,097 | 100% | ||
tarindel | 0 | 3,844,864,456 | 100% | ||
deanliu | 0 | 53,920,969,546 | 100% | ||
hemp | 0 | 995,013,869 | 100% | ||
flowers | 0 | 106,519,933 | 100% | ||
seb | 0 | 808,690,624 | 100% | ||
steemchain | 0 | 50,068,136 | 100% | ||
whalepool | 0 | 51,281,623 | 100% | ||
carlidos | 0 | 23,670,471,772 | 100% | ||
summonerrk | 0 | 14,069,148,852 | 100% | ||
trisnawati | 0 | 7,840,813,504 | 100% | ||
tommyhansen | 0 | 75,051,798,590 | 100% | ||
sulev | 0 | 37,355,256,170 | 100% | ||
ap2002 | 0 | 91,387,526 | 100% | ||
transhuman | 0 | 4,308,109,508 | 100% | ||
laoyao | 0 | 21,801,208,089 | 100% | ||
allpunk | 0 | 1,381,772,886 | 100% | ||
augur | 0 | 7,194,638,377 | 100% | ||
asdes | 0 | 4,544,154,399 | 100% | ||
thisvsthis | 0 | 1,472,822,934,254 | 85% | ||
denn | 0 | 7,634,751,915 | 100% | ||
elena000 | 0 | 263,099,599 | 100% | ||
andrew0 | 0 | 10,488,807,038 | 90% | ||
kurtbeil | 0 | 104,407,121,807 | 100% | ||
steemleak | 0 | 5,082,518,340 | 100% | ||
zahar | 0 | 1,016,453,311 | 100% | ||
oflyhigh | 0 | 7,246,190,081 | 100% | ||
sillygoon | 0 | 234,017,740 | 100% | ||
numberone | 0 | 4,199,933,372 | 100% | ||
lordemau | 0 | 6,583,486,189 | 90% | ||
diamonds | 0 | 54,980,438 | 100% | ||
rmach | 0 | 17,965,992,680 | 100% | ||
ioc | 0 | 1,356,526,626,049 | 100% | ||
razberrijam | 0 | 95,856,956 | 20% | ||
blocho | 0 | 6,743,002,915 | 100% | ||
chinadaily | 0 | 10,544,064,288 | 100% | ||
pjheinz | 0 | 30,642,659,690 | 100% | ||
lemouth | 0 | 43,245,556,937 | 100% | ||
jesus2 | 0 | 89,129,427 | 60% | ||
lamech-m | 0 | 4,528,442,308 | 100% | ||
almerri | 0 | 16,635,699,376 | 100% | ||
jsantana | 0 | 3,255,629,468 | 20% | ||
rjbauer85 | 0 | 649,204,124 | 100% | ||
jyp | 0 | 137,483,373,431 | 100% | ||
andrewawerdna | 0 | 30,481,656,410 | 100% | ||
leahmchenry | 0 | 25,189,797,989 | 100% | ||
albensilverberg | 0 | 169,746,394,667 | 100% | ||
sethlinson | 0 | 2,493,322,487 | 20% | ||
hilarski | 0 | 18,061,236,881 | 20% | ||
oldtimer | 0 | 398,203,024,071 | 100% | ||
inchonbitcoin | 0 | 363,435,609,690 | 100% | ||
englishtchrivy | 0 | 36,281,446,930 | 100% | ||
krnel | 0 | 277,392,294,565 | 100% | ||
manosteel211 | 0 | 1,927,667,351 | 100% | ||
charlie777pt | 0 | 2,986,947,987 | 100% | ||
carrinm | 0 | 103,050,789,111 | 100% | ||
blockcodes | 0 | 3,271,939,071 | 100% | ||
cryptochart | 0 | 50,050,891 | 100% | ||
steemwatch | 0 | 50,612,605 | 100% | ||
davidjkelley | 0 | 2,385,748,229 | 100% | ||
digital-wisdom | 0 | 18,421,412,460 | 100% | ||
ethical-ai | 0 | 5,789,034,742 | 100% | ||
immortalfame | 0 | 12,531,917,899 | 100% | ||
titusfrost | 0 | 18,484,267,499 | 100% | ||
jwaser | 0 | 8,211,814,905 | 100% | ||
debmund | 0 | 872,770,385 | 100% | ||
tfeldman | 0 | 11,000,491,493 | 100% | ||
deaddy | 0 | 0 | 23% | ||
bwaser | 0 | 2,922,198,435 | 100% | ||
renzoarg | 0 | 39,572,817,301 | 100% | ||
allyouneedtoknow | 0 | 12,263,269,457 | 100% | ||
jsg | 0 | 105,495,819,521 | 100% | ||
bitcoinparadise | 0 | 7,868,762,288 | 100% | ||
goldenunicorn | 0 | 39,916,967,282 | 100% | ||
whatsup | 0 | 28,803,439,430 | 100% | ||
portuguesinha | 0 | 1,344,570,963 | 100% | ||
ksc | 0 | 103,800,031,622 | 100% | ||
ellepdub | 0 | 2,695,558,141 | 100% | ||
michelle.gent | 0 | 90,356,855,570 | 100% | ||
herpetologyguy | 0 | 49,680,428,320 | 100% | ||
johnblaid | 0 | 449,418,526 | 100% | ||
lllchoselll | 0 | 1,489,756,649 | 100% | ||
morgan.waser | 0 | 5,271,965,688 | 100% | ||
koskl | 0 | 16,845,876,541 | 100% | ||
psych101 | 0 | 1,641,832,991 | 100% | ||
strong-ai | 0 | 5,765,668,215 | 100% | ||
lifeisamazing | 0 | 1,241,676,598 | 100% | ||
siniceku | 0 | 7,872,260,933 | 100% | ||
dhrms | 0 | 371,158,542 | 100% | ||
mgibson | 0 | 5,153,007,359 | 50% | ||
before | 0 | 1,389,474,912 | 100% | ||
dianargenti | 0 | 4,336,172,825 | 100% | ||
nataleeoliver | 0 | 10,041,225,911 | 100% | ||
storage | 0 | 56,023,503 | 100% | ||
cbd | 0 | 113,699,332 | 100% | ||
junk | 0 | 113,699,327 | 100% | ||
hug | 0 | 113,717,281 | 100% | ||
bearcub | 0 | 114,125,370 | 100% | ||
cyberpunk | 0 | 113,717,261 | 100% | ||
keisha | 0 | 113,245,521 | 100% | ||
blackmarket | 0 | 55,802,794 | 100% | ||
gifts | 0 | 52,523,859 | 100% | ||
int | 0 | 113,253,072 | 100% | ||
dgiors | 0 | 49,601,052,158 | 100% | ||
aurorax | 0 | 1,098,584,430 | 100% | ||
steem-meme | 0 | 1,302,275,859 | 20% | ||
papergirl | 0 | 3,135,533,818 | 100% | ||
sanghkaang | 0 | 16,872,818,543 | 100% | ||
ianstrat | 0 | 1,951,109,988 | 100% | ||
sunscape | 0 | 6,737,745,498 | 20% | ||
promx | 0 | 141,614,675 | 100% | ||
sochul | 0 | 427,641,398,573 | 100% | ||
goodgirl | 0 | 155,768,136 | 100% | ||
mental | 0 | 81,102,991 | 60% | ||
voterinterstpool | 0 | 130,666,287 | 100% | ||
voteinterestpool | 0 | 2,009,402,624 | 100% | ||
lovethepeople | 0 | 54,305,871 | 60% | ||
chanthasam | 0 | 6,494,955,025 | 100% | ||
garvofe | 0 | 9,270,773,074 | 100% | ||
porco-bastardo | 0 | 55,408,537 | 60% | ||
adelja | 0 | 425,242,947 | 100% | ||
joanaltres | 0 | 31,984,574,205 | 100% | ||
oleg326756 | 0 | 8,347,773,853 | 100% | ||
xer | 0 | 11,174,458,077 | 20% | ||
sqube | 0 | 146,991,584,990 | 100% | ||
mielediborgo | 0 | 3,283,695,574 | 90% | ||
trans-juanmi | 0 | 4,158,925,914 | 60% | ||
baerdric | 0 | 4,824,149,970 | 50% | ||
universalsoldier | 0 | 106,364,311 | 100% | ||
doodleman | 0 | 5,268,343,422 | 100% | ||
steempredict | 0 | 100,670,052 | 20% | ||
lemons | 0 | 403,125,739 | 100% | ||
gutzofter | 0 | 13,951,567,310 | 100% | ||
fosho | 0 | 591,586,153 | 100% | ||
bhut-jolokia | 0 | 427,918,932 | 100% | ||
little-pepper | 0 | 397,797,939 | 100% | ||
habanero | 0 | 397,778,589 | 100% | ||
glyuk | 0 | 1,397,939,342 | 100% | ||
carolina-reaper | 0 | 426,320,755 | 100% | ||
godzilla | 0 | 96,425,937 | 20% | ||
poblano | 0 | 426,368,578 | 100% | ||
jalapeno | 0 | 396,235,173 | 100% | ||
ancho | 0 | 396,180,177 | 100% | ||
hardline | 0 | 424,927,069 | 100% | ||
green-peppers | 0 | 394,771,856 | 100% | ||
cayenne | 0 | 424,934,365 | 100% | ||
tobasco | 0 | 394,801,409 | 100% | ||
trinidadscorpion | 0 | 424,941,206 | 100% | ||
spicy | 0 | 424,926,832 | 100% | ||
sweet-banana | 0 | 424,941,365 | 100% | ||
hopehuggs | 0 | 6,494,159,156 | 100% | ||
celsogoya | 0 | 30,168,332,139 | 100% | ||
cestlavie | 0 | 577,899,238 | 100% | ||
themartian | 0 | 579,582,235 | 100% | ||
goldsteem | 0 | 30,160,844,166 | 100% | ||
blackchen | 0 | 94,310,350,200 | 100% | ||
zeitgeist | 0 | 574,707,732 | 100% | ||
technoprogressiv | 0 | 5,555,277,024 | 100% | ||
mafeeva | 0 | 26,484,822,682 | 100% | ||
bottymcbotface | 0 | 285,841,169 | 100% | ||
cyonghao | 0 | 576,384,980 | 100% | ||
chocolate-ghost | 0 | 353,666,329 | 100% | ||
detshiva | 0 | 225,067,473 | 100% | ||
lindo | 0 | 119,391,920 | 100% | ||
sandra16 | 0 | 138,883,507 | 100% | ||
erikagrenson | 0 | 2,880,348,631 | 100% | ||
chappers | 0 | 24,722,150,730 | 100% | ||
frankyfazz | 0 | 558,322,100 | 60% | ||
valth | 0 | 472,225,462 | 100% | ||
cardboard | 0 | 1,291,689,572 | 100% | ||
asitnm | 0 | 447,870,395 | 100% | ||
songkran | 0 | 206,383,867 | 100% | ||
val-c | 0 | 217,183,651 | 100% | ||
bittrax | 0 | 206,104,283 | 100% | ||
polloniex | 0 | 292,019,805 | 100% | ||
mindlock | 0 | 528,409,360 | 100% | ||
criticalblaze | 0 | 0 | 100% | ||
hugorosen | 0 | 0 | 100% |
Often I suspect this fetish of disabling IPv6 just hides the "we do not know how to secure IPv6". You give me inspiration to write a post like How to secure IPv6 in Linux....
author | alexanderkroeger |
---|---|
permlink | re-krnel-setting-up-a-linux-vps-securely-pt-2-20161128t141439456z |
category | cybersecurity |
json_metadata | {"tags":"cybersecurity","custom":{"app":"esteem","version":"1.3.1","platform":"android"}} |
created | 2016-11-28 13:14:36 |
last_update | 2016-11-28 13:14:36 |
depth | 1 |
children | 1 |
last_payout | 2016-12-29 11:44:30 |
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 | 174 |
author_reputation | 1,655,933,451,508 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,863,963 |
net_rshares | 0 |
Nice. I didn't know it was an issue. I thought it was disabled to make it one less thing to monitor for SSH.
author | krnel |
---|---|
permlink | re-alexanderkroeger-re-krnel-setting-up-a-linux-vps-securely-pt-2-20161128t132353829z |
category | cybersecurity |
json_metadata | {"tags":["cybersecurity"]} |
created | 2016-11-28 13:23:54 |
last_update | 2016-11-28 13:24:06 |
depth | 2 |
children | 0 |
last_payout | 2016-12-29 11:44:30 |
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 | 108 |
author_reputation | 1,343,547,270,297,082 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,864,037 |
net_rshares | 0 |
Hi, I want to disable the password login but I have a messsage "No supported Authentification methods available (server sent: publickey)" when I test it. I don't know if it's important but when I opened the config file, the line "PasswordAuthentication yes" was in comment so I had "#PasswordAuthentication yes" and I changed to "PasswordAuthentication no". Do you have an idea of my issue? Thanks
author | elmetro |
---|---|
permlink | re-krnel-setting-up-a-linux-vps-securely-pt-2-20180404t231447730z |
category | cybersecurity |
json_metadata | {"tags":["cybersecurity"],"app":"steemit/0.1"} |
created | 2018-04-04 23:14:48 |
last_update | 2018-04-04 23:14:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-11 23:14:48 |
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 | 398 |
author_reputation | 2,378,652,793,261 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,379,813 |
net_rshares | 0 |
Ok this is necro posting, but i do really suggest the clueless guys following this guide to first test they made the key thing work, then login and disable password logins... I gave this guide to a windows noob and he locked himself out 3 times before getting it right lol. # FIRST: Test SSH login with a key, instead of password # THEN: Disable password logins Just common sense... i never tought i will be writting this in a guide to setup a node for blockchain...
author | nnnarvaez |
---|---|
permlink | re-krnel-setting-up-a-linux-vps-securely-pt-2-20171004t150145787z |
category | cybersecurity |
json_metadata | {"tags":["cybersecurity"],"app":"steemit/0.1"} |
created | 2017-10-04 15:01:42 |
last_update | 2017-10-04 15:01:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 15:01:42 |
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 | 472 |
author_reputation | 64,435,481,297,270 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,771,792 |
net_rshares | 0 |
<p>This post has been ranked within the top 80 most undervalued posts in the second half of Nov 28. We estimate that this post is undervalued by $7.57 as compared to a scenario in which every voter had an equal say.</p> <p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-nov-28---part-ii">The Daily Tribune: Nov 28 - Part II</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p> <p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
author | screenname |
---|---|
permlink | re-setting-up-a-linux-vps-securely-pt-2-20161129t013336 |
category | cybersecurity |
json_metadata | "{"replyto": "@krnel/setting-up-a-linux-vps-securely-pt-2"}" |
created | 2016-11-29 01:33:36 |
last_update | 2016-11-29 01:33:36 |
depth | 1 |
children | 0 |
last_payout | 2016-12-29 11:44:30 |
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 | 765 |
author_reputation | 46,276,338,038,330 |
root_title | "Setting Up A Linux VPS Securely (Pt.2)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,869,009 |
net_rshares | 28,699,986,781 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 27,896,072,226 | 60% | ||
proctologic2 | 0 | 391,634,435 | 60% | ||
proctologic3 | 0 | 178,640,032 | 60% | ||
jesus2 | 0 | 66,021,798 | 60% | ||
mental | 0 | 65,896,180 | 60% | ||
lovethepeople | 0 | 51,590,577 | 60% | ||
porco-bastardo | 0 | 50,131,533 | 60% |