miércoles, 16 de diciembre de 2015

Cron job to restart asterisk at 03:00AM

- In the /root/ directory i created a file called rebootasterisk.cron by typing: 
nano -w /root/rebootasterisk.cron

- Put this into the file:
#!/bin/sh
/usr/sbin/asterisk -rx "core restart now"

Set permissions: 
chmod +x /root/rebootasterisk.cron
chmod 0777 /root/rebootasterisk.cron

Create the cron job using this command:
- crontab -e
create a new line that looks like this:
0 3 * * * /root/rebootasterisk.cron
Saved it... and Done!!!

miércoles, 24 de junio de 2015

renovar certificado Exchange

ok realice lo siguiente:
me fui a la consola de shell de exchange y coloque el siguiente comando:

Get-ExchangeCertificate

A8755D306F39625F364CA65D19C1D3E5B1DDDE75 ..... CN=FQDN de servidor de Exchange
1BAC0834EF13B60CDF43008FA4CB6F2239A8F531 ...WS CN= Servidor
4DD8125C81E967286403FC2B9981BEE522C5CDA0 IP... CN=Dirección de OWA

luego realice lo siguiente:

Get-ExchangeCertificate -Thumbprint “HUELLA_DEL_CERTIFICADO_VIEJO” | New-ExchangeCertificate

me pregunto que si queria renombrar le dije que si... luego me advirtio sobre El certificado no se usará para conexiones TLS externas con un FQDN;
porque prevalece el certificado firmado con la CA con la huella digital CERTIFICADO VIEJO

luego lo trate de habilitar con el siguiente comando:
Enable-ExchangeCertificate -Thumbprint HUELLA_DEL_CERTIFICADO_NUEVO; me pregunto los servicios y le coloque SMTP.

luego removi el viejo con

pero aun asi cuando cierro y abra el outlook me sigue apareciendo el certificado vencido.

por ultimo realice de nuevo el Get-ExchangeCertificate y me sale ahora con la siguiente descripcion:

838E927B95EFB637108A126C4CD7873139078153 ....S
1BAC0834EF13B60CDF43008FA4CB6F2239A8F531 ...WS
4DD8125C81E967286403FC2B9981BEE522C5CDA0 IP...


domingo, 12 de abril de 2015

Simple example to setup postfix with satellite SMTP

Simple example to setup postfix with satellite SMTP
  1. install postfix
    sudo aptitude install postfix
  2. configure postfix
    sudo vi /etc/postfix/smtp_auth
    add your smtp authentication information in /etc/postfix/smtp_auth:
    smtp.foo.bar user@host:password
    and generate the postfix lookup table file (/etc/postfix/smtp_auth.db) using
    sudo postmap /etc/postfix/smtp_auth
    add the relayhost (outgoing smtp server e.g. smtp.foo.bar on port 587, depending your relay host info) information to /etc/postfix/main.cf:
    relayhost = [smtp.foo.bar]:587
    add the following lines to /etc/postfix/main.cf in order to enable smtp-auth for outgoing mails:
    smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/smtp_auth smtp_sasl_security_options = noanonymous
  3. restart postfix
    sudo service postfix restart