- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- WAN Routing
- >
- NAT configuration on MSR3024 with Dual ISP
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-01-2018 07:46 AM
ā03-01-2018 07:46 AM
NAT configuration on MSR3024 with Dual ISP
Hello.
We have MSR3024 with 2 ISPs connected. Every ISP allocates a pool of PA IP-addresses, /27. The goal is to configure equal-cost load-balancing between ISPs for incoming (from Internet to DMZ Servers, Static NAT) and outgoing (Internet surfing, NPAT) connections.
Unfortunately, MSR allows only to configure one Static NAT translation between Inside Local and Inside Global IPs. For example:
!
[MSR3024]nat static outbound 192.168.1.10 1.1.1.1
[MSR3024]nat static outbound 192.168.1.10 2.2.2.2
The Local IP address has been used by another outbound static NAT mapping.
!
Need help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-01-2018 05:29 PM
ā03-01-2018 05:29 PM
Re: NAT configuration on MSR3024 with Dual ISP
You can't load-balance connections because the router is a Layer-3 device.
You need a Layer-7 device in your gateway to do this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-27-2018 12:10 AM
ā03-27-2018 12:10 AM
Re: NAT configuration on MSR3024 with Dual ISP
How about this solution:
!
interface GigabitEthernet1/0
description ISP-1
nat server protocol tcp global 1.1.1.1 inside 192.168.1.10
!
interface GigabitEthernet2/0
description ISP-2
nat server protocol tcp global 2.2.2.2 inside 192.168.1.10
Can anybody explain the order (ACL, NAT, Routing and so on) in which incoming packet is processing on MSR
Thanx)