cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
881
Views
0
Helpful
9
Replies

Firewall NAT and ACL policy

Bobby Mazzotti
Level 1
Level 1

Hi Everyone!

 

So I'm familiar with ASA's and troubleshooting them, but rusty on ACL/NAT policy. I have a need to create inside interface to outside interface in order to contact a few vendor devices. These devices are external to our network and only need to communicate over a few ports.

 

Inside host is 172.24.14.10

 

Externals are 63.239.86.35 and 64.31.190.35 tcp/514 udp/514

 

Do I have to create an network obj per external host? What would the commands be for this? 

 

Thanks!

1 Accepted Solution

Accepted Solutions

If you have an ACL applied to the interface-

access-list extended inside-out permit tcp host 172.24.14.10 host 63.239.86.35 eq 514
access-list extended inside-out permit udp host 172.24.14.10 host 63.239.86.35 eq 514
access-list extended inside-out permit tcp host 172.24.14.10 host 64.31.190.35 eq 514
access-list extended inside-out permit udp host 172.24.14.10 host 64.31.190.35 eq 514

No NAT rule needed.

View solution in original post

9 Replies 9

Collin Clark
VIP Alumni
VIP Alumni

You will have to create a network object if you're running code 8.3 or greater.

Are they accessing your data or are you accessing theirs?

This device will be sending data to the destination host.

 

Thanks!

Do they expect you to be coming from a certain IP address or can you just allow the server outbound with your regular NAT pool?

They can be just allowed outbound from the outside interface.

If you have an ACL applied to the interface-

access-list extended inside-out permit tcp host 172.24.14.10 host 63.239.86.35 eq 514
access-list extended inside-out permit udp host 172.24.14.10 host 63.239.86.35 eq 514
access-list extended inside-out permit tcp host 172.24.14.10 host 64.31.190.35 eq 514
access-list extended inside-out permit udp host 172.24.14.10 host 64.31.190.35 eq 514

No NAT rule needed.

Now if I needed a source 172.24.12.10 to destination host 63.239.86.35 would I need to create a NAT/ACL rules?

 

Thanks again for all of your help!

yup, u need to create new ACL for new source ip 172.24.12.10 to destination ip 63.239.86.35 eq port no

 

 

Jeevak,

Same thing, just change the source IP.

access-list extended inside-out permit tcp host 172.24.12.10 host 63.239.86.35 eq 514
access-list extended inside-out permit udp host 172.24.12.10 host 63.239.86.35 eq 514

Bobby Mazzotti
Level 1
Level 1

That was the ticket! Thanks again Collin!!!

Review Cisco Networking for a $25 gift card