En la consola:
Código:
para comparar tiempos de velocidad, al final en milisegundos.
apuntároslo o capturar pantalla, para luego comparar los tiempos
dig google.com
editar archivo sysctl.conf
sudo gedit /etc/sysctl.conf
Al final del archivo colocamos lo siguiente:
Código:
net.ipv4.tcp_window_scaling = 0
net.ipv6.conf.all.disable_ipv6 = 1
Guardamos, reiniciamos.
y a partir de ahora notaremos una mejoría en la velocidad de navegación.
se nota bastante, yo lo tengo hecho.
comparamos el resultado de antes con el nuevo
dig google.com
por cierto se me olvidaba, si queréis podéis habilitar en el mismo archivo la seguridad para evitar
ataques MITM “man in the middle”
descomentais estas lineas.
[code]###################################################################
Additional settings - these settings can improve the network
security of the host and prevent against some network attacks
including spoofing attacks and man in the middle attacks through
redirection. Some network environments, however, require that these
settings are disabled so review and enable them as needed.
Do not accept ICMP redirects (prevent MITM attacks)
net.ipv4.conf.all.accept_redirects = 0
net.ipv6.conf.all.accept_redirects = 0[/code]
y para prevenir spoofing estas otras
[code]##############################################################3
Functions previously found in netbase
Uncomment the next two lines to enable Spoof protection (reverse-path filter)
Turn on Source Address Verification in all interfaces to
prevent some spoofing attacks
net.ipv4.conf.default.rp_filter=1
net.ipv4.conf.all.rp_filter=1[/code]