lunes, 14 de diciembre de 2009

Zenworks - Soporte PXE para DHCP y ProxyDHCP

En vim /etc/dhcpd.conf añadir la líniea marcada en negrita y reiniciar el servicio

option domain-name "digitalairlines.com";
option domain-name-servers 172.17.6.23;
option routers 172.17.6.23;
option vendor-class-identifier "PXEClient";
default-lease-time 691200;
ddns-update-style none;
subnet 172.17.0.0 netmask 255.255.0.0 {
range 172.17.6.100 172.17.6.150;
default-lease-time 691200;
max-lease-time 691200;
}














Ya tenemos el DHCP, ahora en el fichero /etc/opt/novell/novell-preoxydhcp.conf localizamos el parámetro LocalDHCPFlag = 0 y lo cambiamos a 1 (En el caso hipotético que el server DHCP y el PXE esté en la misma máquina)

chkconfig novell-proxydhcp on

jueves, 10 de diciembre de 2009

Backup Novell Zenworks

zman admin-store-credential administrator
Para que no nos pida las credenciales del administrador para cada acción que vamos hacer

1) Certificado: zman cae /tmp/backup-cert
Este paso no es necesario hacerlo cada vez que se quiera hacer el backup. Lo mejor es tenerlo guardado en un lugar seguro.

2) Content Repo /var/opt/novell/zenworks/content-repo
Es un directorio cifrado por lo tanto depende directamente del certificado.

3) Base de datos:
zman database-backup /tmp/backup-zenworks-db
En este caso si es una base de datos sysbase local.

martes, 1 de diciembre de 2009

The ntpdate program is deprecated

The ntpdate program is deprecated and should not be used any more. To
quote the upstream ntp developers:

"The functionality ntpdate offered is now provided by the ntpd daemon
itself. If you call ntpd with the command line option -q it will
retrieve the current time and set it accordingly."

Please check the Network Time Protocol (NTP) daemon man page and
http://support.ntp.org/bin/view/Dev/DeprecatingNtpdate
for further information.

You can replace the ntpdate call with "rcntp ntptimeset" to achieve an
inital poll of the servers specified in /etc/ntp.conf.

The program /usr/sbin/sntp offers comparable functionality to ntpdate.
Specifically
sntp -P no -r pool.ntp.org
is equivalent to
ntpdate pool.ntp.org

For further details please refer to the man page of sntp.


sntp -P no -r ntp.dominio.com