Satellite

[caption id=“attachment_524” align=“alignleft” width=“512” caption=“9° Est”][/caption] Recentemente ho rifatto i puntamenti di alcune parabole, qui in particolare il grafico dello spettro del satellite Eurobird 9° Est (Ex Hotbird 2 ora riposizionato) facente parte della flotta Eutelsat.

18 July 2009 @ 05:06 · Updated: 29 June 2026 @ 05:26 · leo

Asterisk - Eutelia SIP

Questo risulta essere un argomento un po’ delicato sopratutto sconsigliato a chi non ha un minimo di dimestichezza con asterisk, dal momento che non mi dilunghero troppo in spiegazioni sul funzionamento ma darò indicazioni essenziali e basta. Chiunque abbia provato ad usare asterisk su eutelia una volta skypho è sicuramente incappato in qualche problema sia sulla parte di registrazione sia sulla parte di streaming dei flussi rtp, la spiegazione di tutto ciò è abbastanza semplice eutelia appoggia il sistema sip che distribuisce ai cliente utilizzando il Cisco SIP Gateway, lo si può capire velocemente facendo debug. Questa soluzione spesso non è molto propensa a dialogare con asterik in modo standard, pertanto se state usando interfacce GUI o soluzioni embedded potete smettere di leggere perchè la maggior parte delle volte è impossibile uscire dagli schemi imposti. ...

18 July 2009 @ 04:55 · Updated: 30 June 2026 @ 03:28 · leo

IIS Socket Pooling

C’è una cosa brutta da sapere e si scopre quando per caso proviamo ad installare un servizio in ascolto sulla porta 80 su windows che ha già attivo per sfortuna nostra IIS, si chiama socket pooling, infatti automaticamente iis decide di essere in ascolto su tutti i socket quindi ogni indirizzo configurato sulla macchina, impedendo l’avvio di qualsiasi altro servizio (es. apache) anche se apparentemente configurato correttamente. Per ovviare a questo problema ecco come fare: -Prima di tutto installate i support tools, dove sono? Inserite il cd nella directory \Support\Tools trovate un pacchetto suptools.msi -Ora potete procedere: ...

18 July 2009 @ 04:06 · Updated: 30 June 2026 @ 03:28 · leo

Miaoo - Tomcat su Debian

Breve draft su come installare tomcat su debian, in questo caso lenny, le versioni dei pacchetti potrebbero cambiare ma il risultato finale è quello. Partiamo installando quello che ci serve: #apt-get install tomcat5.5 tomcat5.5-admin sun-java5-jdk tomcat5.5-webapps Attenzione, se l’installazione debian di default sicuramente non trovo il java jdk, è necessario quindi aggiungere il repository non-free, in apt editando in questo modo: /etc/apt/source.list deb http://your-mirror-url/debian/ lenny main non-free deb-src http://your-mirror-url/debian/ lenny main non-free Configurare il sistema per utilizzare java ...

18 July 2009 @ 03:40 · Updated: 30 June 2026 @ 03:28 · leo

SCSI R.I.P.

During a raining night.. Syslog tail: Jul 18 03:02:18 pbx01 kernel: [265460.092056] >>>>>>>>> Dump Card State Begins <<<<<<<< Jul 18 03:02:18 pbx01 kernel: [265460.092059] scsi0: Dumping Card State in Command phase,/ at SEQADDR 0x157 Jul 18 03:02:18 pbx01 kernel: [265460.092063] Card was paused [cut] Jul 18 03:02:18 pbx01 kernel: [265460.092511] Pending list: Jul 18 03:02:18 pbx01 kernel: [265460.092514] 6 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) Jul 18 03:02:18 pbx01 kernel: [265460.092521] SCB_SCSIID[0x7] SCB_LUN\[0x0]Jul 18 03:02:18 pbx01 kernel: [265460.092526] 2 SCB_CONTROL[0x74\]: / (DISCONNECTED|MK_MESSAGE|TAG_ENB|DISCENB) Jul 18 03:02:18 pbx01 kernel: [265460.092534] SCB_SCSIID[0x7] SCB_LUN[0x0\] Jul 18 03:02:18 pbx01 kernel: [265460.092539] 3 SCB_CONTROL[0x0] SCB_SCSIID[0x7] SCB_LUN[0x0] Jul 18 03:02:18 pbx01 kernel: [265460.092547] Kernel Free SCB list: 7 1 4 5 11 10 9 8 Jul 18 03:02:18 pbx01 kernel: [265460.092556] Jul 18 03:02:18 pbx01 kernel: [265460.092558] <<<<<<<<< Dump Card State Ends >>>>>>>>> Jul 18 03:02:18 pbx01 kernel: [265460.092570] scsi0:0:0:0: Cmd aborted from QINFIFO Jul 18 03:02:18 pbx01 kernel: [265460.092579] aic7xxx_abort returns 0x2002 Jul 18 03:02:18 pbx01 kernel: [265460.092590] sd 0:0:0:0: [sda] Attempting to queue a TARGET RESET message Jul 18 03:02:18 pbx01 kernel: [265460.092594] CDB: 0x2a 0x0 0x0 0x5a 0xf3 0xbc 0x0 0x0 0x8 0x0 Jul 18 03:02:18 pbx01 kernel: [265460.092604] aic7xxx_dev_reset returns 0x2003 Jul 18 03:02:18 pbx01 kernel: [265460.092655] Recovery SCB completes Jul 18 03:02:18 pbx01 kernel: [265460.092696] Recovery SCB completes pbx01:/# pbx01:/# Timeout, server not responding. leobook2-w:~ leonardorizzi$ Ouch!

18 July 2009 @ 02:57 · Updated: 30 June 2026 @ 03:28 · leo

Offline Windows password & registry editor

Just another link of useful utility: http://home.eunet.no/pnordahl/ntpasswd/ http://pogostick.net/~pnh/ntpasswd/

1 July 2009 @ 18:49 · leo

Cisco - Get & Save config using telnet

Vi è mai capitato di dover salvare delle configurazione da apparati cisco senza avere un tftp a disposizione? In aiuto un piccolo script: #!/bin/bash host=xx.xx.xx.xx port=23 login=user passwd=pass nobreak='terminal length 0' cmd='show running-config all' (echo open ${host} ${port} sleep 1 echo ${login} sleep 1 echo ${passwd} sleep 1 echo ${nobreak} sleep 1 echo ${cmd} sleep 30 echo exit) | telnet sw01.txt

13 April 2009 @ 19:08 · Updated: 30 June 2026 @ 03:28 · leo

Configuring the svnserve daemon

Creating the repositories If you have not created any subversion repositories yet, you can create one with svnadmin: # svnadmin create ~/my-repository Tweaking svnserve.conf Open up and edit the svnserve.conf file located in the $HOME/my-repo/conf/ directory. Sample $HOME/my-repo/conf/svnserve.conf [general] # Path to the file containing svn users and passwords. password-db = $HOME/my-repo/conf/passwd # Authentication realm of the repository. Two repositories using the # same password-db should have the same realm. realm = My-test-repository # Deny all anonymous access anon-access = none # Grant authenticated users read and write privileges auth-access = write Setting up password authentication Open up and edit the password-db file (ie. $HOME/my-repo/conf/passwd). A sample entry might look like this: ...

29 March 2009 @ 12:59 · Updated: 30 June 2026 @ 03:28 · leo

Configuring subversion access over HTTP/DAV

Creating the repository If you have not created any Subversion repositories yet, you can create one with svnadmin: # svnadmin create ~/my-repository Adding mod_dav_svn to your httpd # a2enmod mod\_dav\_svn If you plan to use fine-grained permissions, load mod_authz_svn.so as well: # a2enmod mod_authz_svn Configuring access to repositories HTTP access to your repositories is defined using a <Location> section in your httpd.conf. <Location /myproject> DAV svn SVNPath /home/myself/myrepos/myproject AuthType Basic AuthName "My project" AuthUserFile /home/myself/private/myproject.pw Order deny,allow <LimitExcept GET PROPFIND OPTIONS REPORT> Require valid-user </LimitExcept> </Location> This entry would grant read-only access to everyone and write access to every user AuthUserFile. You can use the htpasswd utility to create or update this file, as described here. ...

29 March 2009 @ 12:53 · Updated: 30 June 2026 @ 03:28 · leo

MySQL Change Password

If you have never set a root password for mysql, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows: # mysqladmin -u root password NEWPASSWORD However, if you want to change (or update) a root password, then you need to use following command # mysqladmin -u root -p oldpassword newpass Enter password: Change MySQL password for other user To change a normal user password you need to type (let us assume you would like to change password for leo): ...

22 March 2009 @ 23:44 · Updated: 30 June 2026 @ 03:28 · leo