gobox 发表于 2013-5-12 16:45:49

关于linux服务器安全, linode给了一个简单的答案

Securing Your ServerPublished: Friday, February 17th, 2012 by Matthew Cone
In the Getting Started guide, you learned how to deploy Linux, boot your Linode, and perform some basic system administration tasks. Now it's time to secure your Linode and protect it from unauthorized access. You'll learn how to implement a firewall, SSH key pair authentication, and an automatic blocking mechanism called Fail2Ban. By the time you reach the end of this guide, your Linode will be protected from attackers.Contents
[*]Adding a New User
[*]Using SSH Key Pair Authentication
[*]Disabling SSH Password Authentication and Root Login
[*]Creating a Firewall
[*]Installing and Configuring Fail2Ban
[*]Next Steps

Adding a New UserIn the Getting Started guide, we asked you to log in to your Linode as the root user, the most powerful user of all. The problem with logging in as root is that you can execute anycommand - even a command that could accidentally break your server. For this reason and others, we recommend creating another user account and using that at all times. After you log in with the new account, you'll still be able to execute superuser commands with the sudo command.Here's how to add a new user:
[*]Open a terminal window and log in to your Linode via SSH.
[*]Create the user by entering the following command. Replace example_user with your desired username:adduser example_user
[*]Add the user to the administer the system (admin) group by entering the following command. Replace example_user with your username:usermod -a -G sudo example_user
[*]Log out of your Linode as the root user by entering the following command:logout
[*]Log in to your Linode as the new user by entering the following command. Replace example_user with your username, and the example IP address with your Linode's IP address:ssh [email protected]
Now you can administer your Linode with the new user account instead of root. When you need to execute superuser commands in the future, preface them with sudo. For example, later in this guide you'll execute sudo iptables -L while logged in with your new account. Nearly all superuser commands can be executed with sudo, and all commands executed with sudo will be logged to /var/log/auth.log.
Using SSH Key Pair AuthenticationYou've used password authentication to connect to your Linode via SSH, but there's more a secure method available: key pair authentication. In this section, you'll generate a public and private key pair using your desktop computer and then upload the public key to your Linode. SSH connections will be authenticated by matching the public key with the private key stored on your desktop computer - you won't need to type your account password. When combined with the steps outlined later in this guide that disable password authentication entirely, key pair authentication can protect against brute-force password cracking attacks.Here's how to use SSH key pair autentication to connect to your Linode:
[*]Generate the SSH keys on a desktop computer running Linux or Mac OS X by entering the following command in a terminal window on your desktop computer. PuTTY users can generate the SSH keys by following the instructions in our PuTTY guide.ssh-keygen
[*]The SSH keygen utility appears. Follow the on-screen instructions to create the SSH keys on your desktop computer. To use key pair authentication without a passphrase, press Enter when prompted for a passphrase.
NoteTwo files will be created in your ~/.ssh directory: id_rsa and id_rsa.pub. The public key is id_rsa.pub - this file will be uploaded to your Linode. The other file is your private key. Do not share this file with anyone!

[*]Upload the public key to your Linode with the secure copy command (scp) by entering the following command in a terminal window on your desktop computer. Replaceexample_user with your username, and 123.456.78.90 with your Linode's IP address. If you have a Windows desktop, you can use a third-party client like WinSCP to upload the file to your home directory.scp ~/.ssh/id_rsa.pub [email protected]:
[*]Create a directory for the public key in your home directory (/home/yourusername) by entering the following command on your Linode:mkdir .ssh
[*]Move the public key in to the directory you just created by entering the following command on your Linode:mv id_rsa.pub .ssh/authorized_keys
[*]Modify the permissions on the public key by entering the following commands, one by one, on your Linode. Replace example_user with your username.chown -R example_user:example_user .sshchmod 700 .sshchmod 600 .ssh/authorized_keys
The SSH keys have been generated, and the public key has been installed on your Linode. You're ready to use SSH key pair authentication! To try it, log out of your terminal session and then log back in. The new session will be authenticated with the SSH keys and you won't have to enter your account password. (You'll still need to enter the passphrase for the key, if you specified one.)
Disabling SSH Password Authentication and Root LoginYou just strengthened the security of your Linode by adding a new user and generating SSH keys. Now it's time to make some changes to the default SSH configuration. First, you'll disable password authentication to require all users connecting via SSH to use key authentication. Next, you'll disable root login to prevent the root user from logging in via SSH. These steps are optional, but are strongly recommended.NoteYou may want to leave password authentication enabled if you connect to your Linode from many different desktop computers. That will allow you to authenticate with a password instead of copying the private key to every computer.
Here's how to disable SSH password authentication and root login:
[*]Open the SSH configuration file for editing by entering the following command:sudo nano /etc/ssh/sshd_config
NoteIf you see a message similar to -bash: sudo: command not found, you'll need to install sudo on your Linode. To do so, log in as root by entering the su command, and type theroot password when prompted. Next, install sudo by entering the following command: apt-get install sudo. After sudo has been installed, log out as the root user by entering the exit command.

[*]Change the PasswordAuthentication setting to no as shown below. Verify that the line is uncommented by removing the # in front of the line, if there is one.:PasswordAuthentication no
[*]Change the PermitRootLogin setting to no as shown below:PermitRootLogin no
[*]Save the changes to the SSH configuration file by pressing Control-X, and then Y.
[*]Restart the SSH service to load the new configuration. Enter the following command:sudo service ssh restart
After the SSH service restarts, the SSH configuration changes will be applied.
Creating a FirewallNow it's time to set up a firewall to limit and block unwanted inbound traffic to your Linode. This step is optional, but we strongly recommend that you use the example below to block traffic to ports that are not commonly used. It's a good way to deter would-be intruders! You can always modify the rules or disable the firewall later.Here's how to create a firewall on your Linode:
[*]Check your Linode's default firewall rules by entering the following command:sudo iptables -L
[*]Examine the output. If you haven't implemented any firewall rules yet, you should see an empty ruleset, as shown below:Chain INPUT (policy ACCEPT)target   prot opt source               destinationChain FORWARD (policy ACCEPT)target   prot opt source               destinationChain OUTPUT (policy ACCEPT)target   prot opt source               destination
[*]Create a file to hold your firewall rules by entering the following command:sudo nano /etc/iptables.firewall.rules
[*]Now it's time to create some firewall rules. We've created some basic rules to get you started. Copy and paste the rules shown below in to the iptables.firewall.rules file you just created.
File:/etc/iptables.firewall.rules*filter#Allow all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0-A INPUT -i lo -j ACCEPT-A INPUT -d 127.0.0.0/8 -j REJECT#Accept all established inbound connections-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT#Allow all outbound traffic - you can modify this to only allow certain traffic-A OUTPUT -j ACCEPT#Allow HTTP and HTTPS connections from anywhere (the normal ports for websites and SSL).-A INPUT -p tcp --dport 80 -j ACCEPT-A INPUT -p tcp --dport 443 -j ACCEPT#Allow SSH connections##The -dport number should be the same port number you set in sshd_config#-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT#Allow ping-A INPUT -p icmp -j ACCEPT#Log iptables denied calls-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7#Drop all other inbound - default deny unless explicitly allowed policy-A INPUT -j DROP-A FORWARD -j DROPCOMMIT

[*]Edit the rules as necessary. By default, the rules will allow traffic to the following services and ports: HTTP (80), HTTPS (443), SSH (22), and ping. All other ports will be blocked.
NoteBe sure to revise these rules if you add new services later.

[*]Save the changes to the firewall rules file by pressing Control-X, and then Y.
[*]Activate the firewall rules by entering the following command:sudo iptables-restore < /etc/iptables.firewall.rules
[*]Recheck your Linode's firewall rules by entering the following command:sudo iptables -L
[*]Examine the output. The new ruleset should look like the one shown below:Chain INPUT (policy ACCEPT)target   prot opt source               destinationACCEPT   all--anywhere             anywhereREJECT   all--anywhere             127.0.0.0/8          reject-with icmp-port-unreachableACCEPT   all--anywhere             anywhere             state RELATED,ESTABLISHEDACCEPT   tcp--anywhere             anywhere             tcp dpt:httpACCEPT   tcp--anywhere             anywhere             tcp dpt:httpsACCEPT   tcp--anywhere             anywhere             state NEW tcp dpt:sshACCEPT   icmp --anywhere             anywhereLOG      all--anywhere             anywhere             limit: avg 5/min burst 5 LOG level debug prefix "iptables denied: "DROP       all--anywhere             anywhereChain FORWARD (policy ACCEPT)target   prot opt source               destinationDROP       all--anywhere             anywhereChain OUTPUT (policy ACCEPT)target   prot opt source               destinationACCEPT   all--anywhere             anywhere
[*]Now you need to ensure that the firewall rules are activated every time you restart your Linode. Start by creating a new script with the following command:sudo nano /etc/network/if-pre-up.d/firewallCentOS users: If you are using CentOS 6.2 or higher, save your current iptables rules with the following command:/sbin/service iptables save
[*]Copy and paste the following lines in to the file you just created:
File:/etc/network/if-pre-up.d/firewall#!/bin/sh/sbin/iptables-restore < /etc/iptables.firewall.rules

[*]Press Control-X and then press Y to save the script.
[*]Set the script's permissions by entering the following command:
sudo chmod +x /etc/network/if-pre-up.d/firewallThat's it! Your firewall rules are in place and protecting your Linode. Remember, you'll need to edit the firewall rules later if you install other software or services.
Installing and Configuring Fail2BanFail2Ban is an application that prevents dictionary attacks on your server. When Fail2Ban detects multiple failed login attempts from the same IP address, it creates temporary firewall rules that block traffic from the attacker's IP address. Attempted logins can be monitored on a variety of protocols, including SSH, HTTP, and SMTP. By default, Fail2Ban monitors SSH only.Here's how to install and configure Fail2Ban:
[*]Install Fail2Ban by entering the following command:sudo apt-get install fail2ban
[*]Optionally, you can override the default Fail2Ban configuration by creating a new jail.local file. Enter the following command to create the file:sudo nano /etc/fail2ban/jail.local
NoteTo learn more about Fail2Ban configuration options, see this article on the Fail2Ban website.

[*]Set the bantime variable to specify how long (in seconds) bans should last.
[*]Set the maxretry variable to specify the default number of tries a connection may be attempted before an attacker's IP address is banned.
[*]Press Control-x and then press y to save the changes to the Fail2Ban configuration file.
Fail2Ban is now installed and running on your Linode. It will monitor your log files for failed login attempts. After an IP address has exceeded the maximum number of authentication attempts, it will be blocked at the network level and the event will be logged in /var/log/fail2ban.log.
当然各位可以用搜索去原网站去看.

yincthh 发表于 2013-5-12 17:35:49

:lol 你如果翻译下。肯定+10广告币

gobox 发表于 2013-5-12 19:33:52

yincthh 发表于 2013-5-12 17:35 static/image/common/back.gif
你如果翻译下。肯定+10广告币

如果自己安装过linux, 这些已经够了.或者用google 译一下看看就行了.基本的就几个点.

河小马 发表于 2013-5-12 22:04:57

firewall 是个大问题

aja0x.som 发表于 2013-5-12 23:18:34

用密钥对登录,禁止密码登录

真心觉得还是root好,sudo太烦

wl052613 发表于 2013-5-13 09:57:53

前几天不是爆出linode自己的服务器都被攻破了N多客户的信用卡信息都被泄露了!

gobox 发表于 2013-5-13 12:15:40

wl052613 发表于 2013-5-13 09:57 static/image/common/back.gif
前几天不是爆出linode自己的服务器都被攻破了N多客户的信用卡信息都被泄露了! ...

是的.之后就没有结果了. 这个只是说自己的vps的基本的防护.又不是什么大牛, 这些基本的设置足以防住大部分的黑客了.

Danezhang 发表于 2013-5-13 22:55:36

linode躺着中枪了,别人是想打他的客户

Jackmass 发表于 2013-5-14 10:51:24

看着感觉还是很厉害的。

朝阳风雨 发表于 2013-5-14 16:13:37

是中文就好:lol

foxconndmd 发表于 2013-5-19 10:42:15

补充下:
更改ssh端口,限制仅特定用户可ssh登录
使用iptables renct模块限制单IP时间内连接ssh端口次数
直接使用iptables封ssh端口,使用knockd解锁,这招无敌了,什么爆破都是浮云。

生鱼片 发表于 2013-5-19 23:41:44

都太麻烦了 LINUX基本安全都是可以的
最多弄个自动屏蔽SSH暴力破解的脚本即可
真要是能玩LINUX 0DAY的 那都是大神级的人 一般也看不上小服务器
一般入侵都是脚本入侵 做好网站的权限设置 最重要
页: [1]
查看完整版本: 关于linux服务器安全, linode给了一个简单的答案