ho ricevuto un errore quando sto cercando di installare L2TP .. mi può aiutare .. risolvere questo problema


8
root@t-Aspire-5742:/# sudo ipsec verify

Checking your system to see if IPsec got installed and started correctly:
Version check and ipsec on-path                                 [OK]

Linux Openswan U2.6.37/K3.5.0-42-generic (netkey)
Checking for IPsec support in kernel                            [OK]

 SAref kernel support                                           [N/A]

 NETKEY:  Testing XFRM related proc values                      [FAILED]

  Please disable /proc/sys/net/ipv4/conf/*/send_redirects
  or NETKEY will cause the sending of bogus ICMP redirects! [FAILED]

  Please disable /proc/sys/net/ipv4/conf/*/accept_redirects
  or NETKEY will accept bogus ICMP redirects                    [OK]

Checking that pluto is running                                  [OK]

 Pluto listening for IKE on udp 500                             [OK]

 Pluto listening for NAT-T on udp 4500                          [OK]

Two or more interfaces found, checking IP forwarding            [FAILED]

Checking for 'ip' command                                       [OK]

Checking /bin/sh is not /bin/dash                               [WARNING]

Checking for 'iptables' command                                 [OK]

Opportunistic Encryption Support                                [DISABLED]

Risposte:


13

Devi disabilitare invia e accetta:

# Disable send redirects
echo 0 > /proc/sys/net/ipv4/conf/all/send_redirects
echo 0 > /proc/sys/net/ipv4/conf/default/send_redirects
echo 0 > /proc/sys/net/ipv4/conf/eth0/send_redirects
echo 0 > /proc/sys/net/ipv4/conf/lo/send_redirects

# Disable accept redirects
echo 0 > /proc/sys/net/ipv4/conf/all/accept_redirects
echo 0 > /proc/sys/net/ipv4/conf/default/accept_redirects
echo 0 > /proc/sys/net/ipv4/conf/eth0/accept_redirects
echo 0 > /proc/sys/net/ipv4/conf/lo/accept_redirects

Per renderlo permanente al riavvio, nel tuo sysctl.conf posiziona le righe sottostanti

net.ipv4.conf.all.accept_redirects = 0 
net.ipv4.conf.all.send_redirects = 0
net.ipv4.conf.eth0.accept_redirects = 0 
net.ipv4.conf.eth0.send_redirects = 0
net.ipv4.conf.default.accept_redirects = 0 
net.ipv4.conf.default.send_redirects = 0
net.ipv4.conf.lo.accept_redirects = 0 
net.ipv4.conf.lo.send_redirects = 0

0

Notare che i file / proc / sys / net / ipv4 / conf / ... sono letti solo per l'utente root. Dovresti disabilitarlo usando la tua configurazione VPN. Ad esempio in OpenSwan dovresti fare:

Prompt> sudo vi /etc/sysctl.conf
net.ipv4.conf.all.accept_redirects = 0
net.ipv4.conf.all.send_redirects = 0

Puoi anche usare

sudo sysctl stuff.you.want.to.change=newValue

Come suggerito dai commenti per evitare il riavvio


Tecnicamente non è vero, semplicemente non scrivi direttamente su quei file. Tu usi sudo sysctl stuff.you.want.to.change=newValue. Per rendere persistenti le modifiche, è necessario modificare il /etc/sysctl.conf.
jawtheshark,

Ma è la stessa cosa che ho scritto. Qual è il diff?
Moshe Kaplan,

Persistenza. Se si modifica il file di configurazione, non sta cambiando il valore del kernel in tempo reale. Devi riavviare. Se lo usi sysctl, modifichi i valori in tempo reale, proprio come se avessi accesso in scrittura ai file (sola lettura).
jawtheshark,

@jawtheshark hai ragione
Moshe Kaplan,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.