 aryoba Premium,MVM join:2002-08-22
4 edits | reply to emidika Clarification and suggestion
After I revisit your config, there are some things that are incorrect. 1st of all, let me clarify something.
1) Does your ISP require you to use PPP (specifically PPPoE)? 2) Is it the IP address of 81.56.167.167 the proper IP address the ISP gave to you?
Assuming answers of above questions are all true, you cannot use 81.56.167.167 (or any IP in 81.56.167.x range) for LAN interface (e0). Why? Because you perform NAT. You have to use different IP segment (private IP address recommended).
The example on the FAQ stated, it used 10.10.10.x (10.10.10.1 255.255.255.0 to be precise) as IP address of e0. Now for the sake of simplicity, do the followings:
1) Replace the e0's IP address with 10.10.10.1.
2) Modify "access-list 10 permit 81.56.x.0 0.0.0.255" to be "access-list 10 permit 10.10.10.0 0.0.0.255" to match the modification on the step 1.
3) Add "ip tcp adjust-mss 1452" under interface e0's config to match the interface d1's.
4) Replace your PC's network setting with the followings. Set the IP address as (let's say) 10.10.10.2 with subnet mask 255.255.255.0 and IP default gateway as 10.10.10.1.
5) Lastly enter the DNS IP address (or addresses) to the PC's setting as well. If you don't know, ask your ISP; or see if you can find and use a working DNS.
Try these steps and see what happen ...  |