Centos

Centos配置出站IP地址

  • May 10, 2017

在我的 CentOS 伺服器上,我配置了 7 個 IP 地址。

預設 IP 地址為 87.233.82.98,此地址應用於出站連接。但是 87.233.82.99 地址用於出站連接。

.99 地址也在 ip 路由表中提到。

[root@db01 network-scripts]# ip route show
87.233.82.98 dev eth0  scope link
87.233.82.0/24 dev eth0  proto kernel  scope link  src 87.233.82.99
169.254.0.0/16 dev eth0  scope link  metric 1002
default via 87.233.82.97 dev eth0

如何將出站連接的 IP 地址更改為 87.233.82.98?

您可以使用如下命令更改預設用於傳出連接的源 IP 地址:

ip route replace default via 87.233.82.97 dev eth0 src 87.233.82.98

同樣,您可以在使用以下命令聯繫同一子網中的 IP 時更改源 IP:

ip route replace 87.233.82.0/24 dev eth0 src 87.233.82.98

您可以查看 manip-route以獲取可用選項。

引用自:https://serverfault.com/questions/849253