اتصال به یک رایانه از راهدور برای مدیرسیستم یک امر ضروری است. سرورها، که در اتاقهای جداگانهای بدون صفحهکلید و نمایشگر قرار میگیرند - به شبکه متصل هستند.
9.2.1. ورود امن از راهدور: SSH
پروتکل SSH یا Secure SHell با توجه به اصول امنیتی و قابلیت اطمینان طراجی شده است. ارتباطاتی که از SSH استفاده میکنند امن هستند: طرف مقابل احراز هویت شده و تمام اطلاعات به صورت رمزگذاری شده ارسال میشوند.
SSH همچنین تو سرویس انتقال فایل را ارائه میدهد. scp
یک ابزار خط فرمان است که عملکردی مشابه cp
دارد، به جز مسیرهای خارج از یک رایانه که باید ابتدا نام رایانه به همراه دو نقطه آورده شود.
$
scp file machine:/tmp/
sftp
is an interactive command, similar to ftp
. In a single session, sftp
can transfer several files, and it is possible to manipulate remote files with it (delete, rename, change permissions, etc.). Many FTP clients, including filezilla, support it.
دبیان از OpenSSH، یک نسخه آزاد از SSH که توسط پروژه OpenBSD
مدیریت میشود (یک سیستم عامل آزاد مبتنی بر کرنل BSD با تمرکز بر امنیت) و انشعاب نسخه اصلی نرمافزار SSH که توسط شرکت SSH Communications Security Corp در فنلاند اداره میشد، استفاده میکند. این شرکت در ابتدا SSH را به عنوان نرمافزار آزاد منتشر کرد، اما در ادامه مسیر تصمیم گرفت تا توسعه آن را تحت یک مجوز انحصاری انجام دهد. پروژه OpenBSD با ایجاد OpenSSH تصمیم گرفت یا یک نسخه آزاد از آن ارائه دهد.
OpenSSH is split into two packages: the client part is in the openssh-client package, and the server is in the openssh-server package. The ssh meta-package depends on both parts and facilitates installation of both (apt install ssh
), while the task-ssh-server, often chosen during the initial installation, depends on the server package only.
9.2.1.1. احرازهویت کلید-محور
با هر بار ورود از طریق SSH، سرور راهدور درخواست یک گذرواژه برای احزارهویت کاربر میکند. این میتواند در صورت خودکارسازی ارتباط یا استفاده از ابزاری که نیاز به ارتباط مداوم با سرور دارد، مشکلساز گردد. به همین دلیل است که SSH سیستم احرازهویت کلید-محور را فراهم کرده است.
The user generates a key pair on the client machine with ssh-keygen -t rsa
; the so generated public key is stored in ~/.ssh/id_rsa.pub
, while the corresponding private key is stored in ~/.ssh/id_rsa
. The user can then use ssh-copy-id server
to add their public key to the ~/.ssh/authorized_keys
file on the server, or, if SSH access hasn't been enabled yet, they have to ask the administrator to add their key manually.
If the private key was not protected with a “passphrase” at the time of its creation, all subsequent logins on the server will work without a password. Otherwise, the private key must be decrypted each time by entering the passphrase. Fortunately, ssh-agent
allows us to keep private keys in memory to not have to regularly re-enter the password. For this, you simply use ssh-add
(once per work session) provided that the session is already associated with a functional instance of ssh-agent
. Debian activates it by default in graphical sessions, but this can be deactivated by changing /etc/X11/Xsession.options
and commenting out use-ssh-agent
. For a console session, you can manually start the agent with eval $(ssh-agent)
.
9.2.1.2. Cert-Based Authentication
SSH keys cannot just be protected by a password (or not). An often unknown feature is that they can also be signed via certificate, both the host as well as the client keys. This approach comes with several advantages. Instead of maintaining an
authorized_keys
file per user as described in the previous section, the SSH server can be configured to trust all client keys signed by the same certificate (see also
قسمت 10.2.2, “زیرساخت کلید عمومی: easy-rsa”
) by using the
TrustedUserCAKeys
and
HostCertificate
directives in
/etc/ssh/sshd_config
.
TrustedUserCAKeys /etc/ssh/ssh_users_ca.pub
HostKey /etc/ssh/ssh_host_ecdsa_key
HostCertificate /etc/ssh/ssh_host_ecdsa_key-cert.pub
Vice-versa the clients can also be configured to trust the host key signed by the same authority, making it easier to maintain the known_hosts
file (even system wide via /etc/ssh/known_hosts
).
@cert-authority *.falcot.com ssh-rsa AAAA[..]
Both, public key and certificate authentication, can be used alongside each other.
9.2.1.3. Combining authentication methods
Besides the already mentioned password based, key based, and the certificate based authentication, other methods like using a TOTP exist as well. Not only is this an abundance of options. They can also be combined. On the server side, the AuthenticationMethods
directive can define an order of authentication methods a user has to successfully pass, before they are allowed to enter the system. It is even possible to define multiple alternative sequences:
AuthenticationMethods publickey,password publickey,keyboard-interactive:pam
This setting, for example, allows users to login after initially completing the public key authentication, followed by either a successful password authentication or entering a valid TOTP set up via PAM. On the user side, the sequence of methods can be defined using the PreferredAuthentications
directive.
9.2.1.4. استفاده راهدور از برنامههای X11
The SSH protocol allows forwarding of graphical data (“X11” session, from the name of the most widespread graphical system in Unix); the server then keeps a dedicated channel for those data. Specifically, a graphical program executed remotely can be displayed on the X.org server of the local screen, and the whole session (input and display) will be secure. Since this feature allows remote applications to interfere with the local system, it is disabled by default. You can enable it by specifying X11Forwarding yes
in the server configuration file sshd_config(5) or by prepending the public key with the X11-forwarding
keyword in the authorized_keys(5) file. Finally, the user must also request it by adding the -X
option to the ssh
command-line.
9.2.1.5. ایجاد تونلهای رمزگذاری شده با پورت فورواردینگ
گزینههای
-R
و
-L
به
ssh
امکان ایجاد “تونلهای رمزگذاریشده” بین دو رایانه را میدهند، که به تبع آن یک پورت TCP محلی (قسمت
بازگشت به مقدمات TCP/UDP را مشاهده کنید) به شیوهای امن میتواند به یک ماشین راهدور فوروارد شود یا بر عکس.
دستور
ssh -L 8000:server:25 intermediary
یک نشست SSH با میزان
intermediary برقرار کرده و به پورت محلی ۸۰۰۰ گوش میدهد (
شكل 9.3, “فوروارد کردن یک پورت محلی با SSH”
را مشاهده کنید). برای هر ارتباطی که روی این پورت برقرار شود،
ssh
یک ارتباط میانی از رایانه
intermediary با پورت ۲۵ روی
server برقرار کرده و هر دو ارتباط را به یکدیگر متصل میکند.
دستور
ssh -R 8000:server:25 intermediary
نیز یک نشست SSH با رایانه
intermediary برقرار میکند، اما روی این رایانه است که
ssh
به پورت ۸۰۰۰ (
شكل 9.4, “فوروارد کردن یک پورت راهدور با SSH”
را مشاهده کنید) گوش میدهد. هر ارتباطی که روی این پورت برقرار شود
ssh
یک ارتباط با پورت ۲۵
server برقرار کرده و هر دو ارتباط را به یکدیگر متصل میکند.
در هر دو مورد، ارتباطات با پورت ۲۵ میزان server برقرار شد، که جریان داده آن از طریق تونل SSH بین سیستم محلی و سیستم intermediary میگذرد. در مورد اول، ورودی تونل پورت ۸۰۰۰ محلی است و داده قبل از اینکه به server در شبکه “عمومی” برسد از طریق رایانه intermediary میگذرد. در مورد دوم، ورودی و خروجی تونل برعکس شده است؛ ورودی پورت ۸۰۰۰ از رایانه intermediary است و خروجی روی سیستم محلی قرار دارد و جریان داده به این شکل به server هدایت میشود. در عمل، سرور همان سیستم محلی یا میانی است. به این شیوه SSH میتواند ارتباط امنی بین هر دو رایانه برقرار کند.
9.2.2. استفاده از میزکارهای گرافیکی راهدور
VNC یا Virtual Network Computing اجازه دسترسی راهدور به میزکارهای گرافیکی را میدهد.
این ابزار بیشتر برای راهنمایی فنی استفاده میشود؛ مدیرسیستم میتواند خطاهایی را ببیند که کاربر با آن مواجه است و به آنها شیوه حل مساله را آموزش دهد.
First, the user must authorize sharing their session. The GNOME graphical desktop environment includes that option via → (contrary to previous versions of Debian, where the user had to install and run vino
). For this to work network-manager must be managing the network used (e.g. enable the managed
mode for devices handled by ifupdown in /etc/NetworkManager/NetworkManager.conf
). KDE Plasma still requires using krfb
to allow sharing an existing session over VNC. For other graphical desktop environments, the x11vnc
or tightvncserver
commands (from the Debian packages of the same name) or tigervncserver
(tigervnc-standalone-server) serve the same purpose and provide the vnc-server virtual package; you can make either of them available to the user with an explicit menu or desktop entry.
When the graphical session is made available by VNC, the administrator must connect to it with a VNC client. GNOME has vinagre
and remmina
for that, while the KDE project provides krdc
(in the menu at → → ). There are other VNC clients that use the command line, such as xtightvncviewer
from the homonym package or xtigervncviewer
from the tigervnc-viewer Debian package. Once connected, the administrator can see what is going on, work on the machine remotely, and show the user how to proceed.