个人工具

UbuntuHelp:PortKnocking

来自Ubuntu中文

Oneleaf讨论 | 贡献2007年5月24日 (四) 15:20的版本 (新页面: {{From|https://help.ubuntu.com/community/PortKnocking}} {{Languages|UbuntuHelp:PortKnocking}} == What is Port Knocking ? == Port knocking is a simple and great method to grant remote acc...)

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索

What is Port Knocking ?

Port knocking is a simple and great method to grant remote access without leaving a port constantly open. This preserves your server from port scanning and script kiddie attacks.

To utilize port knocking, the server must have a firewall and run the knock-daemon. As the name lets us imaginate, the daemon is listening for a specific sequence of TCP or UDP "knocks". If the sequence is played correctly then a command is executed, typically, the port of the application is opened for the source IP address through the firewall. This method is perfectly secure, as port knocking is located at a very low level in the TCP/IP stack and does not require any opened ports. The knock-daemon is also invisible to attackers.

On the client side, the only thing you have to do is to play the sequence. You can do that whith the client that you prefer, a client program also exists called knock.

Server Setup

The setup of the server is quite easy. First, you have to ensure that your server has a running firewall. Then, install the following packages: knockd (see InstallingSoftware).

Then, edit the configuration file. We will present two different approches. One that is more adapted to connections with no keep-alive (http for example !), another mode adapted to permenant connections (SSH, IRC...).

As you will notice, the syntax of the configuration file is quite easy to understand.

Example 1

Here is the default configuration file for the knock daemon (/etc/knockd.conf) :

[options]
logfile = /var/log/knockd.log

[openSSH]
sequence    = 7000,8000,9000
seq_timeout = 5
command     = /sbin/iptables -A INPUT -s %IP% -p tcp --dport 80 -j ACCEPT
tcpflags    = syn

[closeSSH]
sequence    = 9000,8000,7000
seq_timeout = 5
command     = /sbin/iptables -D INPUT -s %IP% -p tcp --dport 80 -j ACCEPT
tcpflags    = syn


Here we have defined two sequences :

    • openSSH that opens the http port if the 7000,8000 and 9000 ports are knocked
    • closeSSH that close the http port if the 9000,8000 and 7000 ports are knocked

Example 2

The second example file is a bit different from the orginal :

options]
logfile = /var/log/knockd.log

[SSH]
sequence    = 7000,8000,9000
seq_timeout = 5
command     = /sbin/iptables -A INPUT -s %IP% -p tcp --dport 22 -j ACCEPT
tcpflags    = syn
cmd_timeout   = 10
stop_command  = /sbin/iptables -D INPUT -s %IP% -p tcp --dport 22 -j ACCEPT


In the default configuration file, you have two sequences :

    • one for opening the port
    • a second one for closing the port

We advocate for opening the port fort a short time range (in the example 10s). For this example to be functionnal, you have to have a statefull firewall running on your server (which means you have to accept connections with -m state --state RELATED,ESTABLISHED).

Let's explain this configuration file. If a user "knocks" ports 7000, 8000 and 9000 (in that order), the command will be played (opening port 22). Ten secondes later, the stop_command will be executed, closing the port.

Do not forget to change the sequence (this is the example provided by the default installation), and... to provide the sequence to your users.

Change the default configuration /etc/default/knockd in order that the knock-daemon is lanched :

#
# knockd's default file, for generic sys config
#

# control if we start knockd at init or not
# 1 = start
# anything else = don't start
START_KNOCKD=1

# command line options
#KNOCKD_OPTS="-i eth0"

Now, just launch the daemon :

sudo /etc/init.d/knockd start

That's it !

Client Side

On the client side, you can "knock" with whatever client you want : telnet, nc or even the software used to connect to the server (for example ssh).

But, for more simplicity, you also have the knock client. Install the following packages: knockd (see InstallingSoftware).

For knocking, just lanch the command !

knock ''hostname'' ''port1'' ''port2'' ''port3''

Then connect to your application.

Conclusion

You have done it ! Easy to setup, but very efficient, isn't it ?

Notice

Simple portknocking daemons as knockd are vulnerable because a sniffer may recover which ports where knocked. A better solution is Cryptknock (http://cryptknock.sourceforge.net/) Cryptknock's description says: "Cryptknock is an encrypted port knocking tool. Unlike other port knockers which use TCP ports or other protocol information to signal the knock, an encrypted string is used as the knock. This makes it extremely difficult for an evesdropper to recover your knock (unlike other port knockers where tcpdump can be used to discover a port knock)."

Links

The orginal project Detailed explanations on how it works and a reference implementation.

The port knocking daemon The Ubuntu package is build from this release. A Win32 package is also available. You will also find other examples and some documentation.