Wilhel

Wilhel

Debian配置SSH

添加 sudo 用户#

创建新用户#

sudo adduser test

使用户成为 sudo 用户#

sudo usermod -aG sudo test

验证 sudo 权限#

sudo -l -U test

安装配置 SSH#

安装 SSH#

sudo apt-get install -y ssh

安装 vim#

sudo apt-get install vim

修改 /etc/ssh/sshd_config#

PermitRootLogin no    #禁止rootyoghurt远程ssh登录
PasswordAuthentication yes   #开启密码验证

重启 SSH 服务器#

sudo /etc/init.d/ssh restart

配置静态 ip#

查看本机 ip#

ip a

查看网络配置文件状态#

nmcli con

查看网络配置文件#

cd /etc/NetworkManager/system-connections/

修改配置#

nmcli con mod ens33 con-name ens33 ipv4.addresses 192.168.1.254/24 ipv4.gateway 192.168.1.255 ipv4.dns 223.5.5.5 ipv4.method manual

激活配置文件#

nmcli con up ens33

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.