interface FastEthernet0/0
description LAN
ip address 192.168.5.1 255.255.255.0
ip access-group 100 in
ip nat inside
duplex auto
speed auto
interface Ethernet1/0
description DMZ for VPN
ip address 192.168.4.2 255.255.255.0
ip nat outside
full-duplex
interface Ethernet1/1
description Unused
no ip address
shutdown
full-duplex
interface Ethernet1/2
description T1 connection
ip address 1.2.14.170 255.255.255.240
ip nat outside
full-duplex
interface Ethernet1/3
description DSL Backup Connection
ip address 192.168.7.2 255.255.255.252
ip nat outside
full-duplex
ip nat inside source route-map DSL interface Ethernet1/3 overload
ip nat inside source route-map T1 interface Ethernet1/2 overload
ip nat inside source static tcp 192.168.5.25 222 192.168.4.2 222 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 1.2.3.161
ip route 0.0.0.0 0.0.0.0 192.168.7.1 2
access-list 1 permit 192.168.5.0 0.0.0.255
access-list 100 permit ip any any
route-map DSL permit 10
match ip address 1
match interface Ethernet1/3
route-map T1 permit 10
match ip address 1
match interface Ethernet1/2
|