04-06-2012 01:57 PM
It is so wierd, with this configuration, some PC on my LAN can go to the internet , but some only can go to google and bing site (ping, nsookup is ok). They can use google search for something, but when click on the result link , it takes ...very long wait and then no page is display...: -(
Yesterday, it happened to my laptop too, even though days before i can go to the internet without any problem.
Could some one give me some help for this ?
Thanks
Note:
The PCs , laptops (have problems ) have no issues if I connect them to networks other than my LAN
Attached file is the configuration on my SRX 240
Solved! Go to Solution.
04-06-2012 06:27 PM
04-07-2012 03:18 AM
Thanks for your advice.
Iam a noob on Juniper box, so if it is a MTU issue -> what is the solutions ?
04-07-2012 04:16 AM
04-07-2012 04:21 AM
Hi
Remove the router 192.168.1.1 from your DHCP config, as this can stop the PPPOE DHCP allocation.
dhcp {
pool 172.16.20.0/24 {
address-range low 172.16.20.150 high 172.16.20.200;
name-server {
8.8.8.8;
}
router {
172.16.20.1;
}
propagate-settings vlan.20;
}
pool 172.16.30.0/24 {
address-range low 172.16.30.150 high 172.16.30.200;
name-server {
8.8.8.8;
}
router {
172.16.30.1;
}
propagate-settings vlan.30;
}
propagate-settings ge-0/0/0.0;
}
Here is my snippet from my PP0 config
pp0 {
unit 0 {
ppp-options {
chap {
default-chap-secret "PPPOE PASSWORD";
local-name "PPPOE USERNAME";
passive;
}
}
pppoe-options {
underlying-interface ge--0/0/0.0;
idle-timeout 0;
auto-reconnect 5;
client;
}
family inet {
mtu 1492;
negotiate-address;
}
}
}
04-07-2012 04:24 AM
I noticed an error in my last post "underlying-interface ge--0/0/0.0;" should be "underlying-interface ge-0/0/0.0;"
04-07-2012 06:23 AM
Definately sounds like an MTU problem. You could try to lower the MTU from 1492 to something lower and check if the problem disappears? Try to find the correct MTU using ping as previously suggested by the other poster.
04-07-2012 08:09 AM
to have the SRX modify the TCP MSS settings to alleviate the slow loading, etc, you can use the command:
set security flow tcp-mss all-tcp mss 1350
1350 is a starting point, you can fiddle with the numbers to find what works best, but iirc 1350 is a good starting point.
will
04-08-2012 09:02 PM - edited 04-08-2012 09:04 PM
Hi all,
At last problem is solved, it is MTU size issue as RON, RBEVAART, WIMCLEND identified.
By the way, just thing that make me confused.
- On my draytek router (default MTU: 1438), and this router is configured to be PPPOE client -> every one behind this runs OK
- But when I configured my SRX 240 to be PPPOE client with MTU: 1438 -> MTU issue happened ... :-(. I used ping to identify the optimal setting for MTU size -> it is 1272. Things work perfect.
Any explanation for this
Anyway, thank you all for helping to resolve my MTU issue.
04-09-2012 04:31 AM