Ubuntu修改mtu

1、不知道啥时候开始,ssh登录服务器时候,自己的MTU如果大于等于服务器,就会出现卡住。出现expecting SSH2_MSG_KEX_ECDH_REPLY。

2、需要修改系统MTU,Ubuntu 默认为1500;修改为1492。

3、Ubu

# Let NetworkManager manage all devices on this system
network:
  version: 2
  renderer: NetworkManager
  ethernets:
    # Configure MTU
    bigmtu1:
      match:
        macaddress: 9c:4e:36:75:11:40        #你自己网卡的mac地址
      mtu: "1492"

ntu20,使用netplan永久修改。yarm格式文件/etc/netplan

4、修改后

netplan apply

你可能感兴趣的:(ubuntu,服务器,linux)