06-27-2023, 01:57 AM
(This post was last modified: 09-20-2023, 10:20 AM by MarioMaiato.)
If you need to send emails out to a server using port 25, Bell blocks the port connection. You can only use Bell SMTP servers on port 25.
I needed to configure a netscreen firewall to send out alerts. There are no options, port 25 must be used.
I created an account on SMTP2GO.COM. They allow authentication by way of the sender Email Address. No password, just the email address.
SMTP2GO also accepts delivery on port 2525 which is not blocked by Bell. So...
On a PC with the IP address of 192.168.2.103 (running windows 10) I ran the following command:
netsh interface portproxy add v4tov4 listenport=25 listenaddress=192.168.2.103 connectport=2525 connectaddress=43.228.184.5
This command will redirect port 25 to 2525 on server 43.228.184.5 which is one of the many SMtp2go.com servers.
On the firewall I set the hostname to my email address: mario900 ,set the domain name to gmail.com. Then the sender address for emails are now coming from [email protected]. Set the SMTP server address to 192.168.2.103...
In effect, emails sent to 192.168.2.103 port 25 redirect to 43.228.184.5 port 2525.
Does it work? Hell ya!
Thanks!
I needed to configure a netscreen firewall to send out alerts. There are no options, port 25 must be used.
I created an account on SMTP2GO.COM. They allow authentication by way of the sender Email Address. No password, just the email address.
SMTP2GO also accepts delivery on port 2525 which is not blocked by Bell. So...
On a PC with the IP address of 192.168.2.103 (running windows 10) I ran the following command:
netsh interface portproxy add v4tov4 listenport=25 listenaddress=192.168.2.103 connectport=2525 connectaddress=43.228.184.5
This command will redirect port 25 to 2525 on server 43.228.184.5 which is one of the many SMtp2go.com servers.
On the firewall I set the hostname to my email address: mario900 ,set the domain name to gmail.com. Then the sender address for emails are now coming from [email protected]. Set the SMTP server address to 192.168.2.103...
In effect, emails sent to 192.168.2.103 port 25 redirect to 43.228.184.5 port 2525.
Does it work? Hell ya!
Thanks!