这是我的网络接口

这是我的网络接口

我为我的 VPS 机器购买了许多 IP。

但我不知道如何使用接口 eth0、eth1 更改 IP。

并且似乎只有 eth0、eth1 可以通过 ifconfig 查看

sudo ifconfig eth1 133.130.60.37而且如果我在 ssh 连接下输入,机器就会失去连接。

有什么办法可以切换我的机器 IP 吗?

这是我的网络接口

# The primary network interface
auto eth0
iface eth0 inet dhcp
iface eth0 inet6 dhcp
accept_ra 1

auto eth1
iface eth1 inet static
address 133.130.60.33
gateway 133.130.60.1
netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4

auto eth2
iface eth2 inet static
address 133.130.60.36
gateway 133.130.60.1
netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4


auto eth3
iface eth3 inet static
address 133.130.60.37
gateway 133.130.60.1
netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4


auto eth4
iface eth4 inet static
address 133.130.60.38
gateway 133.130.60.1
netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4

auto eth5
iface eth5 inet static
address 133.130.60.39
gateway 133.130.60.1
netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4

在此处输入图片描述

相关内容