Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Port Forward not Working 2

Status
Not open for further replies.

acollard83

IS-IT--Management
May 1, 2005
179
US
Guys I am having difficulties getting the port forwarding working on my 1841. Config below.


version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
enable secret 5 XXXXXXX
!
no aaa new-model
no ip cef
!
!
!
!
ip domain name ustransport.local
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 50.76.x.x 255.255.255.240
ip nat outside
no ip virtual-reassembly
speed auto
full-duplex
no mop enabled
!
interface FastEthernet0/1
ip address 10.22.100.1 255.255.255.0
ip nat inside
no ip virtual-reassembly
speed auto
full-duplex
no mop enabled
!
ip route 0.0.0.0 0.0.0.0 50.76.x.x
!
!
ip http server
no ip http secure-server
ip nat inside source list 1 interface FastEthernet0/0 overload
ip nat inside source static tcp 10.22.100.6 5060 50.76.x.x 5060 extendable
ip nat inside source static udp 10.22.100.6 5060 50.76.X.X 5060 extendable
!
access-list 1 permit any
access-list 1 permit 10.22.100.0 0.0.0.255
dialer-list 1 protocol ip permit
!
!
!
!
!
!
control-plane
!
!
!
line con 0
line aux 0
line vty 0 4
password XXX
login
!
scheduler allocate 20000 1000
end
 
Looks OK to me, however this is SIP (5060) so you'll need the Firewall enabling and configuring (IP Inspect) as SIP opens up dynamic ports and the router will need to get involved.

Andy
 
It's been a while since I've set any of that up. Any help?
 
Why do you have a permit any in ACL 1? if it's defining your NAT pool, you should remove that line.

After that, try to make use of that port-forwarding rule and do a "show ip NAT translations | include 10.22.100.6". Are there any translations there at all?

CCNP, CCDP, CCIP
Core Network Planner, ISP
 
Also why hace you disabled cef? Unless there was a good reason, consider also adding "ip cef" from global config.

CCNP, CCDP, CCIP
Core Network Planner, ISP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top