Community discussions

MikroTik App
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

proper settings for connecting RB532 to dsl ?????

Sat Aug 18, 2007 3:06 pm

I have the problem described in other posts where some of the pages load and others don't. I also seen where they mention changing the MTU. I looked at the settings in the modem and it has 1540 for MTU. My question is how do we know what to put on the RB to make it work because the RB won't even except a setting of 1540. Also is this the only other setting that I need to worry about because I already have the PPPoE client part working.

Packet Information

VPI / VCI
In Errors
In Discard Packets
In Non Unicast Packets
In Unicast Packets
In Octets

Out Errors
Out Discard Packets
Out Non Unicast Packets
Out Unicast Packets
Out Octets

MTU
Interface Type
Interface Description
PVC 1

0 / 35
0
0
0
1156820
285881225

0
0
117722
1192801
160718267

1540
1
MAC BRIDGE CONNECTION
Last edited by illiniwireless on Sat Aug 18, 2007 10:16 pm, edited 2 times in total.
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

Re: problems with connecting rb532 to dsl line

Sat Aug 18, 2007 8:11 pm

Does anyone have a suggestion?
 
User avatar
mneumark
Member
Member
Posts: 370
Joined: Thu Jun 08, 2006 7:20 am
Location: Escalon, CA
Contact:

Re: proper settings for connecting RB532 to dsl ?????

Sat Aug 18, 2007 10:24 pm

I have the problem described in other posts where some of the pages load and others don't. I also seen where they mention changing the MTU. I looked at the settings in the modem and it has 1540 for MTU. My question is how do we know what to put on the RB to make it work because the RB won't even except a setting of 1540. Also is this the only other setting that I need to worry about because I already have the PPPoE client part working.

Packet Information

VPI / VCI
In Errors
In Discard Packets
In Non Unicast Packets
In Unicast Packets
In Octets

Out Errors
Out Discard Packets
Out Non Unicast Packets
Out Unicast Packets
Out Octets

MTU
Interface Type
Interface Description
PVC 1

0 / 35
0
0
0
1156820
285881225

0
0
117722
1192801
160718267

1540
1
MAC BRIDGE CONNECTION
I use either 1460-1476 for the MTU settings depending on the type of connection and so on. Most of the time you will be safe with 1460.

Matt
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

Re: proper settings for connecting RB532 to dsl ?????

Sat Aug 18, 2007 11:15 pm

do you change this setting in winbox under interfaces and then under pppoe interface or do you put a rule under mangle.

since my dsl modem has a setting of 1540 and 20 percent is is what they recommend knocking off then 1232 would be correct. to be honest I have never had to change mtu or use a mangle rule before so this is all new to me.
thanks
 
User avatar
mneumark
Member
Member
Posts: 370
Joined: Thu Jun 08, 2006 7:20 am
Location: Escalon, CA
Contact:

Re: proper settings for connecting RB532 to dsl ?????

Sun Aug 19, 2007 12:34 am

There are tons of ways to do the MTU setting. Mangle is one way.

Matt
 
User avatar
GWISA
Member
Member
Posts: 389
Joined: Tue Jan 31, 2006 2:37 pm
Location: Johannesburg, South Africa

Re: proper settings for connecting RB532 to dsl ?????

Sun Aug 19, 2007 12:40 am

do you change this setting in winbox under interfaces and then under pppoe interface or do you put a rule under mangle.

since my dsl modem has a setting of 1540 and 20 percent is is what they recommend knocking off then 1232 would be correct. to be honest I have never had to change mtu or use a mangle rule before so this is all new to me.
thanks
20%??? I think you must mean 20 bytes...
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

Re: proper settings for connecting RB532 to dsl ?????

Sun Aug 19, 2007 3:06 am

if 20 bytes less is what I need to set it at then 1520 would be the correct number and if so i've got a problem because the dsl modem is 1540

what should I do?

i've tried setting it at 1500,1490,1480,1460 and 1320. everyone of the settings had the same problem, it would'nt load most of the pages I tried.

more help please!
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

Re: proper settings for connecting RB532 to dsl ?????

Sun Aug 19, 2007 7:55 am

I just talked with verizon and they are going to send me a new modem to try since the mtu shows 1540. They think something is wrong because of this. I will update on the 22nd. Thanks all for your help.
 
joie
newbie
Posts: 46
Joined: Tue May 22, 2007 10:49 pm

Re: proper settings for connecting RB532 to dsl ?????

Tue Aug 21, 2007 7:03 pm

Sure would be nice if the Mikrotiks would do this automatically like every other router out there.

http://forum.mikrotik.com/viewtopic.php ... t=&p=76334

This works in my office but not at the customers site so I am stuck buying a linksys or someother such router instead of using the Mikrotik like I wanted.
 
illiniwireless
Member Candidate
Member Candidate
Topic Author
Posts: 152
Joined: Mon Dec 26, 2005 12:36 am
Location: USA

Re: proper settings for connecting RB532 to dsl ?????

Wed Aug 22, 2007 9:04 pm

Thanks MENUMARK for these rules and JOIE for the link to them. Worked like a charm!

Try the following rules...

/ ip firewall mangle
add chain=forward tcp-flags=syn action=jump jump-target=mss comment="\[tcp\], mss" disabled=no
add chain=mss protocol=tcp tcp-flags=syn tcp-mss=!536-1460 action=change-mss new-mss=1440 comment="\[tcp\], mss fixation" disabled=no
add chain=mss protocol=tcp tcp-flags=syn tcp-mss=1453-65535 action=change-mss new-mss=1440 comment="\[tcp\], mss 1440 for mtu 1492" disabled=no
add chain=mss protocol=tcp tcp-flags=syn action=change-mss new-mss=clamp-to-pmtu comment="\[tcp\], mss clamp-to-pmtu" disabled=no
add chain=prerouting action=change-ttl new-ttl=set:65 comment="\[tcp\], mss ttl fix" disabled=no

By the way the new router showed the same settings and wouldn't work without these rules either. Thanks Again

Who is online

Users browsing this forum: eworm, kivimart, philipwillemse, torugu1n, wfburton and 108 guests