20220727:Filezilla提示“530 Maximum number of tries exceeded”

环境:Ubuntu 18.04  (64位) 

起因:Filezilla崩溃后,提示:

530 Maximum number of tries exceeded

排查:终端ssh连接验证,依然失败

ssh [email protected]
ssh_exchange_identification: read: Connection reset by peer

验证:在其他设备上使用该帐号可正常登录,怀疑是ip地址问题

处理:切换ip地址

参考:cnblogs.com/F0x1tz/p/16229405.html

(1)记录网卡名称+当前IP

ifconfig

20220727:Filezilla提示“530 Maximum number of tries exceeded”_第1张图片

 (2)记录默认路由+DNS

20220727:Filezilla提示“530 Maximum number of tries exceeded”_第2张图片

 (3)找到网络配置文件,不同版本的 Ubuntu 配置文件不同

cd /etc/netplan/
ls

20220727:Filezilla提示“530 Maximum number of tries exceeded”_第3张图片 

 (4)改写配置文件

sudo vim 01-network-manager-all.yaml
# Let NetworkManager manage all devices on this system
network:
  version: 2
  renderer: NetworkManager
  ethernets:
    enp2s0:                 # 刚才记录的网卡名称
        dhcp4: no           # 关闭dhcp4
        dhcp6: no           # 关闭dhcp6
        addresses: [192.168.10.192/24]       # 设置新的IP地址及掩码(/24是必须的有的)
        gateway4: 192.168.10.1               # 刚才记录的网关
        nameservers:
                addresses: [202.101.172.35,202.101.172.46]       # 刚才记录的DNS

(5)重启

sudo netplan apply

你可能感兴趣的:(其他,服务器,ubuntu,ssh)