Hi guys!
I have PPPoE Connection and I want to know if there’s a best way to configure it.
It’s working this way :
set interfaces ethernet eth0 mtu '1508'
set interfaces ethernet eth0 vif 35 mtu '1508'
set interfaces pppoe pppoe0 mtu '1500'
It also working this way :
set interfaces ethernet eth0 mtu '1500'
set interfaces ethernet eth0 vif 35 mtu '1500'
set interfaces pppoe pppoe0 mtu '1492'
set interfaces pppoe pppoe0 policy route 'MSS'
set interfaces bridge br0 policy route 'MSS'
set policy route MSS description 'TCP MSS clamping for PPPoE'
set policy route MSS rule 5 protocol 'tcp'
set policy route MSS rule 5 set tcp-mss '1452'
set policy route MSS rule 5 tcp flags 'SYN'
Which way is better and why?