Configurar red
De Guifi.net - Wiki Hispano
Para configurar manualmente la red tenemos que asegurar que si el sistema tiene entorno gráfico (gnome), de parar el network-manager:
# service network-manager stop
y deshabilitarlo para que no se encienda al iniciarse
# sysv-rc-conf
buscar network-manager y deshabilitarlo.
En el caso que nuestro sistema no tenga entorno gráfico, directamente lo que tendremos que hacer es modificar el fichero /etc/network/interfaces y definir así la configuración de red. Tendremos algo parecido a esto:
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.7 netmask 255.255.255.0 gateway 192.168.1.1
En el caso que tengamos un servidor con una sola interfaz de red, crearemos una interfaz virtual (eth0:1) para assignarle una ip de guifi. Es decir, tenemos que añadir las lineas de abajo:
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.7 netmask 255.255.255.0 gateway 192.168.1.1 auto eth0:1 iface eth0:1 inet static address 10.228.192.210 netmask 255.255.255.248 up route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.228.192.209
Si tuviésemos 2 interfaces de red lo tendríamos que definir así:
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.7 netmask 255.255.255.0 gateway 192.168.1.1 auto eth1 iface eth1 inet static address 10.228.192.210 netmask 255.255.255.248 up route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.228.192.209 dev eth1