2024.02.16
Hard: EPSon Endeavor ST20E (CPU Celeron
N3160 1.6GHz メモリ8Gb,SDD 128GB)
OS: Debian Ver12.4 bookworm
$ sudo cat
debian-12.4.0-amd64-netinst.iso >/dev/sdb $ sudo sync |
$su
(パスワードを入れる) # apt install sudo vim |
hogehoge
ALL=(ALL)NOPASSWD:ALL |
(1)wifi接続
CUIでWifiの接続を変更したいときは /etc/network/interfacesにssid
とパスフレーズを記述する
# This file
describes the network interfaces available on your
system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug wlp2s0 iface wlp2s0 inet dhcp wpa-ssid SSIDを記述 wpa-psk ここにパスフレーズを記述 |
$ ip addr show |
sshポート が空いているかどうかは nmap サーバipアドレス で調べることができる。
インストールの際、tasksel openssh-serverをインストールすれば
sshポートはenableになるはず
(rasperryPiはraspi-configでsshサーバーをenableにしておく)
鍵を作るときのパスワードはサーバーのパスワードとは別物である。
$
ssh-keygen -t rsa -b 4096 Generating public/private rsa key pair. Enter file in which to save the key (/home/hogehoge/.ssh/id_rsa): このままenter Enter passphrase (empty for no passphrase): パスワードを入れる Enter same passphrase again: 再度パスワードを入れる Your identification has been saved in /home/hogehoge/.ssh/id_rsa. Your public key has been saved in /home/hogehoge/.ssh/id_rsa.pub. The key fingerprint is: SHA256:DXkvga6+uGv9L1dUdRiNEJcLezFVedhNVMhKsB+vEgU hogehoge@akagera The key's randomart image is: +---[RSA 4096]----+ | E.s+o# & | | o co.@.*| | + +.o= +.| | . + =+oo | | a S +.o.. | | A d o.. | | .. .q. | | .o @ . .. | | .+ooo.+. | +----[SHA256]-----+ |
$
ssh-copy-id -i .ssh/id_rsa.pub
hogehoge@ipアドレス /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: ".ssh/id_rsa.pub" The authenticity of host 'raspberrypi.local (192.168.3.30)' can't be established. ECDSA key fingerprint is SHA256:6LtS3P30HdhynlZJZiPUvD11DTRS+X/oMKt4ADmr4vI. Are you sure you want to continue connecting (yes/no)? yes /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys hogehoge@raspberrypi.local's password: こ こは鍵のパスワードではなくサーバーログインのパスワード Number of key(s) added: 1 Now try logging into the machine, with: "ssh 'hogehoge@ipアドレス" and check to make sure that only the key(s) you wanted were added. |
$ ssh
hogehoge@ipアドレス Enter passphrase for key '/home/hogehoge/.ssh/id_rsa':秘密鍵のパスワードを入れる |
・rootのログインの無効化と・パスワード認証の無効化をする。
(これをやっておかないと、自宅サーバーは経験上数日から1ヶ月程度で陥落する)
しかし(1)の作業の前にこれをやると、パソコン側から公開鍵をサーバーへ送信できなくなる。
/etc/ssh/sshd_configの以下2箇所を変更
#PermitRootLogin prohibit-password 変更前 PermitRootLogin no 変更後 #PasswordAuthentication yes 変更前 PasswordAuthentication no 変更後 |
$ sudo
systemctl restart ssh |
$sudo apt-get
install ufw |
$ sudo ufw default deny |
$ sudo ufw allow 22 |
$ sudo ufw enable |
$ sudo ufw reload |
$ sudo ufw status |
$ sudo ufw delete allow 80 |
$ sudo ufw disable |