Advertisement
Advertisement
| 04.13.2008 at 12:12PM PDT, ID: 23318824 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: |
interface Multilink1 description VIRT_INTERFAC_2XT1 ip address <multilink IP> x.x.x.x ip nat outside no cdp enable ppp multilink ppp multilink fragment disable ppp multilink group 1 ! interface GigabitEthernet0/0 description ETHERNET_GATEWAY_TO_ATT_DSL ip address <DSL IP> x.x.x.x no ip redirects no ip unreachables no ip proxy-arp ip nat outside ip route-cache flow duplex auto speed auto no mop enabled ! interface GigabitEthernet0/1 description ETHERNET_GATEWAY_TO_MNHC ip address <LAN IP> x.x.x.x no ip redirects no ip unreachables no ip proxy-arp ip nat inside ip route-cache flow ip policy route-map EMAIL_DIRECTOR_MAP duplex auto speed auto no mop enabled ip classless ip route 0.0.0.0 0.0.0.0 Multilink1 ip route 0.0.0.0 0.0.0.0 <DSL GATEWAY IP> 10 ip nat pool QUEST_2XT1_NAT <T1 NAT ADDRESS> <T1 NAT ADDRESS> netmask x.x.x.x ip nat pool ATT_DSL_NAT <DSL NAT ADDRESS> <DSL NAT ADDRESS> netmask x.x.x.x ip nat inside source route-map ATT_DSL_MAP pool ATT_DSL_NAT overload ip nat inside source route-map QUEST_2XT1_MAP pool QUEST_2XT1_NAT overload ! ip access-list extended EMAIL_DIRECTOR permit ip host <Exchange LAN IP> any ! logging trap debugging access-list 55 permit <LAN Network> <mask> no cdp run route-map EMAIL_DIRECTOR_MAP permit 20 match ip address EMAIL_DIRECTOR set ip next-hop <DSL GATEWAY IP> ! route-map QUEST_2XT1_MAP permit 39 match ip address 55 match interface Multilink1 ! route-map ATT_DSL_MAP permit 40 match ip address 55 match interface GigabitEthernet0/0 ! ! end |