Hi folks.

I did some more optimizations and benchmarking related towards network
optimizations.

On TCP I increased performance by 30%. 
On UDP by at least 200% !!!!! The UDP benchmark was showing serious
dataloss on  bandwidth >30MBit in the beginning.  

I used iperf3 (fetched from git)  for benchmarking.
Beside that I disabled IPv6.

/etc/sysctl.d/99-soa.conf

Code:
--------------------
    
  net.core.rmem_max = 26214400
  net.core.wmem_max = 26214400
  net.ipv4.tcp_rmem = '4096 1048576 26214400'
  net.ipv4.tcp_wmem = '4096 1048576 26214400'
  net.ipv4.tcp_mem = '26214400 26214400 26214400'
  net.ipv4.route.flush = 1
  net.ipv4.tcp_no_metrics_save = 1
  net.ipv4.tcp_moderate_rcvbuf = 1
  net.ipv4.tcp_timestamps = 0
  net.ipv4.tcp_sack = 0
  net.ipv4.tcp_window_scaling = 1
  
  net.ipv6.conf.all.disable_ipv6 = 1
  net.ipv6.conf.eth0.disable_ipv6 = 1
  
--------------------


/etc/dhcpcd.conf

Code:
--------------------
    
  ....
  noipv6rs
  noipv6
  
--------------------



/etc/hosts

Code:
--------------------
    
  ....
  #<ip-address> <hostname.domain.org>   <hostname>
  127.0.0.1     localhost.localdomain   localhost
  #::1          localhost.localdomain   localhost
  
--------------------


Triode.
I'd propose to introduce these changes to SOA.


Cheers



::: ' Touch Toolbox and more' (http://soundcheck-audio.blogspot.com) :::
by soundcheck
------------------------------------------------------------------------
soundcheck's Profile: http://forums.slimdevices.com/member.php?userid=34383
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to