global (WAN) 1 interface
nat (LAN) 1 0.0.0.0 0.0.0.0
Main Topics
Browse All TopicsDear,
I've a problem configuring my first cisco asa 5510 for business network, I've read a lot of documentation regarding this device, but my first simple configuration (passing all traffic from lan to wan, fails!). From what I've understand out of the documentation is that all trafic is allowed to pass over the firewall as it travels from a HIGHER to a LOWER security zone, so I've configured my interfaces with a security zone of 100 for my LAN interface and 0 for my WAN interface. When I ping from a client to the LAN interface itself I receive a ping back, but when I ping to the outside world (ping www.google.be) nothing is returned, I find that a bit strange as it should be working from higher security-levels to lower ones, below you find my running config.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
ok this is an dns error:
please set DNS server on your PC or use ASA for dhcp:
dhcpd auto_config WAN
dhcpd update dns both override
!
dhcpd address 192.168.1.2-192.168.1.25 LAN
dhcpd lease 10000 interface LAN
dhcpd ping_timeout 10 interface LAN
dhcpd domain xxx.xx interface LAN
dhcpd auto_config WAN interface LAN
dhcpd update dns both override interface inside
dhcpd enable LAN
Is your PC connecte to the LAN or to the designated Management port?
If trying to use the management port, it is designated management only, so you can't.
If on the LAN, then just check the DNS configuration on your PC and make sure you have a valid DNS server
Also, enable inspect icmp to help troubleshoot:
policy-map global_policy
class inspection_default
inspect icmp
I advise to read Pete webpage, there is a lot of good example:
http://www.petenetlive.com
Best regards,
Istvan
Just one last question, today i've configured to firewall to accept outbound conenctions for mail, rdp etc (this are the UNTRUST_TO_TRUST acls) but now I'll create a TRUST_TO_UNTRUST acl where I want to block all smtp traffic, and only permit smtp traffic from the SERVEr (192.168.1.1), below you find my running config, but when I test this everything from the trust network is blockes also surfing the web, rdp, the strange thing is, when I connect to the server and telnet to a mailserver that connection is also blocked, does somebody have any idea how I can fix this, to allow all traffic from the trust network but only deny smtp traffic and allow it only from the serve r?
Allow you smtp server to send mail
access-list TRUST_TO_UNTRUST extended permit tcp host 192.168.0.1 any eq smtp
access-list TRUST_TO_UNTRUST extended permit tcp host 192.168.0.1 eq smtp any
deny your clients to send smtp
access-list TRUST_TO_UNTRUST extended deny tcp any any eq smtp
permit everything else.
access-list TRUST_TO_UNTRUST extended permit ip any any
access-list TRUST_TO_UNTRUST extended permit icmp any any
apply the access-list to you inside interface in the in direction
access-group TRUST_TO_UNTRUST in interface LAN
Business Accounts
Answer for Membership
by: ikalmarPosted on 2009-10-03 at 12:04:09ID: 25486469
Hi, it seems that you missed nat