[04/11] bsp/default/config/network: fix mtu

Submitted by Tim Niemeyer on June 8, 2016, 4:29 p.m.

Details

Message ID 1465403387-3241-4-git-send-email-tim@tn-x.org
State Accepted, archived
Commit da9ff2ccff1b9d4437ac529954e534ea40550435
Headers show

Commit Message

Tim Niemeyer June 8, 2016, 4:29 p.m.
- mtu of 1528 is enough for no fragmentation
- also some cleanups
- interface 'bat' was never needed

Signed-off-by: Tim Niemeyer <tim@tn-x.org>
---

 bsp/default/root_file_system/etc/config/network | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

Patch hide | download patch | download mbox

diff --git a/bsp/default/root_file_system/etc/config/network b/bsp/default/root_file_system/etc/config/network
index 1bab57f..08a897b 100644
--- a/bsp/default/root_file_system/etc/config/network
+++ b/bsp/default/root_file_system/etc/config/network
@@ -7,16 +7,12 @@  config interface 'loopback'
 config interface 'mesh'
         option type 'bridge'
         option auto '1'
-                                   
+
 config interface 'wan'
         option proto 'dhcp'
         option ifname 'eth1'
-                            
+
 config interface 'ethmesh'
-        option mtu '1532' 
+        option mtu '1528'
         option proto 'batadv'
-        option mesh 'bat0'   
-                                          
-config interface 'bat'                    
-        option ifname 'bat0'              
-        option mtu '1500'
\ No newline at end of file
+        option mesh 'bat0'

Comments

Jan Kraus June 9, 2016, 11:32 a.m.
Schaut soweit gut aus:
Reviewed-by: Jan Kraus <mayosemmel@gmail.com>

Am Mittwoch, den 08.06.2016, 18:29 +0200 schrieb Tim Niemeyer:
> - mtu of 1528 is enough for no fragmentation
> - also some cleanups
> - interface 'bat' was never needed
> 
> Signed-off-by: Tim Niemeyer <tim@tn-x.org>
> ---
> 
>  bsp/default/root_file_system/etc/config/network | 12 ++++--------
>  1 file changed, 4 insertions(+), 8 deletions(-)
> 
> diff --git a/bsp/default/root_file_system/etc/config/network b/bsp/default/root_file_system/etc/config/network
> index 1bab57f..08a897b 100644
> --- a/bsp/default/root_file_system/etc/config/network
> +++ b/bsp/default/root_file_system/etc/config/network
> @@ -7,16 +7,12 @@ config interface 'loopback'
>  config interface 'mesh'
>          option type 'bridge'
>          option auto '1'
> -                                   
> +
>  config interface 'wan'
>          option proto 'dhcp'
>          option ifname 'eth1'
> -                            
> +
>  config interface 'ethmesh'
> -        option mtu '1532' 
> +        option mtu '1528'
>          option proto 'batadv'
> -        option mesh 'bat0'   
> -                                          
> -config interface 'bat'                    
> -        option ifname 'bat0'              
> -        option mtu '1500'
> \ No newline at end of file
> +        option mesh 'bat0'
> -- 
> 2.1.4
>