<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">W dniu 30.07.2013 13:26, Mosab Messad
pisze:<br>
</div>
<blockquote
cite="mid:CAJpjqz9h00ncJohBVCCwOiDCxiV9aZU4a1djbS1KmAROu00yPg@mail.gmail.com"
type="cite">
<div dir="ltr">Dears ,<br>
Kindly your support i am not able to have the NAT working on my
SE router, the configuration as below kindly advice ASAP please.<br>
--------------------<br>
<br>
context internet<br>
!<br>
no ip domain-lookup<br>
!<br>
ip nat pool NAT_pool napt multibind<br>
address <a moz-do-not-send="true"
href="http://66.150.66.131/32">66.150.66.131/32</a> port-block
1 to 15<br>
!<br>
nat policy NAT_policy<br>
pool NAT_pool internet<br>
timeout tcp 18000<br>
endpoint-independent filtering udp</div>
</blockquote>
<br>
Start with changing your nat pool address to something not bound to
any interface, later try to change your config to something similar:<br>
<br>
<pre>!
ip nat pool nat-pool1 napt multibind
address X.X.X.X/32 port-block 1 to 15
!
nat policy nat-policy1
! Default class
ignore
endpoint-independent filtering udp
icmp-notification
! Named classes
access-group nat-acl
class nat-class
pool nat-pool1 <<context>>
timeout tcp 18000
timeout udp 60
timeout fin-reset 60
timeout icmp 30
timeout syn 60
admission-control tcp
admission-control udp
admission-control icmp
endpoint-independent filtering udp
no icmp-notification
!
policy access-list nat-acl
! no nat for local transfers
seq 1000 permit icmp 10.180.0.0 0.0.255.255 10.180.0.0 0.0.255.255 class lan-class
seq 1001 permit udp 10.180.0.0 0.0.255.255 10.180.0.0 0.0.255.255 class lan-class
seq 1002 permit tcp 10.180.0.0 0.0.255.255 10.180.0.0 0.0.255.255 class lan-class
! nat everyting else
seq 2100 permit icmp 10.180.0.0 0.0.255.255 any class nat-class
seq 2200 permit udp 10.180.0.0 0.0.255.255 any class nat-class
seq 2300 permit tcp 10.180.0.0 0.0.255.255 any class nat-class
</pre>
<br>
<pre class="moz-signature" cols="72">--
Sebastian Podjasek
</pre>
</body>
</html>