虚拟机(CentOS7) 突然无法远程连接

        故障日期:2022年8月5日

        解决日期:2022年8月5日        

        起因:今天早上写代码使用navicat、XShell、以及代码各种连接方式都正常使用。当我下午再次使用时,发现以上各种连接方式都失效了。

        过程:我当时认为是远程连接的问题,搜寻一遍发现都正常。然后我怀疑是IP地址的问题。

输入:ifconfig

# ifconfig

获取:

[root@localhost /]# ifconfig
ens33: flags=4163  mtu 1500
        inet 192.168.40.129  netmask 255.255.255.0  broadcast 192.168.40.255
        inet6 fe80::3667:f5b6:c0e6:43f9  prefixlen 64  scopeid 0x20
        ether 00:0c:29:d9:fa:ff  txqueuelen 1000  (Ethernet)
        RX packets 1356  bytes 111720 (109.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1127  bytes 262680 (256.5 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 102  bytes 18149 (17.7 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 102  bytes 18149 (17.7 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

发现问题:

inet 由原先的192.168.40.128 变为 192.168.40.129 导致我的各种连接失效

解决问题:

(1)修改IP

(2)修改配置

这里就不再赘述了,之前没有遇到这种情况记录一下。

你可能感兴趣的:(linux)