Debian 與 DRBL 安裝筆記
Enable SSH root login on Debian Linux Server
$ ssh root@10.1.1.12 root@10.1.1.12's password: Permission denied, please try again. root@10.1.1.12's password: Permission denied, please try again. root@10.1.1.12's password: Permission denied (publickey,password).To enable SSH login for a root user on Debian Linux system you need to first configure SSH server. Open
/etc/ssh/sshd_config
and change the following line:FROM: PermitRootLogin without-password TO: PermitRootLogin yesOnce you made the above change restart your SSH server:
# /etc/init.d/ssh restart [ ok ] Restarting ssh (via systemctl): ssh.service.From now on you will be able to ssh login as a root:
$ ssh root@10.1.1.12 root@10.1.1.12's password: The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law.
After preparing the system by Section 5.4.1, “The DHCP connection with the Ethernet”, the network interface served by the DHCP is configured by creating the configuration entry in the "
/etc/network/interfaces
" file as the following.allow-hotplug eth0 iface eth0 inet dhcpWhen the Linux kernel detects the physical interface
eth0
, the allow-hotplug
stanza causes ifup
to bring up the interface and the iface
stanza causesifup
to use DHCP to configure the interface.參考網址:
https://www.debian.org/doc/manuals/debian-reference/ch05.en.html#_the_network_interface_with_the_static_ip
https://linuxconfig.org/enable-ssh-root-login-on-debian-linux-server
留言
張貼留言