General discussion
Thread display: Collapse - |
All Comments
Start or search
Create a new discussion
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
Cisco 1760 Nat Problem
My router is a Cisco 1760
This is the first time that i have really done any configuration with Cisco Routers, most of my configs have been with Cisco Switches.
This is my first post so any formatting tips would be helpfull
Thanks
Current configuration : 2873 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Gateway
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$75m2$8vOBjsQX/JBxBmj2crfMP0
!
no aaa new-model
ip cef
!
!
no ip dhcp use vrf connected
ip dhcp excluded-address 10.10.20.1 10.10.20.99
ip dhcp excluded-address 10.10.55.1 10.10.55.99
!
ip dhcp pool Wired
network 10.10.20.0 255.255.255.0
default-router 10.10.20.1
dns-server 216.165.129.158 216.170.153.146 216.165.129.157 134.215.200.126
!
ip dhcp pool Wireless
network 10.10.55.0 255.255.255.0
default-router 10.10.55.1
dns-server 216.165.129.158 216.170.153.146 216.165.129.157 134.215.200.126
!
!
ip name-server 216.165.129.158
ip name-server 216.170.153.146
ip name-server 216.165.129.157
ip name-server 134.215.200.126
vpdn enable
!
!
!
!
interface FastEthernet0/0
ip address dhcp
ip virtual-reassembly
shutdown
speed auto
full-duplex
!
interface FastEthernet0/1
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet0/2
switchport access vlan 20
spanning-tree portfast
!
interface FastEthernet0/3
switchport access vlan 55
spanning-tree portfast
!
interface FastEthernet0/4
!
interface ATM1/0
no ip address
no ip mroute-cache
no atm ilmi-keepalive
bundle-enable
dsl operating-mode auto
hold-queue 224 in
!
interface ATM1/0.35 point-to-point
no snmp trap link-status
pvc 0/35
pppoe-client dial-pool-number 1
!
!
interface Vlan1
no ip address
shutdown
!
interface Vlan20
description *** Wired Devices VLAN ***
ip address 10.10.20.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface Vlan55
description *** Wireless Devices VLAN ***
ip address 10.10.55.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface Vlan99
description *** Management VLAN ***
ip address 10.10.99.1 255.255.255.0
!
interface Dialer0
ip address negotiated
ip mtu 1452
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
ppp reliable-link
ppp authentication pap chap callin
ppp chap hostname $$$$$$$$
ppp chap password 0 $$$$$$$
ppp pap sent-username $$$$$$ password 0 $$$$$$$
!
ip route 0.0.0.0 0.0.0.0 Dialer0
ip route 10.10.0.0 255.255.255.0 Null0
!
!
no ip http server
no ip http secure-server
ip nat source static tcp 10.10.20.45 554 interface Dialer0 554
ip nat inside source list 1 interface Dialer0 overload
ip nat inside source static tcp 10.10.20.10 3389 interface Dialer0 3389
ip nat inside source static tcp 10.10.20.10 21 interface Dialer0 21
ip nat inside source static tcp 10.10.20.10 20 interface Dialer0 20
!
access-list 1 permit 10.10.20.0 0.0.0.255
access-list 1 permit 10.10.55.0 0.0.0.255
!
!
!
control-plane
!
!
line con 0
line aux 0
line vty 0 4
password $$$$$$$
login
!
end
Gateway#