Bueno traigo un pequeño tutorial de como configurar la dirección IP, Nombre de host, nombre DNS, en Solaris
Agregamos un direccionamiento IP estatico.
Sintaxis:
#ifconfig [Interfaz] [Ip] netmask [Mascara] up
Ejemplo:
#ifconfig e1000g0 192.168.1.180 netmask 255.255.255.0 up
Para agregarlo de forma permanente hay que añadirlo al fichero hostname.[Interfaz]
#cat >> /etc/hostname.e1000g0
192.168.1.180 up
Crear SubInterfaces
Sintaxis:
#ifconfig e1000g0 addig [IP] up
ejemplo:
#ifconfig e1000g0 addig 192.168.1.185
Elimitar SubInterfaces
#ifconfig e1000g0 remove 192.168.1.185
Otra forma de crear SubInterfaces:
Sintaxis:
#ifconfig e1000g0:1 plumb [IP]
Ejemplo:
#ifconfig e1000g0:1 plumb 192.168.1.186
Elimitar SubInterfaces
#ifconfig e1000g0:1 unplumb
Para agregarlo de forma permanente hay que añadirlo al fichero hostname.[Interfaz]
Sintaxis:
#cat >> /etc/hostname.e1000g0
addif [IP] up
Ejemplo:
#cat >> /etc/hostname.e1000g0
addif 192.168.1.186 up
Configuración DHCP
creamos el archivo /etc/dhcp.interfaz
#touch /etc/dhcp.e1000g0
# echo wait 300 > /etc/dhcp.e100g0
# echo primary > /etc/dhcp.e1000g0
Configuramos el Gateway
#route add default [Ip]
Ejemplo
#route add default 192.168.1.1
add net default: gateway 192.168.1.1
Para mantener el Gateway (aunque me parece que no hace falta)
#echo “192.168.1.1″> /etc/defaultrouter
Agregar DNS
para ello vamos a crear o editar si la existiese.
#nameserver [Ip servidor DNS]
Ejemplo:
#nameserver 192.168.1.1
Para que podamos resolver mediante dns, también tenemos que configurar el archivo nsswitch.conf
en la fila hosts: files le tenemos que agregar dns. quedaría así:
#hosts: files dns
Configurar el nombre de dominio.
#domainname red-orbita
#domainname > /etc/defaultdomain
Configuramos el nombre de HOSTS
#hostname rokitoh
editamos el fichero nodename
#hostname > /etc/nodename
Tambien podemos configurar el fichero hosts para asociar las direcciones IP’s a los dominios
#cat >> /etc/hosts
192.168.1.181 rokitoh1
Cntrl + D
Un saludo, rokitoh!