Recommending to change the MTU by your ISP for non PPPoE Internet connection types is odd, or even old fashioned.
It should work with the default MTU of 1500.
Why does the ISP recommend another setting?
theone90, why don't you just use the RMerlin firmware instead?
does the xbox one also not have the ability to manually set MTU?
the xbox should 'just work', but if it's more restrictive and it's also not letting you set mtu manually, then you will need to set it on the bridge and any other interfaces on every router between the modem and the xbox. you should also manually set this on every device on the lan, so nothing has to do extra processing.
it is a lot easier to just set it on the wan interface and all your client devices manually, though, for best performance. so i'd be sure microsoft didn't graciously add this capability to their new xbox
#!/bin/sh
WANMTU=`nvram get wan_mtu`
ifconfig vlan1 mtu $WANMTU up
ifconfig eth1 mtu $WANMTU up
ifconfig eth2 mtu $WANMTU up
ifconfig br0 mtu $WANMTU up
add this to /jffs/scripts/wan-start
chmod a+rx /jffs/scripts/*Code:#!/bin/sh WANMTU=`nvram get wan_mtu` ifconfig vlan1 mtu $WANMTU up ifconfig eth1 mtu $WANMTU up ifconfig eth2 mtu $WANMTU up ifconfig br0 mtu $WANMTU up
this will set everything on the router to the MTU set on the WAN page of the webui
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!