Paso 6: interfaces
Imagen: resultados de corriente iperf3 para intervalos de 100 con "iface eth0 inet dhcp" (azul) y luego otra vez con "# iface eth0 inet dhcp" (rojo). El eje x es Mbps y el eje y es el número de las mediciones en que ancho de banda.
interfaces
Se midió cada parámetro en el archivo de interfaces.
Este archivo debe ser la correcto o wifi no funcionará.
Inicio de sesión en frambuesa pi y ejecute el comando:
$ sudo nano /etc/network/interfaces
Edite el archivo para ser:
# interfaces(5) file used by ifup(8) and ifdown(8) # Please note that this file is written to be used with dhcpd # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' # Include files from /etc/network/interfaces.d: # source-directory /etc/network/interfaces.d # Commented parameters were used in measurements # All comments can be removed # Replace spades (♣) and text enclosed in ♣replace-this♣ with actual value # loopback interface # loopback is used for tools to talk to themselves on the RPi auto lo iface lo inet loopback # ethernet interface # leave ethernet interface - may be needed for cable connection in the future iface eth0 inet dhcp # Wireless adapter # Use only one group of settings at a time - either RT5370 or WiPi # RT5370 settings: auto wlan0 allow-hotplug wlan0 iface wlan0 inet dhcp # Use wpa-ssid and wpa-psk OR wpa_supplicant, but not both # wpa-ssid "♣your-ssid♣" # wpa-psk "♣your-pass-phrase♣" # Use wpa-conf instead of wpa-roam # Using wpa-roam without correct wpa_roam.conf causes issues # For example, on reboot wpa-roam can default to IPv6 and wifi stops wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf # # Turning power management off reduces dropped packets wireless-power off # WiPi settings: # auto wlan0 # iface wlan0 inet dhcp # wpa-ssid "♣your-ssid♣" # wpa-psk "♣your-pass-phrase♣" # default interface # iface default inet dhcp
CTRL-o para escribir el archivo
ENTER para confirmar la escritura
CTRL-x para salir del editor nano