![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Cambiar configuración de red en equiposComo root y con el sistema / en lectura escritura modificar los siguientes archivos de configuración según la placa de control que tenga el equipo.Para montar el / en lectura/escritura rw o mount -n -o remount,rw / Placas ELAN y PEGASUS
HOSTNAME=elan-104nc
DEVICE=eth0 USEDHCP=no IPADDR=3.0.1.221 NETMASK=255.255.0.0
GATEWAY=3.0.1.51 Placa PEGASUS_NEW
Contiene el hostname directamente
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# interfaces to bring up automatically
auto lo eth0
# The loopback interface
iface lo inet loopback
# DHCP on the first ethernet device
#iface eth0 inet dhcp
# Static interface for the first ethernet interface, comment out the
# above and uncomment this
iface eth0 inet static
address 37.22.14.36
netmask 255.255.255.0
# network 3.0.0.0
gateway 37.22.14.1
Placa GEODE
Contiene el hostname directamente
This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet static address 3.0.1.221 netmask 255.255.0.0 # network 3.0.1.0 # broadcast 3.0.1.255 gateway 3.0.1.51 # dns- options are implemented by the resolvconf package, if installed # dns-nameservers 3.0.1.3 # dns-search metro.local Link to this Page
|