Archivo de la etiqueta: ethernet

Linux – Verificación multicast

Algunas verificaciones rápidas sobre multicast en Linux: Ver si un interfaz está habilitado para tratar multicast Lo podemos hacer con ifconfig o con el comando ip: # ifconfig eth0      Link encap:Ethernet  HWaddr 00:23:54:25:6A:53 inet addr:192.168.10.20  Bcast:192.168.10.255  Mask:255.255.255.0 inet6 addr: fe80::223:54ff:fe25:6a53/64 Scope:Link UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 RX packets:665230 errors:0 dropped:0 overruns:0 frame:0 TX packets:200792… Leer más »

Linux – CentOS 7 no reconoce driver Ethernet NVIDIA

Una vez instalado CentOS7 sobre una máquina con componentes NVIDIA, nos damos cuenta de que no monta ningún interfaz Ethernet. [root@localhost /]# ifconfig -a lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536         inet 127.0.0.1  netmask 255.0.0.0         inet6 ::1  prefixlen 128  scopeid 0x10<host>         loop  txqueuelen 0  (Local Loopback)         RX packets 1035  bytes 90128 (88.0 KiB)         RX errors… Leer más »

Linux – Algunos ajustes Ethernet

Estas son algunos ejemplos de acciones importantes sobre los interfaces Ethernet en Linux: Aumentar búfer de salida en interfaz Ethernet. # ifconfig eth0 txqueuelen 5000 Ver si está el control de flujo habilitado:  # ethtool -a eth1  (también: # ethtool –show-pause eth1) Desactivar control de flujo, habilitado por defecto implícito en autonegociación:  # ethtool -A… Leer más »

Linux – Configuración de red en sistemas Red Hat

Verificación del hardware Para verificar la detección del harware Ethenet podemos hacer: lspci | grep Ethernet Ejemplo: # lspci | grep Eth 02:02.0 Ethernet controller: Intel Corporation PRO/10GbE SR Server Adapter (rev 02) 04:00.0 Ethernet controller: Intel Corporation 82573E Gigabit Ethernet Controller (Copper) (rev 03) 05:05.0 Ethernet controller: Intel Corporation 82541GI Gigabit Ethernet Controller (rev… Leer más »

Linux – Configuración bonding en Debian

El channel bonding o unión de interfaces de red consiste en simular un dispositivo de red con gran ancho de banda uniendo varias tarjetas de red independientes, de manera que las aplicaciones sólo verán un interfaz de red. Con el channel bonding conseguimos varias cosas: Aumento del ancho de banda: el ancho de banda de la… Leer más »