::1 localhost ip6-localhost ip6-loopback
con la riga:
::1 localhost6 ip6-localhost ip6-loopback
::1 localhost ip6-localhost ip6-loopback
::1 localhost6 ip6-localhost ip6-loopback
/etc/sudoers
backuppc ALL = NOPASSWD: /bin/tar
/etc/backuppc/local.pl
$Conf{TarClientCmd} = '/usr/bin/env LC_ALL=C $tarPath -c -v -f - -C $shareName' . ' --totals';
$Conf{TarClientCmd} = '/usr/bin/sudo $tarPath -c -v -f - -C $shareName' . ' --totals';
Aggiungere queste linee al file /etc/postfix/main.cf#
inet_interfaces = 127.0.0.1, [::1]
smtp_bind_address = 0.0.0.0
smtp_bind_address6 = ::
inet_protocols = all
#
Se la macchina ha un IP address statico puo' essere aggiunto alla linea inet_interfaces:inet_interfaces = 192.168.1.6, 127.0.0.1, [::1]

sudo mv /etc/snmp/snmpd.conf /etc/snnp/snmpd.conf.orig
# sec.name source community com2sec readonly default public # sec.model sec.name group MyROGroup v1 readonly # incl/excl subtree mask view all included .1 80 view system included .iso.org.dod.internet.mgmt.mib-2.system # context sec.model sec.level match read write notif access MyROGroup "" any noauth exact all none none
sudo /etc/init.d/snmp restart
Un tunnel ssh per Firefox verso un computer remoto e' una buona misura di sicurezza. Specialmentre quando ci si connette attraverso una rete non sicura come un hotspot wifi o altre reti pubbliche. Il tunnel cripta e invia i dati al vostro computer remoto e da li' spediti sul web fino ai vostri siti di destinazione. Questo tutorial assume che voi abbiate un account ssh su un computer remoto. Il resto non e' difficile.ssh -D 9999 -C NOME_UTENTE@INDIRIZZO_IP_VOSTRO_COMPUTERLo switch -D specifica un port forwarding dinamico locale a livello applicazione.
Rimane da configurare Firefox:
Cliccate su Firefox> Edit> Preferences> Advanced tab> Network tab> Settings
Selezionate Manual proxy configuration
Compilate i seguenti campi:
SOCKS Host: localhost Port: 9999
SOCKS v5
No Proxy for: localhost, 127.0.0.1
N.B.: in certi casi l'uso di localhost puo' causare problemi. Se i settaggi sono corretti ma non ottenete risultati, sostituite localhost con 127.0.0.1
(traduzione dell'articolo: http://onlyubuntu.blogspot.com/2008/03/create-ssh-tunnel-for-firefox-to-surf.html)