Hello admins, the server will start to send the Spam mails due to malicious code or compromised mailbox. In that case, our outgoing IP address will get blocked by several spam filters including Gmail and other mail services.
In this case, we have to wait for a long time to get whitelisted or have to pay to be whitelisted. But if you have secondary IP addresses for your server, we can do this trick to send emails and let the main IP to whitelist automatically.
This means we will change to outbound connections from the main IP to the secondary IP address.
Important: Before proceeding with this, make sure that you have fixed the compromised code or application or mailbox. Else, your secondary IP address will also get blocked on Spam filters.
Default IP for outgoing connections can be set using ‘ip’ utility.
First of all, check how routing is configured on the server:
You can check this by the following command: -
# /sbin/ip route159.8.30.64/28 dev bond1 proto kernel scope link src 159.8.30.6610.105.124.128/26 dev bond0 proto kernel scope link src 10.105.124.130169.254.0.0/16 dev bond0 scope link metric 1006169.254.0.0/16 dev bond1 scope link metric 100710.0.0.0/8 via 10.105.124.129 dev bond0default via 159.8.30.65 dev bond1
If no ‘src’ listed in ‘ip’ output for the default route, then the main IP on the interface is used for outgoing connections. You can change it using:
# /sbin/ip route change default via 159.8.30.65 dev bond1 src 5.153.43.25
Now:
# /sbin/ip route192.168.50.0/24 dev eth1 proto kernel scope link src 192.168.50.53169.254.0.0/16 dev eth1 scope linkdefault via 192.168.50.254 dev eth1 src 192.168.50.100
Note: be careful, if you set the wrong IP as the source, you lose the connection to the server.