Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login
    1. Home
    2. Tags
    3. mtu
    Log in to post
    • All categories
    • JonathanLeeJ

      OpenVPN and MTU questions? Vs vpn packet processing settings

      Watching Ignoring Scheduled Pinned Locked Moved OpenVPN mtu openvpn mss vpn tunnel
      3
      0 Votes
      3 Posts
      315 Views
      JonathanLeeJ

      @nattygreg Thanks I have attempted many trail and error tests, another one that gave me speed boosts was changing these settings.

      Screenshot 2025-03-03 at 21.50.05.png

    • M

      MTU question with MultiWan/OpenVPN/Wireguard

      Watching Ignoring Scheduled Pinned Locked Moved Routing and Multi WAN mtu mss multiwan wireguard openvpn
      1
      0 Votes
      1 Posts
      638 Views
      No one has replied
    • fremoisF

      FreeBox Pro et VPN IPSec Site à site montés (P1 et P2 OK) mais très difficilement utilisables

      Watching Ignoring Scheduled Pinned Locked Moved Français vpn tunnel ipsec mtu
      12
      0 Votes
      12 Posts
      7k Views
      M

      Merci @nicolas-R je vais tester t'as solution.

    • E

      Sometimes issues with OpenVPN udp via OpenVPN udp

      Watching Ignoring Scheduled Pinned Locked Moved OpenVPN openvpn mtu multi-wan
      1
      0 Votes
      1 Posts
      597 Views
      No one has replied
    • D

      Persistently Change RADVD AdvLinkMTU?

      Watching Ignoring Scheduled Pinned Locked Moved IPv6 ipv6 mtu 6rd
      5
      0 Votes
      5 Posts
      2k Views
      D

      Just in case someone finds this hack useful, the following is the patch I used on 2.5.0. It will only do what is intended (hardcode advertised MTU to 1480) if "Use same settings as DHCPv6 server" is unchecked under the Router Advertisements configuration settings.

      src/etc/inc/services.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/etc/inc/services.inc b/src/etc/inc/services.inc index a3203aaaf7..1c63272ca1 100644 --- a/src/etc/inc/services.inc +++ b/src/etc/inc/services.inc @@ -130,7 +130,8 @@ function services_radvd_configure($blacklist = array()) { $radvdconf .= "\tAdvDefaultLifetime {$dhcpv6ifconf['raadvdefaultlifetime']};\n"; } - $mtu = get_interface_mtu($realif); + /*$mtu = get_interface_mtu($realif);*/ + $mtu = 1480; if (is_numeric($mtu)) { $radvdconf .= "\tAdvLinkMTU {$mtu};\n"; } else {