Here is running-config:
Current configuration : 3226 bytes
!
! Last configuration change at 13:12:56 MSK Thu Apr 23 2009 by Roman
! NVRAM config last updated at 12:20:24 MSK Thu Apr 23 2009 by CRWS_Vijay
!
version 12.2
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Roman
!
logging queue-limit 100
enable secret 5 $1$E7N.$wE0Cgb/yax/JHhia7R
yM7.
enable password 7 1158485446435A
!
clock timezone MSK 3
ip subnet-zero
ip name-server 194.8.160.90
ip name-server 195.131.84.207
ip dhcp excluded-address 10.10.10.1
ip dhcp excluded-address 192.168.0.10
ip dhcp excluded-address 192.168.0.1 192.168.0.99
ip dhcp excluded-address 192.168.0.151 192.168.0.254
ip dhcp excluded-address 192.168.0.96
!
ip dhcp pool CLIENT
network 192.168.0.0 255.255.255.0
default-router 192.168.0.10
dns-server 194.8.160.90 195.131.84.207
lease 0 2
!
!
ip audit notify log
ip audit po max-events 100
vpdn enable
!
vpdn-group pppoe
request-dialin
protocol pppoe
!
no ftp-server write-enable
!
!
!
!
partition flash 2 10 2
!
!
!
!
interface Ethernet0
ip address 192.168.0.10 255.255.255.0
ip nat inside
no ip mroute-cache
no cdp enable
hold-queue 100 out
!
interface ATM0
no ip address
no ip mroute-cache
no atm ilmi-keepalive
dsl operating-mode auto
hold-queue 224 in
!
interface ATM0.1 point-to-point
ip nat outside
pvc 1/32
encapsulation aal5snap
pppoe-client dial-pool-number 1
!
!
interface Dialer1
mtu 1492
ip address negotiated
ip nat outside
encapsulation ppp
ip tcp adjust-mss 1452
dialer pool 1
dialer-group 1
no cdp enable
ppp chap hostname username
ppp chap password 0 password
ppp pap sent-username username password 7 10633E2D2843412728
!
ip nat inside source list 101 interface Dialer1 overload
ip nat inside source static tcp 192.168.0.96 80 interface Dialer1 80
ip nat inside source static tcp 192.168.0.96 5080 interface Dialer1 5080
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
ip http server
ip http secure-server
!
access-list 23 permit 10.10.10.0 0.0.0.255
access-list 23 permit 192.168.0.0 0.0.0.255
access-list 80 permit 192.168.0.0 0.0.0.255
access-list 101 permit ip 192.168.0.0 0.0.0.255 any
dialer-list 1 protocol ip list 101
no cdp run
!
line con 0
exec-timeout 120 0
no modem enable
stopbits 1
line aux 0
stopbits 1
line vty 0 4
access-class 23 in
exec-timeout 120 0
privilege level 15
password 111111
login local
length 0
!
scheduler max-task-time 5000
sntp server 192.43.244.18
!
end
I want to map HTTP (80) and 5080 port of router (192.131.185.207) to 80 and 5080 ports 192.168.0.96 this lines:
...
ip nat inside source static tcp 192.168.0.96 80 interface Dialer1 80
ip nat inside source static tcp 192.168.0.96 5080 interface Dialer1 5080
...
but it doesn't work. Can you help me?