View previous topic :: View next topic |
Author |
Message |
enx89 Apprentice
Joined: 21 Mar 2003 Posts: 192 Location: Milano
|
Posted: Thu Jan 25, 2007 4:55 pm Post subject: [RISOLTO] problmei con openvpn e net.br0 |
|
|
Ciao a tutti,
ho da poco configurato un server openvpn con la configurazione a roadwarriors seguendo le istruzioni del wiki
http://gentoo-wiki.com/HOWTO_Road_Warriors_with_OpenVPN.
Sono riuscito senza problemi a farla funzionare, infatti parte e riesco a collegarmi con i miei clients.
Il problema si è, però, presentato quando ho riavviato il server: il riavvio si è bloccato sulla chiusura di openvpn restituendomi, dopo un po', il messaggio
Code: | can not stop open vpn
as net.br0 is still up | .
con un po' di ctrl+c il riavvio è proseguito, ma il problema rimane.
Chiudendo openvpn da console, il problema non si verifica!!!
I file di cofigurazione sono i seguenti:
/etc/conf.d/net
Code: |
#openvpn config
modules=(
"iproute2"
)
config_eth0=( "null" )
tuntap_tap0="tap"
# config_tap0=( "0.0.0.0" )
bridge_br0=( "eth0 tap0" )
config_br0=(
"192.168.101.254/24"
)
config_eth1=(
"1.254.17.191/21"
)
routes_eth1=(
"default via 1.254.16.1" # IPv4 default route
)
#the xxxxxx here should be set to your gateway IP
# Below is an example of configuring the bridge
# Consult "man brctl" for more details
brctl_br0=( "stp on" )
depend_br0() {
need net.eth0 openvpn
}
|
openvpn.conf
Code: |
dev tap0
proto tcp-server
port 1194
mode server
server-bridge 192.168.101.0 255.255.255.0 192.168.101.100 192.168.101.130
ifconfig-pool-persist /etc/openvpn/tom_vpn/ip_pool
status /tmp/vpn-cool_network.status
tls-auth /etc/openvpn/tom_vpn/myhomelan-key.txt 0
keepalive 10 30
client-to-client
max-clients 150
verb 3
tls-server
dh /etc/openvpn/tom_vpn/dh1024.pem
ca /etc/openvpn/tom_vpn/ca.crt
cert /etc/openvpn/tom_vpn/server.crt
key /etc/openvpn/tom_vpn/server.key
comp-lzo
user nobody
group nobody
persist-key
persist-tun
|
Come posso risolvere questo problema?!?!?!?
Ciao a tutti e grazie anticipatamente
Last edited by enx89 on Wed Jan 31, 2007 7:07 pm; edited 1 time in total |
|
Back to top |
|
|
comio Advocate
Joined: 03 Jul 2003 Posts: 2191 Location: Taranto
|
Posted: Fri Jan 26, 2007 8:56 am Post subject: Re: problmei con openvpn e net.br0 |
|
|
enx89 wrote: |
Code: | can not stop open vpn
as net.br0 is still up | .
|
Il problema è che tenta di chiudere openvpn prima del bridge (e questo non si può fare). Prova a modificare lo script di avvio di openvp mettendo:
Code: |
depend() {
need net.IF_FISICA_NECESSARIA
before netmount net.br0
}
|
Prova così.
ciao
luigi _________________ RTFM!!!!
e
http://www.comio.it
|
|
Back to top |
|
|
Peach Advocate
Joined: 08 Mar 2003 Posts: 3686 Location: London, UK
|
Posted: Fri Jan 26, 2007 12:00 pm Post subject: |
|
|
da un occhio qui
a me non da problemi di sorta (lascia perdere il discorso UML) _________________ Gentoo user since 2004.
"It's all fun and games, until someone loses an eye" - mom |
|
Back to top |
|
|
enx89 Apprentice
Joined: 21 Mar 2003 Posts: 192 Location: Milano
|
Posted: Wed Jan 31, 2007 7:06 pm Post subject: |
|
|
Grazie a tutti per le risposte,
ho risolto eliminando la necessità di usare br0! ho cambiato una impostazione del server vpn quindi uso direttamente eth0 al posto del bridge .
lo so che non è la souzione al problema, ma avendo eliminato la fonte del problema ho eliminato anche il problema stesso
ciao a tutti e grazie ancora |
|
Back to top |
|
|
|