overmodulation
Programmer
I have a Cisco 1811 that I have set up inside address translations to point traffic coming from the outside to specific app servers inside my network.
The one that points to my SQL Server (1433) is open to the world, I know. It needs to come from one specific IP but I haven't figured out how to make that work yet.
The other problem that I'm having is that this MSSQL connection works great for days at a time and then stops working for some reason all of a sudden.
The other app server port forwards are listening for traffic from all over the place and they work fine consistently.
My old cheaper router, on which I just used the "port forwarding" functionality, worked fine all the time. The new Cisco is the only change to the setup.
Here's my NAT config. Let me know if you see something...
Thanks guys...
The one that points to my SQL Server (1433) is open to the world, I know. It needs to come from one specific IP but I haven't figured out how to make that work yet.
The other problem that I'm having is that this MSSQL connection works great for days at a time and then stops working for some reason all of a sudden.
The other app server port forwards are listening for traffic from all over the place and they work fine consistently.
My old cheaper router, on which I just used the "port forwarding" functionality, worked fine all the time. The new Cisco is the only change to the setup.
Here's my NAT config. Let me know if you see something...
Code:
ip nat inside source list 1 interface FastEthernet0 overload
ip nat inside source static tcp 192.168.1.8 65531 interface FastEthernet0 65531
ip nat inside source static tcp 192.168.1.8 119 interface FastEthernet0 119
ip nat inside source static tcp 192.168.1.8 80 interface FastEthernet0 80
ip nat inside source static tcp 192.168.1.11 1433 interface FastEthernet0 1433
Thanks guys...